/* Загальні стилі */
:root {
    --main-green: #4CAF50;
    --lime-green: #8BC34A;
    --dark-green: #2E7D32;
    --light-green: #C8E6C9;
    --aubergine: #4A148C;
    --light-aubergine: #9C27B0;
    --black: #212121;
    --dark-grey: #424242;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Calistoga', cursive;
    color: var(--black);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--lime-green), var(--main-green));
    margin: 0.5rem auto 0;
    border-radius: 4px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--main-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 5rem 2rem;
    position: relative;
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-separator path {
    fill: var(--light-grey);
}

section:nth-child(odd) {
    background-color: var(--white);
}

section:nth-child(odd) .wave-separator path {
    fill: var(--light-grey);
}

section:nth-child(even) {
    background-color: var(--light-grey);
}

section:nth-child(even) .wave-separator path {
    fill: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Хедер і навігація */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
}

.logo-container h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--dark-green);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background-color: var(--light-green);
    transform: translateY(-5px);
}

.nav-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.nav-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-green);
}

/* Hero секція */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
    text-align: left;
}

.hero-text h2::after {
    margin: 0.5rem 0 0;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-grey);
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Calistoga', cursive;
    font-size: 2.5rem;
    color: var(--main-green);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0);
}

.hero-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: var(--aubergine);
    top: 20px;
    left: 20px;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, var(--main-green), var(--dark-green));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: var(--white);
}

.cta-button:hover::before {
    left: 100%;
}

.button-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

/* Секція про нас */
.about-section {
    background-color: var(--light-grey);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    flex-shrink: 0;
}

/* Секція послуг */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 1.5rem;
    background-color: var(--light-green);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--main-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    gap: 0.5rem;
    margin-top: auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.service-button:hover .button-icon {
    transform: translateX(5px);
}

/* Секція харчування */
.nutrition-section {
    background-color: var(--white);
}

.nutrition-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nutrition-plate {
    flex: 1;
}

.plate-svg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.nutrition-info {
    flex: 1;
}

.nutrition-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Сезонний календар */
.seasonal-section {
    background-color: var(--light-grey);
}

.seasonal-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.season-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.season-image {
    margin: 1rem 0;
}

.season-image img {
    border-radius: 10px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.products-list {
    margin-bottom: 1rem;
}

.products-list h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.products-list ul {
    padding-left: 1.5rem;
}

.season-benefits {
    font-style: italic;
    color: var(--dark-grey);
}

/* Секція меню */
.menus-section {
    background-color: var(--white);
}

.menus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-image {
    margin: 1rem 0;
}

.menu-image img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-meals {
    margin-bottom: 1rem;
}

.meal {
    margin-bottom: 1rem;
}

.meal h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--main-green);
}

.menu-description {
    font-style: italic;
    color: var(--dark-grey);
}

/* Секція рецептів */
.recipes-section {
    background-color: var(--light-grey);
}

.recipes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recipe-image {
    position: relative;
}

.recipe-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.difficulty {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
}

.easy {
    background-color: var(--main-green);
}

.medium {
    background-color: var(--light-aubergine);
}

.recipe-card h3 {
    padding: 1rem 1.5rem 0;
    font-size: 1.3rem;
}

.recipe-details {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
}

.recipe-time, .recipe-calories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.recipe-description {
    padding: 0 1.5rem 1rem;
    font-size: 0.95rem;
}

.recipe-button {
    background-color: var(--main-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 0;
    width: 100%;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.recipe-button:hover {
    background-color: var(--dark-green);
}

/* Секція відгуків */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 1rem;
}

/* Контактна форма */
.contact-section {
    background-color: var(--light-grey);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.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.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--main-green);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, var(--main-green), var(--dark-green));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

/* Футер */
footer {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--aubergine) 100%);
    color: var(--white);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo {
    background-color: var(--white);
    border-radius: 50%;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: left;
}

.footer-logo h2::after {
    display: none;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3, .footer-policies h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links ul, .footer-policies ul {
    list-style: none;
}

.footer-links li, .footer-policies li {
    margin-bottom: 0.75rem;
}

.footer-links a, .footer-policies a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover, .footer-policies a:hover {
    opacity: 1;
}

.footer-decoration {
    grid-column: 1 / -1;
}

.footer-svg {
    width: 100%;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Адаптивність */
@media screen and (max-width: 1024px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 2.4rem;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column-reverse;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .nutrition-content {
        flex-direction: column;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .rating {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .nav-icon {
        padding: 0.5rem;
    }
    
    .nav-icon img {
        width: 30px;
        height: 30px;
    }
    
    .nav-icon span {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
    }
}

/* Спеціальні ефекти */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button:hover {
    animation: pulse 1.5s infinite;
}

/* Сторінка подяки та політики */
.thank-you-section, .policy-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
}

.thank-you-content, .policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--main-green);
}

.thank-you-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    background-color: var(--main-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.policy-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.policy-text {
    text-align: left;
}

.policy-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-text p, .policy-text ul {
    margin-bottom: 1.5rem;
}

.policy-text ul {
    padding-left: 2rem;
}