/* Global Styles */
:root {
    --primary-color: #2E7D32;
    --secondary-color: #B71C1C;
    --text-color: #212121;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --gray: #757575;
    --light-gray: #E0E0E0;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link.seasonal {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.nav-link.seasonal:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin-bottom: 4rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.plate-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    color: var(--white);
}

.plate-button:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.plate-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s, opacity 0.5s;
    pointer-events: none;
}

.plate-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.plate-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-collage {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.collage-img {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-img:hover img {
    transform: scale(1.05);
}

.collage-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 400px;
}

.collage-2 {
    grid-column: 2;
    grid-row: 1;
    height: 190px;
}

.collage-3 {
    grid-column: 2;
    grid-row: 2;
    height: 190px;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    transform: rotateY(180deg);
}

.wave-divider path {
    fill: var(--white);
}

/* About Section */
.about-section {
    background-color: var(--white);
    padding-top: 3rem;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
}

.service-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: scaleX(1);
}

/* Meal Timeline Section */
.meal-timeline-section {
    background-color: var(--white);
    position: relative;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-point {
    position: relative;
    min-width: 100px;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.timeline-content {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--light-bg);
    transform: rotate(45deg);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Seasonal Calendar Section */
.seasonal-calendar-section {
    background-color: var(--light-bg);
    position: relative;
}

.calendar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.season-column {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.season-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.seasonal-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--light-gray);
}

.seasonal-list li:last-child {
    border-bottom: none;
}

.food-icon {
    margin-right: 0.5rem;
    min-width: 20px;
}

/* Label Guide Section */
.label-guide-section {
    background-color: var(--white);
    position: relative;
}

.label-guide-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.label-image-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.label-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.label-tips {
    flex: 1;
    min-width: 300px;
}

.tip-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tip-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Weekly Menu Section */
.weekly-menu-section {
    background-color: var(--light-bg);
    position: relative;
}

.menu-visualization {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.menu-day {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.menu-day h3 {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    margin-bottom: 0;
}

.menu-meals {
    padding: 1.5rem;
}

.meal {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--light-gray);
}

.meal:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.meal h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.menu-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Myths Section */
.myths-section {
    background-color: var(--white);
    position: relative;
}

.myths-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.myth-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.myth-icon {
    display: flex;
    align-items: flex-start;
}

.myth-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-bg);
    position: relative;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #212121;
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    grid-column: 1;
    grid-row: 1;
}

.footer-nav {
    grid-column: 2;
    grid-row: 1;
}

.footer-services {
    grid-column: 1;
    grid-row: 2;
}

.footer-policies {
    grid-column: 2;
    grid-row: 2;
}

.footer .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Decorative Elements */
.watercolor-spot {
    position: absolute;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
}

.spot-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.spot-2 {
    bottom: 15%;
    right: 8%;
    width: 250px;
    height: 250px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background-color: var(--secondary-color);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }
    
    .collage-1 {
        height: 300px;
    }
    
    .collage-2, .collage-3 {
        height: 140px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-section {
        padding-top: 2rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .label-guide-content, 
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .label-image-container, 
    .contact-info {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }
    
    .footer-logo,
    .footer-nav,
    .footer-services,
    .footer-policies {
        grid-column: 1;
    }
    
    .footer-logo {
        grid-row: 1;
    }
    
    .footer-nav {
        grid-row: 2;
    }
    
    .footer-services {
        grid-row: 3;
    }
    
    .footer-policies {
        grid-row: 4;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .collage-img {
        height: auto !important;
    }
    
    .collage-1 {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
    
    .collage-2 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .collage-3 {
        grid-column: 2;
        grid-row: 2;
    }
    
    .myth-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
}

@media screen and (max-width: 375px) {
    .collage-1,
    .collage-2,
    .collage-3 {
        grid-column: 1 / span 2;
    }
    
    .collage-1 {
        grid-row: 1;
    }
    
    .collage-2 {
        grid-row: 2;
    }
    
    .collage-3 {
        grid-row: 3;
    }
    
    .hero-collage {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .plate-button {
        width: 100%;
        text-align: center;
    }
}