/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.burger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

#menu-toggle {
    display: none;
}

.menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #111;
    border-radius: 8px;

    /* ✅ фикс */
    min-width: 150px;
    width: fit-content;
    padding: 12px 15px;

    list-style: none;
    text-align: right;
}


.menu li {
    margin: 10px 0;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

#menu-toggle:checked+.menu-icon+.menu {
    display: block;
}

/* Hero Section */
.hero-section {
    background: url('img/hero.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    /* кнопки вертикально */
    align-items: center;
    /* кнопки по центру */
    gap: 14px;
    /* расстояние между кнопками */
}

/* FORCE hero CTA vertical on all screens */
.hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
}

.hero-buttons .btn {
    width: 220px;
    /* чтобы кнопки были одной ширины */
    text-align: center;
}



.btn {
    background: transparent;
    border: 2px solid #fa865e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    /* transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer; */
}

.btn:hover {
    background-color: #fa865e;
    color: #111;
}

/* Services Section */
.menu-section {
    padding: 60px 40px;
    background: #111;
    text-align: center;
}

.menu-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #fff;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    background: #222;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* .menu-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
    height: 200px;
} */
.menu-item video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
    height: 200px;
}


.menu-item h3 {
    color: #fff;
    margin-bottom: 10px;
}

.menu-item p {
    color: #ccc;
}

/* .menu-item:hover {
    transform: scale(1.03);
} */

/* About & Contact */
.about-section,
.contact-section {
    padding: 60px 40px;
    text-align: center;
    background: #111;
}

.about-section p {
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

input,
textarea,
select {
    background-color: #2c2c2c;
    color: #eee;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 1rem;
    width: 100%;
}

textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 160px;
    /* ← увеличено с 120px */
}

input::placeholder,
textarea::placeholder {
    color: #888;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ccc' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}


button {
    background-color: #fa865e;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #f75a26;
}


/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #999;
}

.checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-card {
    background-color: #2c2c2c;
    border-radius: 25px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.675rem;
    /* уменьшено на ~2pt */
    color: #eee;
    transition: background 0.3s ease;
}

.checkbox-card:hover {
    background-color: #3a3a3a;
}

.checkbox-card input[type="checkbox"] {
    appearance: none;
    width: 5px;
    /* уменьшено */
    height: 5px;
    border-radius: 8px;
    border: 2px solid #ccc;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"]:checked {
    background-color: #fa865e;
    border-color: #fa865e;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #111 100%);
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}


form label {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 10px;
}

input[type="date"] {
    height: 50px;
    padding: 0 16px;
    font-size: 1rem;
    border-radius: 25px;
    background-color: #2c2c2c;
    color: #eee;
    border: none;
}


.social-icons {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
    z-index: 999;
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    /* делает белыми */
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
    opacity: 1;
}


.menu-actions {
    margin-top: 15px;
}

.learn-more-btn,
.order-btn {
    background-color: #fa865e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.learn-more-btn:hover,
.order-btn:hover {
    background-color: #f75a26;
}

.extra-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.menu-item.expanded .extra-text {
    max-height: 2000px;
    opacity: 1;
}

.extra-text p {
    color: #ccc;
    margin-top: 15px;
    font-size: 0.9rem;
}

.catering-success-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
    padding: 15px 0;
}

.catering-success-text .emoji-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.catering-success-text h4,
.catering-success-text h5 {
    margin-top: 24px;
    color: #fa865e;
    font-size: 1.2rem;
    /* ⬅️ СДЕЛАЛИ БОЛЬШЕ */
    font-weight: 600;
    letter-spacing: 0.02em;
    /* чуть премиальнее */
}

.catering-success-text ul {
    margin-top: 10px;
    margin-left: 20px;
    list-style-type: disc;
}

.catering-success-text ul li {
    font-size: 0.8rem;
    /* было ~0.95–1rem → стало меньше */
    margin-bottom: 8px;
}









/* Карусель (3:4, скролл, точки, тени, скругление) */
.carousel {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.carousel-dots {
    display: flex;
    align-items: center;
    /* 🔑 центрируем точки */
    gap: 8px;
    margin: 0;
    /* убираем возможный сдвиг */
    line-height: 1;
}


.carousel-dots .dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 0px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #fa865e;
}

/* About  */


.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    color: #eee;
    line-height: 1.8;
}

.about-container h1,
.about-container h2,
.about-container h3 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-container p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-container ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

.about-container li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 1rem;
}

.back-button {
    display: inline-block;
    margin-top: 40px;
    background-color: #fa865e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.back-button:hover {
    background-color: #f75a26;
}


/* Slider styles */



/* подписи и значения под слайдерами */
#contact-form label {
    font-size: 0.9rem;
    color: #eee;
}

#contact-form #guests-value,
#contact-form #hours-value {
    font-weight: 600;
}

/* Группа "заголовок + слайдер" */
.slider-group {
    margin-bottom: 24px;
    /* компактно, но не тесно */
}

.slider-title {
    text-align: center;
    font-size: 1rem;
    /* крупнее обычного текста */
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 10px;
    /* расстояние от текста до слайдера */
}

/* Базовый вид range */
.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #262626;
    /* как поля ввода */
    outline: none;
    margin: 0;
    cursor: pointer;
}

/* Трек для WebKit (Chrome, Safari) */
.slider-input::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 999px;
    background: #262626;
}

/* Ползунок для WebKit */
.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f59368;
    /* как кнопка */
    border: 2px solid #111111;
    margin-top: -6px;
    /* чтобы центр совпал с треком */
    box-shadow: 0 0 0 4px rgba(245, 147, 104, 0.25);
    cursor: pointer;
}

