* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.transparent { background-color: transparent; }
header.black { background-color: #1a1a1a; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    display: block;
}

nav ul li a:hover, nav ul li a:focus {
    color: #F4C430;
    outline: none;
}

nav ul li a.active {
    color: #F4C430;
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    z-index: 10;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    padding: 0;
    margin: 0;
}

nav ul li ul li a {
    padding: 8px 15px;
    font-size: 0.95rem;
    font-weight: 400;
}

.menu-category {
    color: #F4C430;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 15px;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-right .language-switch { position: relative; }
.header-right .language-switch button { background: none; border: none; color: #fff; font-size: 1rem; cursor: pointer; transition: color 0.3s ease; }
.header-right .language-switch button:hover { color: #F4C430; }
.header-right .language-switch ul { display: none; position: absolute; top: 100%; right: 0; background-color: #1a1a1a; padding: 10px 0; border-radius: 5px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }
.header-right .language-switch:hover ul { display: block; }
.header-right .language-switch ul li { padding: 8px 20px; }

.burger {
     display: none; /* Скрыта на десктопе */
    font-size: 24px;
    background: none;
    border: none;
    color: #F4C430; /* Жёлтый цвет для видимости на белом фоне */
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('IMG_0344.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 60%, rgba(255, 255, 255, 1) 100%);
}

.hero-content {
    position: relative;
    padding: 30px;
    max-width: 700px;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span { display: block; font-size: 4rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

.hero-buttons {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: space-around;
    padding: 20px;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-buttons button {
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons button:hover {
    background-color: #F4C430;
    color: #fff;
    transform: translateY(-3px);
}

.content-columns-wrapper {
    position: relative;
    min-height: 500px;
    width: 100%;
    background-color: #fff;
    padding: 60px 40px;
}

.content-columns {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    transition: all 0.6s ease-in-out;
    opacity: 0;
    transform: translateX(50px);
    visibility: hidden;
}

.content-columns.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.content-columns.exit {
    opacity: 0;
    transform: translateX(-50px);
}

.content-columns.enter {
    opacity: 0;
    transform: translateX(50px);
}

.column {
    flex: 0 0 45%;
    max-width: 500px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    height: auto;


}

.column:nth-child(2) { animation-delay: 0.2s; }

.column:hover { transform: translateY(-10px); }

.column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.column h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.column p {
    font-size: 1rem;
    color: #555;
    flex-grow: 1;
    overflow: visible;
    text-overflow: clip;
   
}

.footer {
    text-align: center;
    padding: 40px;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.footer h3 { font-size: 1.5rem; margin-bottom: 10px; }
.footer p { font-size: 1rem; opacity: 0.8; margin-bottom: 15px; }
.footer a { color: #F4C430; text-decoration: none; font-size: 1rem; transition: color 0.3s ease; }
.footer a:hover { color: #fff; }

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F4C430;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.scroll-top:hover { background-color: #d4a82e; }
.scroll-top.visible { display: block; opacity: 1; }

@media (max-width: 768px) {
    nav ul { 
        display: none; 
        position: fixed; 
        top: 60px; 
        left: 0; 
        width: 100%; 
        background: #1a1a1a; 
        flex-direction: column; 
        padding: 20px; 
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    nav ul.active { display: flex; }
    nav ul li { margin: 10px 0; }
    nav ul li ul { 
        position: static; 
        box-shadow: none; 
        background: #1a1a1a; 
        margin-left: 20px; 
        padding: 10px 0; 
        display: block; 
    }
    .menu-category { 
        padding: 10px 15px; 
        font-size: 1.2rem; 
    }
    .burger { display: block; }

    .hero-content h1 { font-size: 2rem; }
    .hero-content h1 span { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 10px; }
    .hero-buttons button { width: 100%; margin: 10px 0; }
    .content-columns { flex-direction: column; gap: 20px; }
    .column { 
        flex: 0 0 100%; 
        height: auto;
        min-height: 300px;
    }
    .column img { height: 150px; }
}
/* Добавленные стили для страницы экскурсии */
.hero.excursion-hero {
    background: url('excursion-bg.jpg') center/cover no-repeat;
}

.content-columns ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.cta-button {
    background-color: #F4C430;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #d4a82e;
    transform: translateY(-3px);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .content-columns ul {
        font-size: 0.95rem;
    }
    .cta-button {
        width: 100%;
        padding: 12px 20px;
    }
}
/* Стили для колонок без фиксированной высоты */
.column.no-fixed-height {
    height: auto;
    min-height: 300px; /* Минимальная высота для единообразия */
    padding-bottom: 30px; /* Дополнительный отступ снизу */
}

/* Стили для страницы экскурсии (из предыдущего ответа) */
.hero.excursion-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

.content-columns ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.cta-button {
    background-color: #F4C430;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #d4a82e;
    transform: translateY(-3px);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .content-columns ul {
        font-size: 0.95rem;
    }
    .cta-button {
        width: 100%;
        padding: 12px 20px;
    }
}
.hero.programs-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

.program-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    color: #555;
}

.program-list li {
    margin-bottom: 20px;
}

.program-list li a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.program-list li a:hover {
    color: #F4C430;
}

.program-list li p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

/* Стили для расширенной дегустации */
.hero.extended-tasting-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

/* Адаптивность для списка программ */
@media (max-width: 768px) {
    .program-list li a {
        font-size: 1.1rem;
    }
    .program-list li p {
        font-size: 0.95rem;
    }
}
/* Стили для страницы продукции */
.hero.products-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Адаптивность для сетки продукции */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .product-item img {
        height: 150px;
    }
}
/* Стили для страницы галереи */
.hero.gallery-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Адаптивность для галереи */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .gallery-item img {
        height: 200px;
    }
}
/* Стили для модального окна */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 8px;
}

.modal-content p {
    font-size: 1rem;
    color: #1a1a1a;
    margin-top: 10px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #F4C430;
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-content {
        max-width: 90%;
        padding: 15px;
    }
    .modal-content img {
        max-height: 50vh;
    }
    .modal-content p {
        font-size: 0.9rem;
    }
    .modal-close {
        font-size: 1.3rem;
    }
}
/* Стили для страницы документов */
.hero.documents-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.document-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.document-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.document-button {
    display: inline-block;
    padding: 10px 20px;
    background: #F4C430;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.document-button:hover {
    background: #e0b420;
}

/* Адаптивность для сетки документов */
@media (max-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .document-item h3 {
        font-size: 1.2rem;
    }
    .document-item p {
        font-size: 0.95rem;
    }
}
/* Стили для страницы контактов */
.hero.contacts-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.contacts-info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contacts-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contacts-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.contacts-info p strong {
    color: #1a1a1a;
}

.contacts-info p a {
    color: #F4C430;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-info p a:hover {
    color: #e0b420;
}

.contacts-map {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contacts-map h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contacts-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

/* Адаптивность для контактов */
@media (max-width: 1024px) {
    .contacts-container {
        grid-template-columns: 1fr;
    }
    .contacts-map iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contacts-container {
        padding: 20px;
    }
    .contacts-info h2, .contacts-map h2 {
        font-size: 1.6rem;
    }
    .contacts-info p {
        font-size: 0.95rem;
    }
    .contacts-map iframe {
        height: 300px;
    }
}
/* Стили для главной страницы */
.hero.main-hero {
    background: url('main-background.jpg') center/cover no-repeat;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.feature-item h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.feature-button {
    display: inline-block;
    padding: 10px 20px;
    background: #F4C430;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.feature-button:hover {
    background: #e0b420;
}

/* Исправление меню на мобильных устройствах */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
        z-index: 1000;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 10px 0;
    }
    .nav-menu ul {
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
    }
    .nav-menu ul li {
        margin: 5px 0;
    }
    .burger {
        display: block;
    }
    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .feature-item h2 {
        font-size: 1.6rem;
    }
    .feature-item p {
        font-size: 0.95rem;
    }
    .feature-item img {
        height: 150px;
    }
}
/* Стили для слайдера */
.slider-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.slider-button {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.slider-button.active, .slider-button:hover {
    background: #F4C430;
    color: #1a1a1a;
}

.slider-content {
    position: relative;
}

.slide {
    display: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide.active {
    display: flex;
    gap: 20px;
}

.slide img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.slide-text {
    width: 50%;
    padding: 20px;
}

.slide-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.slide-text .feature-button {
    display: inline-block;
    padding: 10px 20px;
    background: #F4C430;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.slide-text .feature-button:hover {
    background: #e0b420;
}

/* Адаптивность для слайдера */
@media (max-width: 1024px) {
    .slide.active {
        flex-direction: column;
    }
    .slide img, .slide-text {
        width: 100%;
    }
    .slide img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 20px;
    }
    .slider-controls {
        flex-wrap: wrap;
        gap: 5px;
    }
    .slider-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .slide-text h2 {
        font-size: 1.6rem;
    }
    .slide-text p {
        font-size: 0.95rem;
    }
    .slide img {
        height: 150px;
    }
}
/* Дополнительные стили для новых изображений в content-columns */
.content-columns .column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .content-columns .column img {
        height: 150px;
    }
}
/* Геройская секция для lunch.html */
.hero.lunch-hero {
    background: url('IMG_0344.jpg') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero.lunch-hero .hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero.lunch-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero.lunch-hero p {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
}

/* Контентная секция */
.content-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.content-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.content-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.content-block p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.content-block img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: auto;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .content-section {
        flex-direction: column;
        gap: 20px;
    }

    .content-block {
        min-height: 350px;
    }

    .content-block img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero.lunch-hero {
        min-height: 400px;
    }

    .hero.lunch-hero h1 {
        font-size: 32px;
    }

    .hero.lunch-hero p {
        font-size: 16px;
    }

    .content-block {
        min-height: 300px;
    }

    .content-block img {
        height: 150px;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .content-block p {
        font-size: 14px;
    }
}
.logo-link {
    text-decoration: none;
    display: inline block;
    align-items: center;
    color: inherit;
}
.logo-link:hover .logo span {
    color: #F4C430;
    transition: color 0.3s ease;
}
