/* Shared styles for secondary pages (tips, conversions, about) */

/* Animations */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Page Hero - consistent gradient banner */
.page-hero {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.section-header .icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fed7aa 0%, #fecaca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.section-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}
.content-card:hover {
    border-color: #fed7aa;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

/* Tables */
.styled-table {
    width: 100%;
    border-collapse: collapse;
}
.styled-table thead {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
}
.styled-table th {
    padding: 1rem 1.5rem;
    text-align: right;
    font-weight: 700;
}
.styled-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}
.styled-table tbody tr:hover {
    background: #fff7ed;
}

/* Quick Tips Cards */
.tip-card {
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}
.tip-card:hover {
    transform: scale(1.02);
}

/* Stats Counter */
.stat-item {
    text-align: center;
    padding: 1rem;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Breadcrumb navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
.breadcrumb a {
    color: #f97316;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .nav-mobile-toggle {
        display: flex;
    }
}
@media (min-width: 769px) {
    .nav-mobile-toggle {
        display: none;
    }
}

/* Feature Cards for About page */
.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: #f97316;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}
.feature-card .icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Scrollbar for horizontal scroll areas */
.scroll-container::-webkit-scrollbar {
    height: 6px;
}
.scroll-container::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}
.scroll-container::-webkit-scrollbar-thumb {
    background: #fdba74;
    border-radius: 3px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}