/* При фокусе/hover немного подчёркиваем */
.slider-input:hover::-webkit-slider-thumb,
.slider-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 6px rgba(245, 147, 104, 0.35);
}

/* Firefox: трек */
.slider-input::-moz-range-track {
    height: 10px;
    border-radius: 999px;
    background: #262626;
}

/* Firefox: заполненная часть до ползунка */
.slider-input::-moz-range-progress {
    height: 10px;
    border-radius: 999px;
    background: #333333;
}

/* Firefox: ползунок */
.slider-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f59368;
    border: 2px solid #111111;
    box-shadow: 0 0 0 4px rgba(245, 147, 104, 0.25);
    cursor: pointer;
}

/* Убираем синий outline в Firefox */
.slider-input:-moz-focusring {
    outline: none;
}

/* Edge / IE */
.slider-input::-ms-track {
    height: 10px;
    border-radius: 999px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.slider-input::-ms-fill-lower {
    background: #333333;
    border-radius: 999px;
}

.slider-input::-ms-fill-upper {
    background: #262626;
    border-radius: 999px;
}

.slider-input::-ms-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f59368;
    border: 2px solid #111111;
    box-shadow: 0 0 0 4px rgba(245, 147, 104, 0.25);
    cursor: pointer;
}

/* Контакты: высота полей и компактные отступы */
.contact-input {
    width: 100%;
    height: 52px;
    margin-bottom: 8px;
}

/* "or" между полями */
.contact-or {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #999;
    margin: 2px 0 4px;
}


/* =========================
   ABOUT PAGE VIDEO BACKGROUND
========================= */

.about-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Видео-фон */
.about-page .background-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Затемняющий градиент */
.about-page .video-gradient {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Контент сверху */
.about-page .about-container {
    position: relative;
    z-index: 2;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}


.switch-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 10px 0 18px;
}

.switch-label {
    font-size: 0.9rem;
    color: #ddd;
    user-select: none;
}

/* Switch wrapper */
.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 140, 0, 0.35);
    transition: .2s;
    border-radius: 999px;
}

/* knob */
.switch-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff8c00;
    /* orange */
    transition: .2s;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(255, 140, 0, 0.35);
}

.switch input:checked+.switch-slider {
    background: rgba(255, 140, 0, 0.18);
    border-color: rgba(255, 140, 0, 0.65);
}

.switch input:checked+.switch-slider:before {
    transform: translate(26px, -50%);
}




.hero-section {
    position: relative;
    overflow: hidden;
}

/* poster + video cover screen */
.hero-poster,
.background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* image is visible first */
.hero-poster {
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* video hidden until ready */
.background-video {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* when video ready */
.hero-section.video-ready .background-video {
    opacity: 1;
}

.hero-section.video-ready .hero-poster {
    opacity: 0;
}

/* ===== Carousel swipe + arrows next to dots ===== */

.carousel {
    touch-action: pan-y;
    /* важно: разрешаем вертикальный скролл, но горизонтальный свайп ловим */
}

.carousel-track {
    will-change: transform;
}

/* контейнер: кнопка - точки - кнопка */
.carousel-controls {
    display: flex;
    align-items: center;
    /* 🔑 вертикальное выравнивание */
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}


/* стрелки */
.carousel-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(250, 134, 94, 0.55);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;

    font-size: 22px;
    /* меньше */
    font-weight: 400;
    /* КЛЮЧЕВО: убираем жир */
    line-height: 1;
    padding: 0 0 1px 0;
    /* чуть центрируем */
}


.carousel-btn:hover {
    background: rgba(250, 134, 94, 0.18);
    border-color: rgba(250, 134, 94, 0.85);
    transform: scale(1.04);
}

.carousel-btn:active {
    transform: scale(0.96);
}


/* ===== Peek carousel (видно соседние слайды) ===== */

.carousel {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;

    overflow: visible;
    /* было hidden — меняем на visible */
    border-radius: 16px;
    margin: 20px auto;
}

.carousel-track {
    display: flex;
    height: 100%;
    gap: 12px;
    /* расстояние между карточками */
    transition: transform 0.45s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 86%;
    /* ширина слайда меньше 100% => видны соседи */
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    /* чтобы картинка внутри не вылезала */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.menu-item {
    overflow: visible;
}

.carousel {
    cursor: grab;
    user-select: none;
}

.carousel:active {
    cursor: grabbing;
}

.carousel {
    touch-action: pan-y;
}



/* disable hover/press animation for carousel arrows */
.carousel-btn:hover,
.carousel-btn:active {
    transform: none !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(250, 134, 94, 0.55) !important;
}


/* ===== Bar Selection ===== */

.bar-selection {
    margin-bottom: 25px;
}

.bar-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f5f5f5;
}

.bar-options {
    display: flex;
    gap: 10px;
    /* было 12 → стало лучше */
    justify-content: center;
}

.bar-card {
    position: relative;
    width: 150px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    background: #1a1a1a;
}

.bar-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
}

/* скрываем radio */
.bar-card input {
    display: none;
}

/* активное состояние */
.bar-card input:checked+img {
    filter: brightness(1.1);
}

.bar-card input:checked~img,
.bar-card input:checked+img {
    border-radius: 12px;
}

.bar-card input:checked+img {
    outline: 2px solid #fa865e;
    outline-offset: -2px;
}

/* hover */
.bar-card:hover {
    transform: scale(1.05);
}