/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #FF9800;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --accent-color: #88e0bb;
    --text-color: #212121;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.logo-container h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo-container h1 span {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 80%;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
    stroke: currentColor;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--box-shadow);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 2rem 0;
}

.hero-text h2 {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-text h2::after {
    margin: 15px 0 0;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image-collage {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.collage-img {
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    transform: rotate(0deg);
}

.collage-img:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 1;
}

.img1 {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 100%;
}

.img2 {
    grid-column: 2;
    grid-row: 1;
}

.img3 {
    grid-column: 2;
    grid-row: 2;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider path {
    fill: var(--light-color);
}

.wave-flip svg {
    transform: rotate(180deg);
}

.leaf-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.leaf-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.leaf-divider path {
    fill: var(--light-color);
}

.leaf-flip svg {
    transform: rotate(180deg);
}

/* About Section */
.about-section {
    position: relative;
    padding: 3rem 0 6rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-section {
    background-color: #f8fdf8;
    position: relative;
    padding: 3rem 0 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    stroke: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Menu Section */
.menu-section {
    position: relative;
    padding: 3rem 0 6rem;
}

.timeline-container {
    margin: 2rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 2rem 0;
    width: 100%;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.timeline-dot svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.timeline-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
}

.ingredient-day {
    background: #f8fdf8;
    padding: 2rem 0;
    margin: 2rem 0;
}

.ingredient-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.ingredient-image {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.ingredient-image:hover {
    transform: scale(1.05);
}

.ingredient-info {
    flex: 2;
    min-width: 300px;
}

.ingredient-facts {
    margin-top: 1rem;
}

.ingredient-facts li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.icon-fruit {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.weekly-menu {
    margin: 2rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.menu-day {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.menu-day h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.menu-day ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.icon-meal {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.calories-info {
    margin: 2rem 0;
}

.calories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.calorie-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.calorie-chart {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.calorie-item h4 {
    margin-bottom: 0.5rem;
}

.calorie-item p {
    color: var(--primary-color);
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8fdf8;
    position: relative;
    padding: 3rem 0 6rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    stroke: var(--primary-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    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 #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-logo .logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0;
}

.footer-logo h3 span {
    color: var(--primary-color);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links a {
    color: #ccc;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.copyright {
    grid-column: 1 / -1;
    margin-top: 2rem;
    text-align: center;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 968px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: 85%;
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -10px;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 1.5rem;
    }

    header {
        flex-direction: column;
        padding: 1rem;
    }

    .main-nav {
        margin-top: 1rem;
        width: 100%;
        overflow-x: auto;
    }

    .main-nav ul {
        width: max-content;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .service-card, .benefit-card {
        padding: 1.5rem;
    }

    .timeline-content {
        width: 80%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-item {
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .main-nav a {
        font-size: 0.8rem;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .container {
        width: 95%;
        padding: 1.5rem 0.8rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-container h1 {
        font-size: 1.2rem;
    }

    .main-nav ul {
        gap: 0.8rem;
    }

    .hero-text h2 {
        font-size: 1.6rem;
    }
}