/* Base Styles */
:root {
    --brand-green: #6fa189;
    --brand-green-light: #99bdaa;
    --brand-pink: #da9189;
    --brand-pink-light: #f0a793;
    --brand-orange: #faad76;
    --brand-orange-light: #f89e6b;
    --brand-gray: #e4e4dc;
    --brand-gray-light: #f3f4f1;
    --brand-gold: #ebbb50;
    --brand-gold-light: #f1d383;
    --brand-blue: #6e9bb0;
    --brand-blue-light: #79a5bb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 2rem;
}

/* CBD Banner Styles */
.nav-left {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: max-content;
}

.cbd-banner {
    height: 2rem;
    display: flex;
    align-items: center;
    border-left: 1px solid #e2e8f0;
    padding-left: 1.5rem;
    margin-left: 1.5rem;
}

.cbd-link {
    display: inline-flex;
    align-items: center;
    height: 2rem;
    padding: 0 1rem;
    background-color: rgba(111, 161, 137, 0.1);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.cbd-link:hover {
    background-color: rgba(111, 161, 137, 0.2);
}

.cbd-link span {
    color: #1a1a1a;
    font-weight: 500;
}

.cbd-link .click-here {
    color: var(--brand-green);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--brand-green);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brand-green);
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--brand-gray-light);
    padding: 6rem 1rem;
    margin-top: 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url('https://quizr.ai/assets/images/NaturalNtive_Patterns_Green.png');
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-logo {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 4rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature svg {
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #4a5568;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--brand-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background: var(--brand-green-light);
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

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

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .cbd-banner {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 0.5rem;
        height: auto;
        width: 100%;
    }

    .cbd-link {
        width: 100%;
        justify-content: center;
        height: auto;
        padding: 0.5rem 1rem;
    }

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

    .hero p {
        font-size: 1rem;
    }
}