/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c7746;
    --secondary-color: #e8b657;
    --background-light: #f5f9f5;
    --background-white: #ffffff;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #1b5a2e;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 1.5px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.wave-divider {
    position: relative;
    height: 100px;
    margin-top: -50px;
    z-index: 10;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: auto;
    margin-right: 15px;
    border-radius: 50%;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.navigation {
    flex-grow: 1;
    text-align: right;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.contact-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-button:hover {
    background-color: #1b5a2e;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 150px;
    background: linear-gradient(135deg, #e8f5e9 0%, #d7ecd0 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1b5a2e 100%);
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(44, 119, 70, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(44, 119, 70, 0.4);
    color: white;
}

.cta-button:active {
    transform: translateY(1px);
}

/* About Section */
.about {
    background-color: var(--background-white);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Services Section */
.services {
    background-color: var(--background-light);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 119, 70, 0.1);
    border-radius: 50%;
    padding: 15px;
}

.icon {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Ingredients Section */
.ingredients {
    background-color: var(--background-white);
    position: relative;
}

.ingredient-day {
    margin-bottom: 60px;
}

.ingredient-day h3, .nutritional-plate h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.ingredient-content, .plate-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.ingredient-image, .plate-image {
    flex: 1;
    min-width: 300px;
}

.ingredient-info, .plate-info {
    flex: 1;
    min-width: 300px;
}

.ingredient-facts {
    margin-top: 20px;
}

.ingredient-facts li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.ingredient-facts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.plate-proportions {
    margin-top: 20px;
}

.plate-proportions li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.proportion-veggie, .proportion-protein, .proportion-carbs, .proportion-fats {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.proportion-veggie {
    background-color: #a8e6cf;
}

.proportion-protein {
    background-color: #fdffab;
}

.proportion-carbs {
    background-color: #ffd3b6;
}

.proportion-fats {
    background-color: #ffaaa7;
}

/* Seasonal Menu Section */
.seasonal-menu {
    background-color: var(--background-light);
    position: relative;
}

.seasons-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.season {
    padding: 12px 25px;
    margin: 0 5px;
    background-color: var(--background-white);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.season.active, .season:hover {
    background-color: var(--primary-color);
    color: white;
}

.menu-gallery {
    margin-bottom: 60px;
}

.menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.menu-image {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.menu-description {
    flex: 1;
    min-width: 300px;
}

.menu-description h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.menu-benefits {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit {
    padding: 8px 15px;
    margin: 5px;
    background-color: rgba(44, 119, 70, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.seasonal-calendar h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.calendar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.season-column {
    flex: 1;
    min-width: 200px;
    background-color: var(--background-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.season-column h4 {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(44, 119, 70, 0.2);
    color: var(--primary-color);
}

.season-products li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.season-products li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(44, 119, 70, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--background-light);
    position: relative;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family: inherit;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 119, 70, 0.2);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1b5a2e 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(44, 119, 70, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 15px rgba(44, 119, 70, 0.4);
}

.submit-button:active {
    transform: translateY(1px);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about, .footer-nav, .footer-testimonials, .footer-contact {
    position: relative;
}

.footer h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.footer-testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.testimonial-name {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #ccc;
}

.footer-contact a {
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    margin-right: 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.copyright p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0;
}

/* Custom Decorative Elements */
.vegetable-divider {
    height: 30px;
    margin: 40px 0;
    background: url('images/vegetable-divider.svg') center center no-repeat;
    background-size: contain;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
    }

    .nav-item {
        margin-left: 15px;
    }

    .hero {
        padding: 80px 0 130px;
    }

    .hero-text h2 {
        font-size: 2.3rem;
    }

    .service-card {
        padding: 25px;
    }

    .seasons-tabs {
        flex-wrap: wrap;
    }

    .season {
        margin-bottom: 10px;
        padding: 10px 20px;
    }

    .menu-item {
        padding: 20px;
    }

    .calendar-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .header {
        flex-direction: column;
        padding: 15px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .navigation {
        width: 100%;
    }

    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-item {
        margin: 5px 10px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-links a {
        display: block;
        margin: 8px 0;
    }
}

@media screen and (max-width: 375px) {
    .hero-text h2 {
        font-size: 1.7rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }
}