    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #050505;
            color: #e5e5e5;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

html, body{overflow-x: hidden !important;}
/* ===== СТИЛИ ДЛЯ ВСЕХ ЗАГОЛОВКОВ МЕНЮ (включая первый) ===== */

/* Универсальный стиль для всех h2 внутри .container, которые относятся к меню */
.container > h2,
.menu-table + h2,
.menu-table ~ h2 {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    margin: 60px 0 32px;
    padding: 20px 0 15px;
    background: linear-gradient(135deg, #ffffff 0%, #d4b88c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Первый заголовок — чуть меньше отступ сверху */
.container > h2:first-of-type {
    margin-top: 20px;
}

/* Декоративные линии сверху и снизу */
.container > h2::before,
.menu-table + h2::before,
.menu-table ~ h2::before,
.container > h2::after,
.menu-table + h2::after,
.menu-table ~ h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #d4b88c, transparent);
}

.container > h2::before,
.menu-table + h2::before,
.menu-table ~ h2::before {
    top: 0;
    width: 60px;
    height: 2px;
}

.container > h2::after,
.menu-table + h2::after,
.menu-table ~ h2::after {
    bottom: 0;
    width: 100px;
    height: 2px;
}

/* Декоративные точки по бокам заголовка */
.container > h2::selection,
.menu-table + h2::selection,
.menu-table ~ h2::selection {
    background: rgba(212, 184, 140, 0.3);
}

/* Добавляем элегантные символы по бокам (только для первых двух заголовков, если нужно) */
.container > h2 i.fa,
.menu-table + h2 i.fa,
.menu-table ~ h2 i.fa {
    margin: 0 15px;
    font-size: 1rem;
    color: #d4b88c;
}

/* Альтернативный вариант: левая и правая декоративная черта */
.container > h2 span.deco,
.menu-table + h2 span.deco,
.menu-table ~ h2 span.deco {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #d4b88c;
    vertical-align: middle;
    margin: 0 15px;
    opacity: 0.6;
}

/* Эффект при наведении */
.container > h2:hover,
.menu-table + h2:hover,
.menu-table ~ h2:hover {
    letter-spacing: 0.08em;
    transition: letter-spacing 0.3s ease;
}


@media (max-width: 992px) {
.contact-grid {
	display: block !important; }

	
	}
/* Адаптив */
@media (max-width: 768px) {
    .container > h2,
    .menu-table + h2,
    .menu-table ~ h2 {
        font-size: 1.4rem;
        margin: 40px 0 24px;
        padding: 15px 0 12px;
    }
    
    .container > h2::before,
    .menu-table + h2::before,
    .menu-table ~ h2::before {
        width: 40px;
    }
    
    .container > h2::after,
    .menu-table + h2::after,
    .menu-table ~ h2::after {
        width: 70px;
    }
}

@media (max-width: 576px) {
    .container > h2,
    .menu-table + h2,
    .menu-table ~ h2 {
        font-size: 1.2rem;
        margin: 30px 0 20px;
    }
	.btn-primary {display:block !important;margin-bottom:20px;}	
	.btn-outline {display: block !important;margin-left:0px !important; }
}

 /* Таблица через div */
        .menu-table {
            background: #0c0c0c;
            border-radius: 20px;
            border: 1px solid #2a2a2a;
            overflow: hidden;
        }

        /* Строка таблицы */
        .menu-row {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid #2a2a2a;
            transition: background 0.2s;
        }

        .menu-row:last-child {
            border-bottom: none;
        }

        .menu-row:hover {
            background: #111;
        }

        /* Ячейки */
        .menu-name {
            flex: 2;
            font-weight: 600;
            font-size: 1rem;
        }

        .menu-desc {
            flex: 3;
            font-size: 0.85rem;
            color: #9a9a9a;
            padding: 0 15px;
        }

        .menu-weight {
            flex: 0.8;
            font-size: 0.8rem;
            color: #d4b88c;
            text-align: center;
        }

        .menu-price {
            flex: 0.7;
            font-weight: 700;
            color: #d4b88c;
            text-align: right;
            font-size: 1rem;
        }

        /* Если нет описания или веса — ячейка пустая, но структура сохраняется */
        .empty-desc {
            color: #3a3a3a;
            font-style: italic;
        }

        /* Заголовок таблицы */
        .menu-header-row {
            background: #0a0a0a;
            border-bottom: 1px solid #3a3a3a;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888;
        }

        .menu-header-row .menu-name,
        .menu-header-row .menu-desc,
        .menu-header-row .menu-weight,
        .menu-header-row .menu-price {
            font-weight: 600;
            color: #aaa;
        }

        /* Адаптив — на телефонах перестраиваем в карточки */
        @media (max-width: 700px) {
            .menu-row {
                flex-wrap: wrap;
                padding: 15px;
            }

            .menu-name {
                flex: 1 1 60%;
                margin-bottom: 8px;
            }

            .menu-price {
                flex: 1 1 30%;
                text-align: right;
                margin-bottom: 8px;
            }

            .menu-desc {
                flex: 1 1 100%;
                padding: 0;
                margin-bottom: 8px;
            }

            .menu-weight {
                flex: 1 1 auto;
                text-align: left;
            }

            .menu-header-row {
                display: none;
            }
        }
/* Модальное окно бронирования — продающий дизайн */
.modals-fancys {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 184, 140, 0.2);
    max-width: 500px;
    width: 100%;
}

