/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    background-color: var(--color-bg-off-white);
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    line-height: 1.1;
}

.highlight-text {
    color: var(--color-accent);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 480px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* Wavy Banner */
.wavy-banner {
    background-color: #C5E065;
    padding: 1rem 0;
    margin: 4rem 0 2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    border-radius: 50% / 20%;
    transform: rotate(-1deg) scale(1.05);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.wavy-banner span {
    margin: 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Green Benefits Grid */
.green-section-wrapper {
    align-items: center;
    justify-content: space-between;
}

.green-card-dark {
    background-color: var(--color-primary-dark);
    color: white;
    border-radius: 40px;
    padding: 3rem;
    flex: 1.5;
    position: relative;
    overflow: hidden;
}

.green-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.green-item .icon-box {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.green-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.green-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.why-content {
    flex: 1;
    text-align: left;
    padding-left: 3rem;
}

.mascot-img {
    height: 150px;
    margin-bottom: 1rem;
    display: block;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
    line-height: 1.1;
}

.btn-orange {
    background-color: var(--color-accent);
    color: white;
    padding: 0.75rem 2rem;
    margin-top: 1rem;
}


/* Menu Grid */
/* Menu Horizontal Scroll */
.menu-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
    /* Space for shadow/scrollbar */
    scroll-snap-type: x mandatory;
    /* Hide scrollbar for Chrome/Safari/Opera */
    -webkit-overflow-scrolling: touch;
}

.menu-grid::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.menu-grid {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.menu-card {
    min-width: 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge-popular {
    background-color: var(--color-accent);
}

.badge-special {
    background-color: #E63946;
}

.badge-bestseller {
    background-color: var(--color-primary);
}

.badge-new {
    background-color: #457B9D;
}

.card-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
}

.card-rating {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.price-current {
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Build Your Own Section */
.build-section {
    background-color: var(--color-bg-light-green);
}

.step-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-number {
    background: var(--color-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Footer */
.footer {
    background-color: #2f6130;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3,
.footer h4 {
    color: var(--color-accent);
    /* Orange for headings */
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

/* Stats Section */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-main);
    font-weight: 500;
}

/* Redefined Salad Section */
.redefined-section {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

.arc-container {
    position: relative;
    width: 600px;
    height: 300px;
    margin: 3rem auto 0;
}

.arc-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    border: 3px dashed #8ABD4C;
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.bowl-center {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    border-radius: 50%;
    z-index: 2;
}

.arc-item {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.arc-dot {
    width: 16px;
    height: 16px;
    border: 3px solid #8ABD4C;
    background: white;
    border-radius: 50%;
    display: inline-block;
}

.arc-item-1 {
    top: 40%;
    left: -40px;
}

.arc-item-2 {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.arc-item-3 {
    top: 40%;
    right: -40px;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-text .flex {
        justify-content: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .step-grid {
        grid-template-columns: 1fr;
    }

    .green-section-wrapper {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .why-content {
        padding-left: 0;
        text-align: center;
    }

    .mascot-img {
        margin: 0 auto 1rem;
    }

    .green-grid {
        grid-template-columns: 1fr;
    }

    .wavy-banner {
        flex-wrap: wrap;
        border-radius: 0;
        transform: none;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .arc-container {
        width: 100%;
        height: auto;
        margin-top: 2rem;
    }

    .arc-border {
        display: none;
    }

    .bowl-center {
        position: static;
        transform: none;
        width: 80%;
        margin-bottom: 2rem;
    }

    .arc-item {
        position: static;
        width: auto;
        margin: 0.5rem auto;
        justify-content: center;
    }

    /* Mobile - New Sections */
    .diff-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem !important;
    }

    .cta-image img {
        width: 200px !important;
        height: 200px !important;
        margin-top: 2rem;
    }

    .newsletter-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
}

/* Difference Section */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diff-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.diff-icon {
    font-size: 2.5rem;
    /* Use SVG icons if available, adjusting font-size for emojis suitable placeholder */
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Consultation CTA */
.cta-banner {
    background: #E8F0E4;
    /* Light green bg */
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 1;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: transparent;
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.blog-content h4 {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    line-height: 1.4;
}

/* Newsletter */
.newsletter-banner {
    background: #C5E065;
    background: linear-gradient(90deg, #A8D153 0%, #CDE66F 100%);
    border-radius: 50px;
    /* Pillow shape from design */
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-form {
    display: flex;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    width: 500px;
}

.newsletter-form input {
    border: none;
    padding: 0 1.5rem;
    flex: 1;
    outline: none;
    font-size: 0.95rem;
}

.newsletter-form button {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}