/* Загальні стилі */
:root {
    --primary-color: #4CAF50;
    --accent-color: #FF9800;
    --text-color: #333333;
    --bg-color: #ffffff;
    --secondary-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-title {
    font-family: 'Yeseva One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title .accent {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #3d9c40;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #e08800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.wave-divider {
    position: relative;
    height: 60px;
    width: 100%;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.wave-divider.inverted {
    transform: rotate(180deg);
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px var(--shadow-color);
    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: 'Yeseva One', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-svg {
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Герой секція */
.hero {
    padding: 150px 0 50px;
    position: relative;
    background-color: var(--secondary-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    align-items: center;
}

.hero-content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.hero-content h1 {
    font-family: 'Yeseva One', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(255, 152, 0, 0.3) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stats {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    gap: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Yeseva One', cursive;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Секція послуг */
.services {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.service-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
}

/* Секція переваг */
.benefits {
    padding: 80px 0;
    background-color: var(--secondary-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.benefit-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-item p {
    font-size: 0.95rem;
}

/* Секція процесу */
.process {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background-color: var(--bg-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 30px;
    background-color: var(--secondary-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.timeline-content h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 20px;
}

.timeline-content img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* Секція інгредієнту дня */
.ingredient {
    padding: 80px 0;
    background-color: var(--secondary-bg);
    position: relative;
}

.ingredient-of-day {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.ingredient-image {
    flex: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
}

.ingredient-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.2) 0%, rgba(76, 175, 80, 0.2) 100%);
    z-index: 1;
}

.ingredient-content {
    flex: 1.5;
}

.ingredient-content h3 {
    font-family: 'Yeseva One', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.ingredient-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ingredient-recipe {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.ingredient-recipe h4 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.ingredient-recipe p {
    margin-bottom: 15px;
}

/* Секція календаря */
.calendar {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
}

.season-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.season {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.season.active,
.season:hover {
    opacity: 1;
}

.season-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.season span {
    font-weight: 600;
}

.seasonal-products {
    position: relative;
}

.season-content {
    display: none;
}

.season-content.active {
    display: block;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 120px;
}

.product-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item span {
    font-weight: 500;
    text-align: center;
}

.season-recommendations {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.season-recommendations h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.season-recommendations p {
    max-width: 800px;
    margin-bottom: 30px;
}

.season-recommendations img {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Секція порад */
.guides {
    padding: 80px 0;
    background-color: var(--secondary-bg);
    position: relative;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.guide-item {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.guide-item h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
}

.portion-guide {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.portion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.portion-icon {
    margin-bottom: 10px;
}

.label-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.label-example {
    width: 100%;
    max-width: 350px;
}

.label-tips ul {
    list-style-type: disc;
    padding-left: 20px;
}

.label-tips li {
    margin-bottom: 10px;
}

.meal-timing {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.meal-timing h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 30px;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
}

.timing-chart {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timing-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timing-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timing-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--accent-color);
}

/* Секція рецептів */
.recipes {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
}

.recipe-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recipe-card {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-content {
    padding: 20px;
}

.recipe-content h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.recipe-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.info-icon {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipe-content p {
    margin-bottom: 15px;
}

.recipe-benefits {
    list-style-type: none;
    margin-bottom: 15px;
}

.recipe-benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.recipe-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Секція відгуків */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-bg);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

/* Секція контактів */
.contact {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-content h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    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);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* Футер */
.footer {
    background-color: #222;
    color: white;
    padding: 80px 0 30px;
}

.footer a {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "logo links ig newsletter"
        "policy policy policy policy"
        "copyright copyright copyright copyright";
    gap: 40px 20px;
}

.footer-logo {
    grid-area: logo;
}

.footer-logo a {
    display: flex;
    align-items: center;
    font-family: 'Yeseva One', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links {
    grid-area: links;
}

.footer h3 {
    font-family: 'Yeseva One', cursive;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-ig {
    grid-area: ig;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ig-item {
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.ig-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-newsletter {
    grid-area: newsletter;
}

.footer-newsletter .form-group {
    display: flex;
}

.footer-newsletter input {
    border-radius: 50px 0 0 50px;
    border: none;
}

.footer-newsletter button {
    border-radius: 0 50px 50px 0;
}

.footer-policy {
    grid-area: policy;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-policy ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-copyright {
    grid-area: copyright;
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

/* Адаптивний дизайн */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "logo links"
            "ig newsletter"
            "policy policy"
            "copyright copyright";
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 120px 0 50px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .hero-content {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        text-align: center;
    }
    
    .hero-image {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .hero-stats {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .ingredient-of-day {
        flex-direction: column;
        text-align: center;
    }
    
    .ingredient-facts {
        grid-template-columns: 1fr;
    }
    
    .fact-item {
        justify-content: center;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-icon {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "links"
            "ig"
            "newsletter"
            "policy"
            "copyright";
    }
    
    .footer-policy ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .season-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 375px) {
    .stat-item {
        flex: 1;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .service-card,
    .benefit-item {
        padding: 20px;
    }
    
    .recipe-info {
        flex-wrap: wrap;
    }
}

/* Додаткові стилі для сторінок політик і сторінки "Дякуємо" */
.privacy-page,
.cookies-page,
.terms-page,
.thankyou-page {
    padding: 150px 0 80px;
}

.policy-content,
.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.policy-content h1,
.thankyou-content h1 {
    font-family: 'Yeseva One', cursive;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.policy-content h2,
.thankyou-content h2 {
    font-family: 'Yeseva One', cursive;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--accent-color);
}

.policy-content p,
.thankyou-content p {
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
}

.thankyou-content {
    text-align: center;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

/* Анімація для ховер-ефектів */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn:hover {
    animation: pulse 1s ease infinite;
}

.service-card:hover .service-icon svg,
.benefit-item:hover .benefit-icon svg {
    transform: rotate(5deg) scale(1.1);
}

.recipe-card:hover .recipe-content h3 {
    color: var(--accent-color);
}

.ig-item:hover img {
    filter: brightness(1.1);
}

/* Стилі для фавікону */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #66BB6A;
        --accent-color: #FFB74D;
        --bg-color: #222;
        --secondary-bg: #333;
        --text-color: #f5f5f5;
        --border-color: #444;
        --shadow-color: rgba(0, 0, 0, 0.3);
    }
    
    .header {
        background-color: rgba(34, 34, 34, 0.95);
    }
    
    .footer {
        background-color: #111;
    }
}