:root {
    --color-peach: #FF9E80;
    --color-mint: #A5D6A7;
    --color-cream: #FFF8E1;
    --color-mustard: #E6C55F;
    --color-teal: #80CBC4;
    --color-text-dark: #4E342E;
    --color-white: #FFFFFF;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    overflow-x: hidden;
}

/* Header */
header {
    background-color: var(--color-cream);
}

.logo-container {
    text-align: center;
    padding: 1rem 0;
}

.site-title {
    font-family: 'Calistoga', serif;
    font-size: 5rem;
    color: var(--color-peach);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 1rem 0;
    text-shadow: 3px 3px 0px var(--color-mint);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    background-color: var(--color-mint);
    /* Fallback/Base */
    background: linear-gradient(to right, #E0F2F1, #E0F2F1);
    /* Light background for nav bar */
    background: transparent;
    /* Based on image, it seems to be just on the cream background or a very light strip */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    /* For mobile menu positioning */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-cta {
    background-color: var(--color-peach);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-only-cta {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    max-height: 600px;
    /* Constrain height for large images */
    background-color: var(--color-cream);
}

.hero-image-left,
.hero-image-right {
    flex: 1;
    overflow: hidden;
}

.hero-image-left img,
.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(90deg, var(--color-peach) 50%, var(--color-mint) 50%);
    color: white;
    position: relative;
    /* Creating the curved shape is complex with just CSS, using a simplified approach or clip-path */
    /* For exact match, we might need an SVG background or complex border-radius */
    border-radius: 100px;
    /* Approximation */
    margin: 0 -50px;
    /* Overlap images slightly */
    z-index: 10;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 80%;
    line-height: 1.5;
}

.btn-hero {
    background-color: #CFA86E;
    /* Gold/Brownish tone from image */
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background-color: var(--color-cream);
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.feature-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.icon-sweet {
    background-color: var(--color-peach);
}

.icon-healthy {
    background-color: var(--color-mint);
}

.icon-creative {
    background-color: var(--color-mustard);
}

.icon-wellness {
    background-color: var(--color-teal);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Inspiration Section */
.inspiration {
    text-align: center;
    padding: 2rem 2rem 4rem;
    background-color: var(--color-cream);
}

.inspiration h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inspiration-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inspiration-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inspiration-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inspiration-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.inspiration-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.card-overlay h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--color-peach);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px var(--color-mint);
}

.newsletter-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.newsletter-form input {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    flex: 1;
    max-width: 300px;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background-color: var(--color-mint);
    border: none;
    color: var(--color-text-dark);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--color-text-dark);
    padding: 2rem 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-peach);
}

/* Page Header (for subpages) */
.page-header {
    background-color: var(--color-peach);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: 'Calistoga', serif;
    font-size: 3.5rem;
    text-shadow: 3px 3px 0px var(--color-mint);
    margin-bottom: 1rem;
}

.page-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 50vh;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-title {
        font-size: 3rem;
        padding: 0.5rem 0;
    }

    nav {
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only-cta {
        display: inline-block;
        background-color: var(--color-peach);
        color: white;
        padding: 0.8rem 2rem;
        border-radius: 4px;
        font-weight: 700;
        margin-top: 1rem;
    }

    .hero {
        flex-direction: column;
        max-height: none;
    }

    .hero-image-left,
    .hero-image-right {
        height: 300px;
    }

    .hero-content {
        margin: 0;
        border-radius: 0;
        padding: 3rem 1.5rem;
        background: linear-gradient(180deg, var(--color-peach) 50%, var(--color-mint) 50%);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features {
        flex-wrap: wrap;
        gap: 3rem;
        padding: 3rem 1rem;
    }

    .feature-item {
        width: 45%;
    }

    .inspiration-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
        max-width: none;
    }

    .newsletter-form button {
        width: 100%;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2.2rem;
    }

    .feature-item {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}