/* Импорт шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/circe');

/* CSS переменные для цветов и шрифтов */
:root {
    /* Цветовая палитра */
    --terracotta: #A54331;
    --olive: #586451;
    --black: #1D1D1B;
    --ivory: #F1EBDC;
    
    /* Шрифты */
    --font-heading: 'Playfair Display', serif; /* Замена для TT Ricordi Allegria */
    --font-body: 'Inter', sans-serif; /* Замена для Circe */
    --font-circe: 'Circe', sans-serif; /* Circe Regular */
    
    /* Размеры */
    --container-max-width: 1000px;
    --section-padding: 80px 20px;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--ivory);
}

/* Контейнер */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(241, 235, 220, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(29, 29, 27, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}

.nav-logo a {
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.215rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-language-switcher {
    margin-left: auto;
    margin-right: 20px;
}

.nav-lang-link {
    color: var(--olive) !important;
    font-weight: 400 !important;
    font-size: 0.69rem !important; /* меньше обычных пунктов меню */
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    transition: color 0.3s ease;
    background: transparent !important;
    text-decoration: underline !important; /* постоянное подчёркивание */
}

.nav-lang-link:hover {
    background: transparent !important;
    color: var(--terracotta) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* отключить псевдо-подчёркивание, используем обычное */
.nav-lang-link::after {
    display: none !important;
}

.nav-lang-group {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.nav-lang-sep {
    color: var(--black);
    opacity: 0.6;
}

.nav-lang-active {
    color: var(--black);
    font-weight: 400;
    font-size: 0.69rem;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.77rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-booking {
    margin-left: 20px;
}

.nav-booking-button {
    background: var(--terracotta);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
}

.nav-booking-button:hover {
    background: var(--olive) !important;
    border-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-booking-button::after {
    display: none;
}

/* Кнопки */
.button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
    cursor: pointer;
    font-family: var(--font-body);
}

.button:hover {
    background: var(--olive);
    border-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 67, 49, 0.3);
}

.booking-button {
    background: var(--terracotta);
    font-size: 1.1rem;
    padding: 18px 40px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Секции */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--olive);
    margin-bottom: 20px;
    font-weight: 400;
}

/* Главная секция */
.hero-section {
    background: linear-gradient(rgba(29, 29, 27, 0.5), rgba(29, 29, 27, 0.5)), 
                url('images/hero-bg.jpeg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Если изображение доступно, используем его */
.hero-section.has-image {
    background: linear-gradient(rgba(29, 29, 27, 0.4), rgba(29, 29, 27, 0.4)), 
                url('images/hero-bg.jpeg') center/cover;
    color: var(--ivory);
}

.hero-section.has-image .hero-title {
    color: var(--ivory);
}

.hero-section.has-image .hero-description {
    color: var(--ivory);
}



.hero-content {
    max-width: 800px;
    padding: 0 20px;
}





.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #FFFFFF;
    font-weight: 500;
}

.hero-description {
    font-family: var(--font-circe);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #FFFFFF;
    font-weight: 400;
}

/* Иконки социальных сетей в hero секции */
.hero-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-social-icon {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

/* Меню */
.menu-section {
    background: white;
}

.menu-section-with-bg {
    background: linear-gradient(rgba(29, 29, 27, 0.7), rgba(29, 29, 27, 0.7)), 
                url('images/menu-1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--ivory);
}

.menu-section-with-bg .section-title {
    color: var(--ivory);
}

.menu-section-with-bg .menu-preview-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.menu-section-with-bg .menu-preview-title {
    color: var(--ivory);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-section-with-bg .menu-preview-text {
    color: var(--ivory);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.menu-preview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.menu-preview-content {
    background: var(--ivory);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(165, 67, 49, 0.1);
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
}

.menu-preview-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

.menu-preview-text {
    color: var(--olive);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.menu-categories-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.menu-category-preview {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(165, 67, 49, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--black);
    display: block;
    backdrop-filter: blur(5px);
}

.menu-category-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(29, 29, 27, 0.1);
    border-color: var(--terracotta);
    color: var(--black);
}

.menu-category-preview h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
}

.menu-category-preview p {
    color: var(--olive);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-category-link {
    color: var(--terracotta);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

.menu-category-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.menu-category-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-category-preview:hover .menu-category-img {
    transform: scale(1.05);
}

.menu-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



/* ВИП-залы */
.vip-halls-section {
    background: var(--ivory);
}

.halls-content {
    max-width: 1200px;
    margin: 0 auto;
}

.floor-section {
    margin-bottom: 60;
}

.floor-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    position: relative;
}

.floor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--terracotta);
    border-radius: 2px;
}

.vip-halls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.vip-hall {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(165, 67, 49, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vip-hall:hover {
    transform: translateY(-10px);
}

.vip-hall-image {
    height: 250px;
    overflow: hidden;
}

.hall-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-hall-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hall-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.hall-description {
    color: var(--olive);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    min-height: 80px;
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.hall-capacity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--terracotta);
    color: white;
    border-radius: 8px;
}

.capacity-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.capacity-value {
    font-size: 1rem;
    font-weight: 600;
}



.vip-halls-booking {
    text-align: center;
    margin-top: 50px;
}

/* Концепция */
.concept-section {
    background: white;
}

.concept-section-with-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('images/concept/about-us.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.concept-content {
    max-width: 800px;
    margin: 0 auto 50px;
}



.concept-blocks {
    max-width: 800px;
    margin: 0 auto;
}

.concept-block {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--ivory);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(29, 29, 27, 0.1);
    border: 1px solid rgba(165, 67, 49, 0.1);
    position: relative;
    overflow: hidden;
}

.concept-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.concept-block-why .concept-block-bg {
    background: linear-gradient(135deg, rgba(165, 67, 49, 0.1), rgba(139, 69, 19, 0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" text-anchor="middle" font-size="60" fill="%23A54331">🍷</text></svg>');
}

.concept-block-history .concept-block-bg {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" text-anchor="middle" font-size="60" fill="%238B4513">📜</text></svg>');
}

.concept-block-design .concept-block-bg {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.1), rgba(139, 69, 19, 0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" text-anchor="middle" font-size="60" fill="%23A0522D">🎨</text></svg>');
}

.concept-block-awards .concept-block-bg {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(165, 67, 49, 0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50%" x="50%" text-anchor="middle" font-size="60" fill="%23A54331">🏆</text></svg>');
}

.concept-block-title,
.concept-text,
.concept-features,
.storytelling,
.concept-link {
    position: relative;
    z-index: 1;
}

.concept-block-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 600;
}

.concept-text {
    color: var(--olive);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

.concept-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.concept-features li {
    color: var(--olive);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.concept-features li:before {
    content: "•";
    color: var(--terracotta);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.storytelling {
    background: rgba(165, 67, 49, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--terracotta);
}

.story-line {
    color: var(--olive);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.story-line:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black);
}

.concept-img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(29, 29, 27, 0.15);
    transition: transform 0.3s ease;
}

.concept-img:hover {
    transform: scale(1.05);
}

.concept-booking {
    text-align: center;
    margin-top: 50px;
}

/* История */
.history-section {
    background: var(--ivory);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.history-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
}

.history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

.history-paragraph {
    color: var(--olive);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.history-booking {
    text-align: center;
    margin-top: 50px;
}

/* Акции */
.promotions-section {
    background: white;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promotion-card {
    background: var(--ivory);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(165, 67, 49, 0.1);
}

.promotion-card:hover {
    transform: translateY(-5px);
}

.promotion-image {
    height: 200px;
    overflow: hidden;
}

.promotion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ivory), var(--olive));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 3rem;
    opacity: 0.3;
}

.promotion-content {
    padding: 25px;
}

.promotion-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.promotion-description {
    color: var(--olive);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.promotion-period {
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 600;
}

.promotions-booking {
    text-align: center;
    margin-top: 50px;
}

/* Контакты */
.contacts-section {
    background: var(--ivory);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(29, 29, 27, 0.1);
    border: 1px solid rgba(165, 67, 49, 0.1);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.contact-text {
    color: var(--olive);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--olive);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--terracotta);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--terracotta);
    color: white;
}

.maps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.map-container {
    height: 190px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1ebe0 0%, #e8e0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative;
}

.map-content {
    text-align: center;
    padding: 25px;
    max-width: 400px;
}

.map-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}

.map-address {
    font-size: 1rem;
    color: var(--olive);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.map-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contacts-booking {
    text-align: center;
    margin-top: 50px;
}

/* Стили для времени работы */
.working-hours-detail {
    margin-top: 15px;
}

.hours-section {
    margin-bottom: 15px;
}

.hours-section:last-child {
    margin-bottom: 0;
}

.hours-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hours-subtitle::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--terracotta);
    margin-right: 8px;
    border-radius: 2px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding: 10px 12px;
    background: rgba(241, 235, 220, 0.3);
    border-radius: 6px;
    border-left: 3px solid var(--terracotta);
}

.hours-row:last-child {
    margin-bottom: 0;
}

.days {
    color: var(--olive);
    font-size: 0.9rem;
    font-weight: 500;
}

.time {
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Стили для ссылок в концепции */
.concept-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.concept-link:hover {
    color: var(--olive);
    transform: translateX(5px);
}

/* Подвал */
.footer {
    background: #121212;
    color: #F5F5F5;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Левая колонка: Логотип */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #B4432B;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-logo-image {
    height: 140px;
    width: auto;
    max-width: 700px;
    object-fit: contain;
    margin: 0;
}

.footer-slogan {
    color: #F5F5F5;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

/* Центральная колонка: Навигация */
.footer-nav-section {
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-nav-link {
    color: #F5F5F5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1.5;
}

.footer-nav-link:hover {
    color: #B4432B;
    transform: translateY(-2px);
}

/* Правая колонка: Социальные сети */
.footer-social-section {
    display: flex;
    justify-content: flex-end;
}

.footer-social {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #F5F5F5;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
}

.social-link:hover {
    color: #B4432B;
    transform: scale(1.1);
    background: rgba(180, 67, 43, 0.05);
}

.social-icon-svg {
    width: 24px;
    height: 24px;
    color: #F5F5F5;
    transition: color 0.3s ease;
}

.social-link:hover .social-icon-svg {
    color: #B4432B;
}

.social-label {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    color: #F5F5F5;
    transition: color 0.3s ease;
}

.social-link:hover .social-label {
    color: #B4432B;
}

/* Анимации при прокрутке */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Специальные анимации для разных элементов */
.reveal.fade-in {
    transform: none;
}

.reveal.slide-up {
    transform: translateY(50px);
}

.reveal.slide-left {
    transform: translateX(-50px);
}

.reveal.slide-right {
    transform: translateX(50px);
}

.reveal.scale-in {
    transform: scale(0.8);
}

/* Анимации для активных состояний */
.reveal.fade-in.active,
.reveal.slide-up.active,
.reveal.slide-left.active,
.reveal.slide-right.active,
.reveal.scale-in.active {
    transform: none;
    opacity: 1;
}

/* Задержки для каскадных анимаций */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Специальные анимации для главной секции */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Анимации для кнопок */
.booking-button {
    transition: all 0.6s ease, transform 0.3s ease;
}

.booking-button:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Анимации для карточек */
.menu-item,
.vip-hall,
.concept-item,
.promotion-card {
    transition: all 0.6s ease, transform 0.3s ease;
}

.menu-item:hover,
.vip-hall:hover,
.concept-item:hover,
.promotion-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Анимации для навигации меню */
.menu-nav-item {
    transition: all 0.4s ease;
}

.menu-nav-item:hover {
    transform: translateY(-2px);
}

/* Анимации для социальных ссылок */
.social-link {
    transition: all 0.4s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Анимации для заголовков */
.section-title {
    transition: all 0.8s ease;
}

/* Анимации для параграфов */
p {
    transition: all 0.6s ease;
}

/* Анимации для цен */
.dish-price {
    transition: all 0.4s ease;
}

/* Анимации для описаний */
.dish-description {
    transition: all 0.5s ease;
}

/* Анимации для контактной информации */
.contact-item {
    transition: all 0.6s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 29, 27, 0.15);
}

/* Анимации для карты */
.map-container {
    transition: all 0.8s ease;
}

/* Стили для страниц меню */
.page-header {
    background: linear-gradient(rgba(29, 29, 27, 0.7), rgba(29, 29, 27, 0.7)), 
                url('../images/menu-header-bg.jpg') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--ivory);
}

/* Новый стиль для заголовков меню */
.menu-header {
    background: #ede9e3;
    padding: 80px 0 20px;
    text-align: center;
    color: var(--black);
    margin-top: 0;
}

.menu-header .page-title {
    color: var(--black);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--ivory);
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--terracotta);
    font-weight: 400;
}

/* Карточки меню */
.menu-categories {
    padding: var(--section-padding);
    background: var(--ivory);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(165, 67, 49, 0.1);
}

.menu-card-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    text-align: center;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(29, 29, 27, 0.15);
}

.menu-card-image {
    height: 250px;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-content {
    padding: 25px;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
}

.menu-card-subtitle {
    color: var(--olive);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.menu-card-time {
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.menu-card-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.menu-card-button:hover {
    background: var(--olive);
    transform: translateY(-2px);
}

/* Секция бронирования */
.booking-section {
    background: white;
    padding: var(--section-padding);
}

.booking-content {
    text-align: center;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.booking-text {
    color: var(--olive);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Страницы блюд */
.menu-dishes {
    padding: var(--section-padding);
    background: var(--ivory);
}

.menu-section {
    margin-bottom: 60px;
}

.menu-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--black);
    text-align: center;
    font-weight: 600;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dish-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(29, 29, 27, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(165, 67, 49, 0.1);
}

.dish-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 29, 27, 0.15);
}

.dish-image {
    height: 200px;
    overflow: hidden;
}

.dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-content {
    padding: 20px;
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
}

.dish-description {
    color: var(--olive);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.dish-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--terracotta);
}

/* Кнопки навигации */
.navigation-buttons {
    background: white;
    padding: 40px 0;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.back-button {
    background: var(--olive);
    border-color: var(--olive);
    font-size: 1.1rem;
    padding: 18px 40px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.back-button:hover {
    background: var(--black);
    border-color: var(--black);
}

/* Бизнес-ланч */
.business-lunch-price {
    background: var(--terracotta);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.price-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.price-description {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

/* Анимации для подвала */
.footer-content {
    transition: all 0.6s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-booking {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .nav-booking-button {
        display: block;
        text-align: center;
        padding: 12px 20px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-social {
        gap: 20px;
        margin-top: 30px;
    }

    .hero-social-link {
        width: 45px;
        height: 45px;
    }

    .hero-social-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .maps-container {
        gap: 15px;
    }
    
    .map-container {
        height: 160px;
    }
    
    .menu-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .floor-title {
        font-size: 1.5rem;
    }
    
    .vip-halls-grid {
        grid-template-columns: 1fr;
    }
    
    .hall-description {
        min-height: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
    }
    
    .footer-logo-image {
        height: 100px;
        max-width: 450px;
    }

    .footer-nav-section {
        justify-content: center;
    }

    .footer-social-section {
        justify-content: center;
    }

    .footer-social {
        gap: 20px;
        justify-content: center;
    }

    .social-item {
        gap: 3px;
    }

    .social-link {
        padding: 6px;
    }

    .social-icon-svg {
        width: 20px;
        height: 20px;
    }

    .social-label {
        font-size: 11px;
    }

    /* Планшеты: две колонки */
    @media (min-width: 768px) and (max-width: 1023px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer-logo-section {
            grid-column: 1 / -1;
            justify-self: center;
            margin-bottom: 20px;
        }

        .footer-nav-section {
            justify-content: flex-start;
        }

        .footer-social-section {
            justify-content: flex-end;
        }
    }
    
    .concept-section-with-bg {
        background-attachment: scroll;
    }
    
    .concept-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .concept-block-title {
        font-size: 1.5rem;
    }
    
    .storytelling {
        padding: 20px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 10px;
    }
    
    .hours-subtitle {
        font-size: 0.9rem;
    }
    
    .days, .time {
        font-size: 0.85rem;
    }
    
    .menu-section-with-bg {
        background-attachment: scroll;
    }
    
    .menu-section-with-bg .menu-preview-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .booking-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Адаптивность для страниц меню */
    .page-title {
        font-size: 2rem;
    }

    .menu-header {
        padding: 60px 0 15px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-card-content {
        padding: 20px;
    }
    
    .menu-card-no-image {
        min-height: 200px;
    }
    
    .dish-content {
        padding: 15px;
    }
    
    /* Адаптивность для новой секции меню */
    .menu-preview-content {
        padding: 30px 20px;
    }
    
    .menu-categories-preview {
        grid-template-columns: 1fr;
    }
    
    .menu-category-img {
        height: 120px;
    }
    
    .menu-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Адаптивность для логотипа */
    .nav-logo a {
        font-size: 1.2rem;
        gap: 6px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-booking {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .nav-booking-button {
        font-size: 0.9rem;
        padding: 10px 15px !important;
    }
}

/* Изображения меню */
.menu-image-section {
    padding: 20px 0;
    background: var(--ivory);
}

.menu-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.menu-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
}

.menu-image-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    min-height: 200px;
}

.menu-image {
    max-width: 100%;
    max-height: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(29, 29, 27, 0.1);
    border: 1px solid rgba(165, 67, 49, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.menu-image:last-child {
    margin-bottom: 0;
}

.menu-image:hover {
    transform: translateY(-5px);
}

.download-button {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--terracotta);
}

.download-button:hover {
    background: var(--olive);
    border-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Адаптивность для изображений меню */
@media (max-width: 768px) {
    .menu-image-section {
        padding: 40px 0;
    }
    
    .menu-description {
        margin-bottom: 30px;
    }
    
    .menu-description p {
        font-size: 1rem;
    }
    
    .menu-image {
        max-height: 600px;
        margin-bottom: 25px;
    }
    
    .download-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .menu-image-section {
        padding: 30px 0;
    }
    
    .menu-image {
        max-height: 500px;
        margin-bottom: 20px;
    }
    
    .download-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .menu-category-img {
        height: 100px;
    }
    
    .menu-card-no-image {
        min-height: 160px;
    }
    
    .map-content {
        padding: 20px;
    }
    
    .map-title {
        font-size: 1.2rem;
    }
    
    .map-address {
        font-size: 1rem;
    }
    
    .maps-container {
        gap: 12px;
    }
    
    .map-container {
        height: 140px;
    }
}

/* Стили для copyright в футере */
.footer-copyright {
    text-align: center;
    color: #F5F5F5;
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-copyright {
        font-size: 0.85rem;
        margin-top: 25px;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .footer-copyright {
        font-size: 0.8rem;
        margin-top: 20px;
        padding-top: 12px;
    }
} 

/* Mobile: keep language switcher visible while other nav items are hidden */
@media (max-width: 768px) {
    /* Show the nav list again but only keep the last item (language switcher) */
    .nav-menu {
        display: flex !important;
        margin-left: auto;
        gap: 12px;
        align-items: center;
    }

    /* Hide all nav items except the last one (language switcher) */
    .nav-menu .nav-item:not(:last-child),
    .nav-menu .nav-booking {
        display: none !important;
    }

    .nav-lang-group {
        display: inline-flex;
        align-items: center;
    }
}