/* 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;
    padding: 10px 20px;
    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;
}


.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: 20px;
    color: #fa865e;
    font-size: 1.05rem;
}

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

.catering-success-text ul li {
    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 {
    text-align: center;
    margin-top: 12px;
}

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

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