/* Base Styles */
:root {
    --primary-color: #2a4834;
    --secondary-color: #95C623;
    --accent-color: #4EB3AF;
    --text-color: #333333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    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(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Calistoga', serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2:after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

h3 {
    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);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background-color: #1d3626;
    color: white;
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: var(--box-shadow);
}

.btn-secondary:hover {
    background-color: #85b520;
    color: var(--dark-color);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
}

/* Header */
header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Calistoga', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.logo-svg {
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    position: relative;
}

.nav-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-icon:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-color: #f1f8e9;
    position: relative;
    padding: 5rem 0 7rem;
    overflow: hidden;
}

.hero-shape-top, .hero-shape-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-top {
    top: 0;
}

.hero-shape-bottom {
    bottom: 0;
}

.hero-shape-top svg, .hero-shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.hero-shape-top path {
    fill: white;
}

.hero-shape-bottom path {
    fill: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.image-collage {
    position: relative;
    height: 400px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.accent-img-1, .accent-img-2 {
    position: absolute;
    width: 40%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.accent-img-1 {
    top: -30px;
    right: -30px;
    z-index: 2;
    transform: rotate(10deg);
}

.accent-img-2 {
    bottom: -30px;
    left: -30px;
    z-index: 2;
    transform: rotate(-8deg);
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-icon {
    color: var(--primary-color);
}

/* Services Section */
.services-section {
    background-color: #f1f8e9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* Meals Section */
.meals-section {
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.meal-list {
    margin-bottom: 1rem;
}

.meal-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.meal-icon {
    margin-right: 10px;
    font-style: normal;
}

.meal-image {
    margin-top: 1rem;
}

/* Seasonal Section */
.seasonal-section {
    background-color: #f1f8e9;
}

.seasonal-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.season-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.season-icon {
    margin: 1rem auto;
    width: 80px;
    height: 80px;
}

.seasonal-list {
    text-align: left;
}

.seasonal-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-icon {
    margin-right: 10px;
    font-style: normal;
}

/* Nutrition Myths */
.nutrition-myths {
    background-color: white;
}

.myths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.myth-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.myth-card:hover {
    transform: translateY(-5px);
}

.myth-icon {
    margin-bottom: 1rem;
}

/* Food Labels */
.food-labels {
    background-color: #f1f8e9;
}

.labels-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.labels-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.label-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    color: var(--primary-color);
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Mulish', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-shape-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-shape-top path {
    fill: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-item {
    padding: 1rem;
}

.footer-logo {
    grid-column: 1;
    grid-row: 1;
}

.footer-links {
    grid-column: 2;
    grid-row: 1;
}

.footer-newsletter {
    grid-column: 1;
    grid-row: 2;
}

.footer-policies {
    grid-column: 2;
    grid-row: 2;
}

.footer-logo h3 {
    color: white;
    margin-top: 1rem;
}

.footer-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.footer-item ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-item a {
    color: white;
}

.footer-item a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem;
    border: none;
    border-radius: var(--border-radius);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content, 
    .labels-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .footer-logo, .footer-links, .footer-newsletter, .footer-policies {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 10px;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
}

@media (max-width: 576px) {
    .main-nav ul {
        gap: 0.8rem;
    }
    
    .nav-icon span {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Дополнительные страницы */
/* Страница благодарности */
.thankyou-section {
    text-align: center;
    padding: 5rem 0;
}

.thankyou-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
}

.thankyou-text {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-section .btn {
    margin-top: 2rem;
}

/* Страницы политик */
.policy-section {
    padding: 4rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content ol {
    list-style-type: decimal;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.back-to-home {
    display: inline-block;
    margin-top: 2rem;
}