/* Light Mode (Default) */
:root {
    --primary-color: #8B5A3C;     
    --primary-dark: #6B4423;       
    --primary-light: #E8D5C4;        
    
    --secondary-color: #A0826D;     
    --secondary-light: #F5F1ED;      
    
    --neutral-dark: #3E3E3E;        
    --neutral-medium: #7A7A7A;      
    --neutral-light: #F8F6F3;        
    --white: #ffffff;
    --hero-text: #ffffff;
    
    --font-family: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.5s ease;
}

/* Dark Mode */
:root.dark-mode {
    --primary-color: #D4A574;
    --primary-dark: #C4936A;
    --primary-light: #4A3728;
    
    --secondary-color: #B8956A;
    --secondary-light: #2A2A2A;
    
    --neutral-dark: #F0F0F0;
    --neutral-medium: #CCCCCC;
    --neutral-light: #2D2D2D;
    --white: #1E1E1E;
    --hero-text: #6B4423;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--neutral-dark);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Container - Responsive max-width wrapper */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography Styles */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
    color: var(--neutral-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--neutral-dark);
}

p {
    margin-bottom: var(--space-md);
    color: var(--neutral-medium);
    line-height: 1.8;
}

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

a:hover {
    color: var(--primary-dark);
}

/* Button Styles */

.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: auto;
    right: 20px;
    bottom: 20px;


    
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.theme-toggle:active {
    transform: scale(0.95);
}


/* Navigation Bar */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: background-color 0.5s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--neutral-dark);
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover i {
    transform: scale(1.2);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}
/* Hide Hamburger on Desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--primary-color);
}


/* Mobile Menu (Hidden by default) */
.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    transition: max-height 0.4s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
    }

    .nav-links.open {
        max-height: 500px;
    }

    .nav-links li {
        border-bottom: 1px solid var(--neutral-light);
        width: 100%;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
        color: var(--neutral-dark);
        font-size: 1rem;
        font-weight: 600;
    }

    .nav-links a:hover {
        background: var(--primary-light);
        color: var(--primary-dark);
    }
}


/* Hero Section */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: var(--space-2xl) 0 var(--space-2xl) var(--space-2xl);
    color: var(--white);
}

.hero-title {
    color: var(--hero-text);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */

.features {
    background-color: var(--neutral-light);
    padding: var(--space-2xl) 0;
    margin: var(--space-2xl) 0;
    transition: background-color 0.5s ease;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--neutral-medium);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

:root.dark-mode .feature-card {
    background: var(--secondary-light);
}

.feature-card:hover {
    border: 2px solid var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(139, 90, 60, 0.2);
}

:root.dark-mode .feature-card:hover {
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    display: block;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-dark);
}

.feature-card h3 {
    color: var(--neutral-dark);
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--neutral-medium);
    margin-bottom: 0;
}

/* Visual Element Section */

.visual-section {
    padding: var(--space-2xl) 0;
    background-color: var(--white);
    transition: background-color 0.5s ease;
}

.visual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visual-text h2 {
    color: var(--neutral-dark);
    margin-bottom: var(--space-md);
}

.visual-text p {
    margin-bottom: var(--space-lg);
    color: var(--neutral-medium);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: var(--space-sm) 0;
    color: var(--neutral-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: var(--space-md);
}

.visual-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-xl);
    height: 400px;
}

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

/* Details / Information Section */

.details {
    background-color: var(--white);
    padding: var(--space-2xl) 0;
    transition: background-color 0.5s ease;
}

