/* ===================================
   Yoruba Heritage - Global Styles
   =================================== */

:root {
    /* Color Palette inspired by Yoruba traditional colors */
    --primary-color: #C17817;        /* Rich Gold/Bronze */
    --secondary-color: #8B0000;      /* Deep Red */
    --accent-color: #2C5F2D;         /* Forest Green */
    --dark-color: #1A1A1A;
    --light-color: #F8F5F0;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-color: #E0D8CC;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #D4941D);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(193, 120, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 120, 23, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.nav-brand a:hover h1 {
    color: var(--secondary-color);
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.btn-search):hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:not(.btn-search)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-search):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ── Dark Mode ─────────────────────────────────────────────────────────── */
[data-theme="dark"] {
    --dark-color: #F0EBE0;
    --light-color: #1A1A1A;
    --white: #242424;
    --text-dark: #E8E0D0;
    --text-light: #B0A89A;
    --border-color: #3A3A3A;
}

[data-theme="dark"] .navbar {
    background: #1C1C1C;
    border-bottom: 1px solid #333;
}

[data-theme="dark"] .footer {
    background: #111;
}

[data-theme="dark"] .article-card,
[data-theme="dark"] .result-item,
[data-theme="dark"] .gallery-item-overlay,
[data-theme="dark"] .way-card,
[data-theme="dark"] .guidelines-section,
[data-theme="dark"] .submit-section,
[data-theme="dark"] .contact-form-card {
    background: #2A2A2A;
    border-color: #3A3A3A;
}

[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, #3D0000, #7A4A00);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: #1A1A1A;
    border-color: #444;
    color: #E8E0D0;
}

[data-theme="dark"] mark {
    background: #7A5C00;
    color: #fff;
}

/* Dark mode toggle button */
.dark-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.dark-toggle:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ── Disqus Comment Count on Cards ────────────────────────────────────── */
.article-comment-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-secondary, #888);
    text-decoration: none;
    margin-top: 0.4rem;
}
.article-comment-count::before {
    content: '\f086';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}
.article-comment-count:hover {
    color: var(--primary-color);
}

/* ── Floating Share Bar ────────────────────────────────────────────────── */
.floating-share {
    position: fixed;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-share.visible {
    opacity: 1;
    pointer-events: all;
}

.float-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.float-share-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.float-share-btn.fb   { background: #1877F2; }
.float-share-btn.tw   { background: #1DA1F2; }
.float-share-btn.wa   { background: #25D366; }
.float-share-btn.copy { background: var(--primary-color); }

.float-share-label {
    font-size: 0.65rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .floating-share { display: none; }
}

/* ── Giscus comments wrapper ──────────────────────────────────────────── */
.comments-section {
    margin: 3rem 0 2rem;
}

.comments-section h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(70px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(193, 120, 23, 0.3), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.3), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-family: var(--font-body);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Categories Section */
.categories {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    background: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #D4941D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-link:hover {
    gap: 1rem;
}

/* Featured Section */
.featured {
    padding: var(--spacing-xl) 0;
    background: var(--light-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.featured-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content {
    padding: var(--spacing-md);
}

.featured-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.featured-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.featured-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.featured-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-link:hover {
    gap: 1rem;
}

/* Stats Section */
.stats {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* About Preview Section */
.about-preview {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    height: 400px;
}

.pattern-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.pattern-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.1) 30px,
            rgba(255, 255, 255, 0.1) 60px
        );
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    padding: 0.875rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    margin-top: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
}

.footer-credit strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-credit a:hover {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

/* ── PWA App Promo Section ────────────────────────────────────────────── */
.app-promo {
    background: linear-gradient(135deg, #1a0a00 0%, #2d1500 50%, #1a0a00 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.app-promo::before {
    content: '';
    position: absolute;
    inset: 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='%23C17817' 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");
    pointer-events: none;
}
.app-promo-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}
.app-promo-icon {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    background: rgba(193, 120, 23, 0.15);
    border: 2px solid rgba(193, 120, 23, 0.4);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: #C17817;
}
.app-promo-text {
    flex: 1;
}
.app-promo-text h2 {
    color: #f5e6c8;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.app-promo-text > p {
    color: rgba(240, 230, 208, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    max-width: 620px;
}
.app-promo-text strong { color: #C17817; }
.app-promo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}
.app-promo-features li {
    color: rgba(240, 230, 208, 0.8);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.app-promo-features li i {
    color: #C17817;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.app-promo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.app-promo-actions .btn i { margin-right: 0.35rem; }
.app-promo-hint {
    color: rgba(240, 230, 208, 0.55);
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
}
.app-promo-hint i { color: #C17817; margin-right: 0.3rem; }
.app-promo-hint strong { color: rgba(240, 230, 208, 0.75); font-weight: 600; }
@media (max-width: 768px) {
    .app-promo-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.75rem;
    }
    .app-promo-features {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .app-promo-actions {
        justify-content: center;
    }
    .app-promo-text h2 { font-size: 1.6rem; }
    .app-promo-hint { font-size: 0.78rem; }
}

/* ── PWA Install Banner ───────────────────────────────────────────────── */
#pwa-install-banner {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a0a00;
    color: #f0e6d0;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    z-index: 9999;
    max-width: 90vw;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#pwa-install-banner strong { color: #C17817; }
#pwa-install-btn {
    background: #C17817;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}
#pwa-dismiss-btn {
    background: none;
    border: none;
    color: #f0e6d0;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.6;
    padding: 0 0.2rem;
}
#pwa-dismiss-btn:hover { opacity: 1; }

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