/* Заголовок */
.modal-title-f {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #d4b88c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

/* Подзаголовок */
.block-request__head {
    text-align: center;
    margin-bottom: 28px;
}

.block-request__title {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Поля ввода */
.my-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.block-request__input {
    width: 100%;
    padding: 16px 20px;
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.block-request__input:focus {
    outline: none;
    border-color: #d4b88c;
    background: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(212, 184, 140, 0.1);
}

.block-request__input::placeholder {
    color: #555;
}

textarea.block-request__input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Чекбокс */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 8px 0;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: #141414;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox .checkmark {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s;
}

.hidden-checkbox:checked + .checkbox {
    background: #d4b88c;
    border-color: #d4b88c;
}

.hidden-checkbox:checked + .checkbox .checkmark {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.4;
}

.checkbox-text a {
    color: #d4b88c;
    text-decoration: none;
    border-bottom: 1px dotted #d4b88c;
}

.checkbox-text a:hover {
    color: #e8cfa0;
}

/* Кнопка отправки */
.my-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4b88c 0%, #c4a070 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.my-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(212, 184, 140, 0.3);
    background: linear-gradient(135deg, #e0c498 0%, #d4b88c 100%);
}

/* Кнопка закрытия */
.fancybox-close-small {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    color: #888;
}
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ПОДВАЛА ===== */

.footer {
    background: #020202;
    padding: 60px 0 30px;
    border-top: 1px solid #181818;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4b88c;
}

.footer-about {
    color: #9a9a9a;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 20px 0 16px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 184, 140, 0.1);
    padding: 8px 16px;
    border-radius: 60px;
    font-size: 0.75rem;
    color: #d4b88c;
    border: 1px solid rgba(212, 184, 140, 0.2);
}

.footer-badge i {
    font-size: 0.7rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #9a9a9a;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.footer-links-list a:hover {
    color: #d4b88c;
    padding-left: 4px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #9a9a9a;
    font-size: 0.85rem;
	
}

.footer-contacts i {
    width: 20px;
    color: #d4b88c;
    font-size: 0.9rem;
}

.footer-contacts a {
    color: #9a9a9a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contacts a:hover {
    color: #d4b88c;
}

.footer-hours {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #181818;
}

.footer-hours i {
    color: #d4b88c;
    font-size: 1rem;
    margin-top: 2px;
}

.footer-hours p {
    color: #9a9a9a;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0c0c0c;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #2a2a2a;
}

.footer-social a:hover {
    background: #d4b88c;
    color: #050505;
    transform: translateY(-3px);
    border-color: #d4b88c;
}

.footer-social i {
    font-size: 1.1rem;
}

.footer-dev {
    text-align: left;
}

.footer-dev p {
    color: #6a6a6a;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.dev-link {
    display: inline-block;
    text-decoration: none;
}

.dev-link img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s, transform 0.3s;
    filter: brightness(0) invert(1);
}

.dev-link:hover img {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #181818;
}

.footer-bottom p {
    color: #6a6a6a;
    font-size: 0.7rem;
}

.footer-docs {
    display: flex;
    gap: 24px;
}

.footer-docs a {
    color: #6a6a6a;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s;
}

.footer-docs a:hover {
    color: #d4b88c;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
	.hero-content {padding:0px 15px 0px 15px;}
    .footer-contacts li {
    display: table !important;
   
	margin: 0 auto !important;

  margin-bottom: 10px !important;
}
    .footer {
        padding: 50px 0 25px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contacts li {
        justify-content: center;
    }
    
    .footer-hours {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-dev {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-docs {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ===== ИКОНКИ (Font Awesome) ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
/* Блок благодарности */
.thankyou {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    border-radius: 32px;
    max-width: 480px;
    margin: 0 auto;
    animation: thankyouFadeIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Анимация появления */
@keyframes thankyouFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Иконка галочки */
.check-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4b88c 0%, #c4a070 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: checkBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
    box-shadow: 0 10px 30px -5px rgba(212, 184, 140, 0.4);
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.check-icon svg {
    width: 44px;
    height: 44px;
    stroke: #0a0a0a;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkDraw 0.4s ease-in-out 0.4s both;
}

@keyframes checkDraw {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Заголовок */
.thankyou-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #d4b88c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    animation: titleSlideUp 0.5s ease 0.3s both;
    letter-spacing: -0.02em;
}

@keyframes titleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Подзаголовок */
.thankyou-subtitle {
    font-size: 1.1rem;
    color: #e5e5e5;
    font-weight: 500;
    margin-bottom: 16px;
    animation: subtitleFade 0.5s ease 0.4s both;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Сообщение */
.thankyou-message {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.5;
    animation: messageFade 0.5s ease 0.5s both;
}

@keyframes messageFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Конфетти эффект */
.thankyou::before,
.thankyou::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.thankyou::before {
    background: #d4b88c;
    top: 20%;
    left: 15%;
    animation: confetti1 1s ease-out 0.3s forwards;
}

.thankyou::after {
    background: #ffffff;
    top: 30%;
    right: 15%;
    animation: confetti2 1s ease-out 0.5s forwards;
}

@keyframes confetti1 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-30px, 50px) scale(0);
    }
}

@keyframes confetti2 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(30px, 60px) scale(0);
    }
}

/* Дополнительные парящие частицы */
.thankyou .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4b88c;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

/* Адаптив */
@media (max-width: 560px) {
    .thankyou {
        padding: 32px 24px;
    }
    
    .check-icon {
        width: 60px;
        height: 60px;
    }
    
    .check-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .thankyou-subtitle {
        font-size: 0.95rem;
    }
    
    .thankyou-message {
        font-size: 0.8rem;
    }
}
.hidden-checkbox.error + .checkbox {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    animation: shake 0.3s ease-in-out;
}
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.fancybox-close-small:hover {
    background: rgba(212, 184, 140, 0.2);
    color: #d4b88c;
}

/* Анимация появления */
.modals-fancys {
    animation: modalFadeIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Адаптив */
@media (max-width: 560px) {
    .modals-fancys {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .modal-title-f {
        font-size: 1.8rem;
    }
    
    .block-request__input {
        padding: 14px 18px;
    }
}


/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
/* Десктоп — всё как было */
.phone-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}

/* Мобильные */
@media (max-width: 991px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    /* Иконка времени + текст */
    .mobile-time {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size:1rem;
        color: #e5e5e5;
    }
    
    .mobile-time i {
        color: #d4b88c;
        font-size: 0.8rem;
    }
    
    /* Круглая иконка телефона */
    .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #d4b88c;
        border-radius: 50%;
        color: #050505;
        text-decoration: none;
    }
    
    .mobile-phone i {
        font-size: 1rem;
    }
    
    /* Скрываем старый телефон на мобилке */
    .phone-link {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* Десктоп — скрываем мобильные элементы */
@media (min-width: 992px) {
    .mobile-time, .mobile-phone {
        display: none;
    }
}
/* Время работы */
.work-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e5e5;
    font-size: 0.9rem;
}

.work-hours i {
    color: #d4b88c;
    font-size: 1rem;
}

/* Круглая иконка телефона */
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d4b88c;
    border-radius: 50%;
    color: #050505;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-icon i {
    font-size: 1.1rem;
}

.phone-icon:hover {
    background: #ffffff;
    transform: scale(1.05);
}

/* Кнопка бургер */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
}

/* Десктоп: показываем всё */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    .phone-icon span {
        display: none;
    }
}

/* Мобильные: скрываем текст времени, показываем бургер */
@media (max-width: 991px) {
    .work-hours span {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .header-actions {
        gap: 16px;
    }
}
/* ===== МОБИЛЬНОЕ МЕНЮ — ВЕРТИКАЛЬНО, КОМПАКТНО, БЕЗ ВЫЛЕЗАНИЙ ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    padding: 80px 24px 120px; /* отступы сверху и снизу */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

/* ВЕРТИКАЛЬНО — ДРУГ ПОД ДРУГОМ */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.mobile-menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    transition: color 0.2s;
    letter-spacing: -0.02em;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
    text-align: center;
}

.mobile-menu-nav a:active {
    color: #d4b88c;
}

/* Контакты внизу */
.mobile-menu-contacts {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.mobile-menu-contacts p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #ccc;
    flex-wrap: wrap;
}

.mobile-menu-contacts i {
    color: #d4b88c;
    width: 22px;
    font-size: 1rem;
}

.mobile-menu-contacts a {
    color: white;
    text-decoration: none;
}

.mobile-menu-contacts .btn-mobile-book {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #d4b88c;
    color: #050505;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

/* Скрываем старый nav-links */
@media (max-width: 991px) {
    .nav-links {
        display: none !important;
    }
	.contact-info p {
		display: block !important; }
}

/* Маленькие экраны */
@media (max-width: 576px) {
    .mobile-menu-overlay {
        padding: 70px 20px 100px;
    }
    
    .mobile-menu-nav {
        gap: 16px;
    }
    
    .mobile-menu-nav a {
        font-size: 1.5rem;
        padding: 10px 0;
    }
    
    .mobile-menu-contacts p {
        font-size: 0.8rem;
        margin: 10px 0;
    }
    
    .mobile-menu-contacts .btn-mobile-book {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}
.section-in {
  padding: 20px 0 !important;
}
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 32px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* Typography */
        .section-title {
            font-size: 3.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ffffff, #a0a0a0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: #8a8a8a;
            max-width: 680px;
            margin: 0 auto 2.5rem auto;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size:1.6rem;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-block;
            padding: 14px 36px;
            background: #ffffff;
            color: #000000;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: #e0e0e0;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
        }

        .btn-outline {
            display: inline-block;
            padding: 14px 36px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            color: #ffffff;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #ffffff;
            transform: translateY(-2px);
        }
/* ===== ХЛЕБНЫЕ КРОШКИ — минимал ===== */
.breadcrumbs {
    padding: 16px 0;
}
.section-bread {padding: 10px 0;}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    font-size: 0.8rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #555;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #d4b88c;
}

.breadcrumb .active span {
    color: #fff;
}
        /* Header */
   /* ХЕДЕР — ОБЫЧНЫЙ (relative), фиксится только при скролле */
        .header {
            position: relative;
            background: #0a0a0a;
            z-index: 1000;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: all 0.3s ease;
        }

        /* КЛАСС ДЛЯ ФИКСИРОВАННОГО ХЕДЕРА (появляется при скролле) */
        .header.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(5, 5, 5, 0.98);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            border-bottom-color: rgba(212, 184, 140, 0.3);
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        /* ОТСТУП ДЛЯ КОНТЕНТА, КОГДА ХЕДЕР ФИКСИРОВАН */
        body.header-fixed {
            padding-top: 80px;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 70px;
            filter: brightness(0) invert(1);
        }

        .nav-links {
            display: none;
            gap: 42px;
        }

        .nav-links a {
            color: #eaeaea;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4b88c;
            transition: 0.25s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .header-actions {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .phone-link {
            color: white;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }

        @media (min-width: 992px) {
            .nav-links {
                display: flex;
            }
            .menu-toggle {
                display: none;
            }
        }

        /* Hero Slider */
        .hero-slider {
            height: 85vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

 /* Затемнение для слайдов — легкое, элегантное */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Контент поверх затемнения */
.hero-content {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}


        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #d0d0d0;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: 0.3s;
        }

        .slider-dot.active {
            width: 28px;
            background: #d4b88c;
        }

        /* About Section */
        .about-text {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* Service Cards - новые современные иконки */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 60px 0 30px;
        }

        .service-card {
            background: #0c0c0c;
            border-radius: 28px;
            padding: 42px 28px;
            text-align: center;
            border: 1px solid #1f1f1f;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: #d4b88c;
            background: #111111;
        }

        .service-card i {
            font-size: 2.8rem;
            color: #d4b88c;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #9a9a9a;
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Venues Section — с картинками у каждой площадки */
        .venues-hero {
            position: relative;
            background: #030303;
            padding: 80px 0;
        }

        .venues-grid-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .venue-card-item {
            background: #0c0c0c;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #1f1f1f;
        }

        .venue-card-item:hover {
            transform: translateY(-6px);
            border-color: #d4b88c;
        }

        .venue-img {
            height: 220px;
            overflow: hidden;
        }

        .venue-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .venue-card-item:hover .venue-img img {
            transform: scale(1.05);
        }

        .venue-info {
            padding: 24px;
            text-align: center;
        }

        .venue-info h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .venue-info p {
            color: #9a9a9a;
            font-size: 0.85rem;
        }

        @media (max-width: 992px) {
            .venues-grid-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .venues-grid-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 48px 0;
        }

        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Menu */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin: 48px 0;
        }

        .menu-card {
            background: #0c0c0c;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #242424;
            transition: all 0.3s ease;
        }

        .menu-card:hover {
            transform: translateY(-6px);
            border-color: #d4b88c;
        }

        .menu-img {
            height: 220px;
            overflow: hidden;
        }

        .menu-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .menu-card:hover .menu-img img {
            transform: scale(1.06);
        }

        .menu-content {
            padding: 22px;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 8px;
        }

        .menu-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .price {
            color: #d4b88c;
            font-weight: 700;
        }

        .desc {
            color: #9a9a9a;
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .menu-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Info Cards — новые иконки вместо старых картинок */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin: 48px 0;
        }

        .info-card {
            background: #0c0c0c;
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            border: 1px solid #1f1f1f;
            transition: all 0.3s;
        }

        .info-card:hover {
            border-color: #d4b88c;
            transform: translateY(-4px);
        }

        .info-card i {
            font-size: 2.2rem;
            color: #d4b88c;
            margin-bottom: 20px;
        }

        .info-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .info-card p {
            color: #9a9a9a;
            font-size: 0.85rem;
        }

        @media (max-width: 992px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
        }

        /* News Section — с фото, датой, заголовком */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 48px 0;
        }

        .news-card {
            background: #0c0c0c;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #1f1f1f;
            transition: all 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-6px);
            border-color: #d4b88c;
        }

        .news-img {
            height: 240px;
            overflow: hidden;
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .news-card:hover .news-img img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 24px;
        }

        .news-date {
            font-size: 0.8rem;
            color: #d4b88c;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-date i {
            font-size: 0.8rem;
        }

        .news-content h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-content p {
            color: #9a9a9a;
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .news-link {
            color: #d4b88c;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .news-link:hover {
            gap: 12px;
        }

        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Events */
        .events-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 48px 0;
        }

        .events-card {
            flex: 1;
            background: #0c0c0c;
            border-radius: 28px;
            padding: 32px;
            border: 1px solid #222;
        }

        .events-card h3 {
            font-size: 1.6rem;
            margin-bottom: 24px;
        }

        .events-card ul {
            list-style: none;
        }

        .events-card li {
            margin-bottom: 14px;
        }

        /* Contacts */
        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 48px 0;
        }

        .contact-info {
            flex: 1;
            background: #0a0a0a;
            padding: 36px;
            border-radius: 28px;
            border: 1px solid #1f1f1f;
        }

        .contact-info p {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .map-container {
            flex: 1;
            border-radius: 28px;
            overflow: hidden;
            min-height: 360px;
        }
/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ "ЗАЛ РЕСТОРАНА" ===== */
.venue-card-item a {text-decoration:none;color: #e5e5e5;}
.hall-content {
    margin: 40px 0 60px;
}

.hall-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.hall-text p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hall-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: #0c0c0c;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #d4b88c;
    background: #111111;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #d4b88c;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.8rem;
    color: #8a8a8a;
}

/* Галерея */
.gallery-title {
    text-align: center;
    margin: 60px 0 40px;
}

.gallery-title h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.gallery-title p {
    color: #8a8a8a;
    font-size: 0.95rem;
}

.hall-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    background: rgba(212, 184, 140, 0.8);
    padding: 12px;
    border-radius: 50%;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 992px) {
    .hall-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hall-text p {
        font-size: 0.95rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .gallery-title h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hall-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .feature-icon {
        margin-bottom: 0;
        width: 36px;
        height: 36px;
    }
    
    .feature-item h4 {
        margin-bottom: 4px;
    }
    
    .gallery-title h2 {
        font-size: 1.4rem;
    }
}

/* Импорт иконок Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
/* ===== СТИЛИ ДЛЯ СЕКЦИИ С ТЕКСТОМ И ФОТО ===== */

.event-content {
    display: flex;
    align-items:flex-start;
    gap: 60px;
    margin-top: 48px;
}

.event-text {
    flex: 1.2;
	 font-size: 20px;
}

.event-photo {
    flex: 0.9;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.event-photo:hover img {
    transform: scale(1.02);
}

.photo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4b88c;
    color: #050505;
    padding: 8px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-text p {

    line-height: 1.2em;
    margin-bottom: 20px;
   
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.event-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.event-list li i {
    width: 24px;
    color: #d4b88c;
    font-size: 1.1rem;
}

.event-text strong {
    color: #ffffff;
}

.btn-event {
    margin-top: 20px;
    display: inline-block;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */
@media (max-width: 992px) {
    .event-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .event-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .event-text {
        order: 2;
    }
    
    .event-photo {
        order: 1;
        max-width: 100%;
        border-radius: 24px;
    }
    
    .photo-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .event-list li {
        font-size: 0.9rem;
    }
    
    .btn-event {
        display: block;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .event-content {
        gap: 30px;
    }
    
    .event-photo {
        border-radius: 20px;
    }
    
    .event-text p {
        font-size: 0.9rem;
    }
    
    .event-list li {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .event-list li i {
        font-size: 0.9rem;
    }
    
    .photo-badge {
        top: 12px;
        right: 12px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
}
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 30px 0;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .copyright {
            color: #6a6a6a;
            font-size: 0.75rem;
        }

        section {
            padding: 80px 0;
        }

        .bg-dark-alt {
            background: #030303;
        }