.details .section-title {
    margin-bottom: var(--space-2xl);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.detail-card {
    background-color: var(--neutral-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.detail-card h3 {
    color: var(--neutral-dark);
    margin-bottom: var(--space-md);
}

.detail-card p {
    color: var(--neutral-medium);
    margin-bottom: 0;
}

/* Statistics Section */

.stats {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: var(--space-2xl) 0;
    color: var(--white);
    margin: var(--space-2xl) 0;
    transition: all 0.5s ease;
    overflow: hidden;
    min-height: 400px;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.stat-item {
    padding: var(--space-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #ffffff !important;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
}


/* Final CTA Section */

.final-cta {
    background-color: var(--secondary-light);
    padding: var(--space-2xl) 0;
    text-align: center;
    transition: background-color 0.5s ease;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content h2 {
    color: var(--neutral-dark);
    margin-bottom: var(--space-md);
    max-width: 700px;
}

.cta-content p {
    color: var(--neutral-medium);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--neutral-medium);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* Footer */

.footer {
    background-color: #3E3E3E;
    color: #ffffff;
    padding: var(--space-2xl) 0 var(--space-lg);
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Keep footer colors in dark mode */
:root.dark-mode .footer {
    background-color: #3E3E3E;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: #8B5A3C;
}

/* Keep footer section colors in dark mode */
:root.dark-mode .footer-section a:hover {
    color: #D4A574;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    display: inline-block;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Scroll Animation Styles */

.feature-card,
.detail-card,
.section-title,
.section-subtitle,
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered animation for cards */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.1s; }
.feature-card:nth-child(5) { transition-delay: 0.2s; }
.feature-card:nth-child(6) { transition-delay: 0.3s; }

.detail-card:nth-child(1) { transition-delay: 0s; }
.detail-card:nth-child(2) { transition-delay: 0.1s; }
.detail-card:nth-child(3) { transition-delay: 0.2s; }
.detail-card:nth-child(4) { transition-delay: 0.3s; }

.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }

/* Responsive Design - Media Queries */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Navigation */
    .nav-links {
        gap: var(--space-lg);
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: var(--space-lg) 0 var(--space-lg) var(--space-md);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-background {
        height: 350px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-md);
    }

    /* Visual Section */
    .visual-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .visual-image {
        height: 300px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    /* Theme Toggle */
    .theme-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }

    /* Navigation */
    .navbar {
        padding: var(--space-md) 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: var(--space-sm);
        font-size: 0.75rem;
    }

    .nav-links a i {
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        min-height: 450px;
        align-items: flex-end;
    }

    .hero-content {
        padding: var(--space-lg) var(--space-md) var(--space-lg) var(--space-md);
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: var(--space-sm);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }

    .btn-large {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9rem;
        width: 100%;
    }

    /* Features */
    .features {
        padding: var(--space-xl) 0;
        background-color: var(--neutral-light);
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-card {
        padding: var(--space-lg);
        text-align: center;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: var(--space-md);
    }

    /* Visual Section */
    .visual-section {
        padding: var(--space-xl) 0;
    }

    .visual-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .visual-image {
        height: 280px;
        border-radius: var(--radius-lg);
    }

    .visual-text h2 {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }

    .visual-text p {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

    .feature-list li {
        font-size: 0.85rem;
        padding: var(--space-sm) 0;
    }

    .feature-list li::before {
        width: 4px;
        height: 4px;
        margin-right: var(--space-md);
    }

    /* Details */
    .details {
        padding: var(--space-xl) 0;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .detail-card {
        padding: var(--space-lg);
    }

    .detail-card h3 {
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
    }

    .detail-card p {
        font-size: 0.85rem;
    }

    /* Stats */
    .stats {
        padding: var(--space-xl) 0;
        min-height: 320px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-item {
        padding: var(--space-lg) var(--space-md);
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* CTA */
    .final-cta {
        padding: var(--space-xl) 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }

    .btn-primary {
        width: 100%;
    }

    .cta-subtext {
        font-size: 0.8rem;
    }

    /* Footer */
    .footer {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-links {
        font-size: 0.85rem;
    }

    .social-links {
        gap: var(--space-sm);
    }

    .social-icon {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Utility & Accessibility */

/* Focus states for keyboard navigation */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link (hidden but available for screen readers) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}
/* Reposition theme toggle for mobile */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;

    width: 45px;
    height: 45px;
    font-size: 1.25rem;

    z-index: 2000;
}

/* Extra Small Mobile  */
@media (max-width: 400px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .nav-links {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .hero-cta {
        gap: var(--space-xs);
    }

    .btn-large {
        padding: var(--space-md) var(--space-md);
        font-size: 0.85rem;
    }
     .theme-toggle {
        bottom: 15px;
        right: 15px;
    }

    
}


/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    body {
        color: black;
        background: white;
    }
}


