/* Base Styles */
:root {
    --primary-color: #4A6741;
    --secondary-color: #FFB84D;
    --text-color: #333333;
    --light-color: #FFFFFF;
    --background-color: #F9F9F9;
    --accent-color: #E87461;
    --border-color: #DDDDDD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Calistoga', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 80px 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-right: 10px;
    margin-bottom: 10px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 4px 6px rgba(74, 103, 65, 0.2);
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 184, 77, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.form-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Calistoga', serif;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.logo-svg {
    margin-right: 10px;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.season-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.calendar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/calendar-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 42px;
}

.bottom-wave {
    bottom: -1px;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    color: var(--light-color);
    max-width: 550px;
}

.hero-content h1 {
    color: var(--light-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: right;
    max-width: 500px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.utensil-divider {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.service-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-link:hover:after {
    width: 100%;
}

.water-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.water-drop {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
    opacity: 0.4;
}

.drop1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
}

.drop2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 85%;
}

.drop3 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 15%;
}

/* Menu Section */
.menu {
    background-color: var(--light-color);
}

.nutrition-plate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.plate-description {
    flex: 1;
    min-width: 300px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-card-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    display: flex;
    align-items: center;
}

.menu-icon {
    margin-right: 15px;
}

.menu-card-header h3 {
    color: var(--light-color);
    margin-bottom: 0;
}

.menu-card-content {
    padding: 20px;
}

.menu-benefit {
    margin-top: 15px;
    font-style: italic;
    color: var(--primary-color);
}

/* Timeline Section */
.timeline {
    background-color: var(--background-color);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
}

.timeline-time {
    flex: 0 0 120px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding-right: 20px;
    position: relative;
}

.timeline-time:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.3);
}

.timeline-content {
    flex: 1;
    padding-left: 30px;
    border-left: 2px dashed var(--secondary-color);
    padding-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Infographic Section */
.infographic {
    background-color: var(--light-color);
    text-align: center;
}

.calorie-chart {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    height: 300px;
    margin-bottom: 30px;
}

.chart-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120px;
}

.chart-bar {
    width: 60px;
    background-color: var(--primary-color);
    border-radius: 5px 5px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background-color: var(--secondary-color);
    transform: scaleY(1.05);
}

.chart-value {
    position: absolute;
    top: -25px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.chart-label {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.infographic-note {
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
}

/* Seasonal Section */
.seasonal {
    background-color: var(--background-color);
    position: relative;
}

.seasonal-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.seasonal-text {
    flex: 1;
    min-width: 300px;
}

.seasonal-benefits {
    list-style: none;
    margin: 20px 0 30px;
}

.seasonal-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.seasonal-benefits li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.seasonal-calendar {
    flex: 1;
    min-width: 300px;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.season-card {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.season-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    display: inline-block;
}

.season-card ul {
    list-style: none;
}

.season-card li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.season-card li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background-color: var(--background-color);
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item svg {
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Mulish', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-item {
    min-width: 200px;
}

.footer-logo a {
    color: var(--light-color);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo span {
    font-family: 'Calistoga', serif;
    font-size: 1.3rem;
}

.footer-item h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-item h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
}

.footer-item ul {
    list-style: none;
}

.footer-item ul li {
    margin-bottom: 10px;
}

.footer-item ul li a {
    color: var(--light-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-item ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.mini-calendar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.calendar-item {
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.calendar-item:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .navigation {
        margin-top: 20px;
        width: 100%;
        overflow-x: auto;
    }
    
    .nav-list {
        padding-bottom: 10px;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .nutrition-plate {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-time {
        padding-bottom: 10px;
        padding-right: 0;
    }
    
    .timeline-time:after {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
    }
    
    .timeline-content {
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 2px dashed var(--secondary-color);
    }
    
    .calorie-chart {
        height: 250px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .chart-item {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .nav-item {
        margin-left: 15px;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .season-grid {
        grid-template-columns: 1fr;
    }
    
    .calorie-chart {
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        margin-right: 0;
    }
}