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

:root {
    --primary-brown: #8B4513;
    --secondary-tan: #D2B48C;
    --light-cream: #F4E4C1;
    --dark-brown: #4A2C17;
    --white: #ffffff;
    --text-dark: #2d2d2d;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--secondary-tan) 100%);
}

/* Header Section - New Code */
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
    
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(139, 69, 19, 0.2);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(139, 69, 19, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #F5DEB3;
            text-decoration: none;
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(45deg, #D2691E, #CD853F);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(10deg);
            box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
        }

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

        .nav-menu li {
            position: relative;
        }

        .nav-menu li a {
            color: rgba(245, 222, 179, 0.9);
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
            display: block;
            position: relative;
        }

        .nav-menu li a:hover {
            background: rgba(245, 222, 179, 0.15);
            color: #F5DEB3;
            transform: translateY(-2px);
        }

        .nav-menu li a.active {
            background: rgba(245, 222, 179, 0.2);
            color: #F5DEB3;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
            min-width: 220px;
            box-shadow: 0 8px 32px rgba(139, 69, 19, 0.3);
            border-radius: 12px;
            padding: 0.5rem 0;
            z-index: 1000;
            border: 1px solid rgba(245, 222, 179, 0.1);
        }

        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-content a {
            padding: 0.75rem 1.25rem !important;
            border-radius: 0 !important;
            font-size: 0.9rem !important;
        }

        .dropdown-content a:hover {
            background: rgba(245, 222, 179, 0.2) !important;
            transform: none !important;
        }

        /* CTA Button */
        .cta-button {
            background: linear-gradient(45deg, #D2691E, #FF8C00) !important;
            color: white !important;
            padding: 0.875rem 2rem !important;
            border-radius: 25px !important;
            font-weight: 600 !important;
            box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4) !important;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem !important;
        }

        .cta-button:hover {
            background: linear-gradient(45deg, #FF8C00, #FF6347) !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 25px rgba(210, 105, 30, 0.5) !important;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #F5DEB3;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(245, 222, 179, 0.1);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
            z-index: 999;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: #F5DEB3;
            font-size: 2rem;
            cursor: pointer;
        }

        .mobile-nav {
            list-style: none;
            padding: 0;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
        }

        .mobile-nav a {
            color: #F5DEB3;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 1rem;
            display: block;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            background: rgba(245, 222, 179, 0.1);
        }

        /* Body padding to account for fixed header */
        body {
            padding-top: 80px;
        }

        /* Demo content */
        .demo-content {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #8B4513, #D2691E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-container {
                padding: 1rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }

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

            .hero-subtitle {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            body {
                padding-top: 70px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .demo-content {
                padding: 2rem 1rem;
            }
        }
    </style>

/* Hero Section - Fixed Transparency Issues */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--secondary-tan) 100%);
}

/* Hero Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Content Container - Fixed opacity issues */
.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
    z-index: 10; /* Higher z-index to ensure text is on top */
    background: transparent; /* Ensure no background interference */
}

/* Hero Title - Fixed transparency */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--dark-brown); /* Solid color instead of opacity */
    opacity: 1 !important; /* Force full opacity */
    position: relative;
    z-index: 11;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Add subtle shadow for better visibility */
}

/* Hero Subtitle - Fixed transparency */
.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--primary-brown); /* Solid color */
    opacity: 1 !important; /* Force full opacity */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 11;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 11;
    opacity: 1 !important;
}

.cta-button:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Floating Boba Pearls */
.boba-pearl {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--dark-brown);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 2; /* Lower z-index than text */
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark-brown);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-tan);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.feature-description {
    color: var(--primary-brown);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-brown);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1 !important;
    transform: translateY(0);
    transition: all 0.6s ease;
}


<style>
/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Header Styles */
.header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.2);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #F5DEB3;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #D2691E, #CD853F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.3);
}

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

.nav-menu li a {
    color: rgba(245, 222, 179, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.nav-menu li a:hover {
    background: rgba(245, 222, 179, 0.15);
    color: #F5DEB3;
    transform: translateY(-1px);
}

.cta-button {
    background: linear-gradient(45deg, #D2691E, #FF8C00) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(210, 105, 30, 0.5) !important;
    background: rgba(245, 222, 179, 0.15) !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #F5DEB3;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #3E2723 0%, #2E1A10 100%);
    color: #F5DEB3;
    padding: 3rem 0 1rem;
    margin-top: auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #F5DEB3;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #D2B48C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #DEB887;
}

.footer-bottom {
    border-top: 1px solid #5D4037;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #A1887F;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5DEB3;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    background: linear-gradient(45deg, #A0522D, #CD853F);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    }

    .nav-menu.show {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .footer-content {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }
}
</style>



/* HERO FIX FOR CENTER DISPL */
/* Alternative selectors if the button has different classes */
header button[class*="get-started"],
header a[class*="get-started"],
header .btn-primary,
header .cta-button {
    display: none !important;
}

/* Center align the hero section */
.hero,
.hero-section,
.main-hero,
section[class*="hero"] {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

/* Center hero content specifically */
.hero-content,
.hero-text,
.hero-wrapper {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 800px !important; /* Adjust as needed */
}

/* Center hero headings */
.hero h1,
.hero h2,
.hero-section h1,
.hero-section h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center hero paragraphs */
.hero p,
.hero-section p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 600px !important; /* Prevent text from being too wide */
}

/* Center any hero buttons/CTAs */
.hero .btn,
.hero .button,
.hero-section .btn,
.hero-section .button {
    margin: 0 auto !important;
    display: block !important;
    width: fit-content !important;
}

/* If there are multiple hero buttons, center them as a group */
.hero .btn-group,
.hero .button-group {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
}
