/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Baloo 2', cursive, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* ===== BACKGROUND VIDEO ===== */
#bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 0;
    overflow: hidden;
    background: #0a0a0a;
}
#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

#bg-video::-webkit-media-controls,
#bg-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
#bg-video::-moz-media-controls {
    display: none !important;
}

#bg-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #f5f5dc, #e63946);
    z-index: 1000;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

/* ===== SECTIONS ===== */
.section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}
.section .content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY (Disco Fun) ===== */
.tagline {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #e63946;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 0 #8b0000;
}

.display-text {
    font-family: 'Righteous', cursive;
    font-size: clamp(3.5rem, 12vw, 7rem);
    line-height: 1.05;
    color: #fff;
    text-shadow: 5px 5px 0 #e63946;
    margin-bottom: 0.5rem;
}
.display-text .highlight {
    color: #e63946;
    text-shadow: 5px 5px 0 #f5f5dc;
}

.hero-sub {
    font-family: 'Baloo 2', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f5f5dc;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0 #8b0000;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    color: #fff;
    text-shadow: 4px 4px 0 #e63946;
    margin-top: 0.5rem;
}

.section-desc {
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    color: #f5f5dc;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.about-text p {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.feature-item {
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    color: #e63946;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.feature-item em {
    display: block;
    color: #f5f5dc;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 2px dashed rgba(230, 57, 70, 0.4);
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item .num {
    font-family: 'Righteous', cursive;
    font-size: 2.4rem;
    color: #e63946;
    min-width: 70px;
}
.menu-details {
    flex: 1;
}
.menu-details h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.menu-details p {
    font-family: 'Baloo 2', cursive;
    color: #ddd;
    font-size: 1.2rem;
}
.menu-item .price {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #f5f5dc;
    white-space: nowrap;
}

/* Buttons */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}
.btn-group.center {
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 2rem;
    font-family: 'Righteous', cursive;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #e63946;
    border-bottom: 4px solid #e63946;
    text-shadow: 2px 2px 0 #8b0000;
    transition: color 0.2s, border-color 0.2s, transform 0.3s;
}
.btn-primary {
    color: #e63946;
    border-bottom-color: #e63946;
}
.btn-primary:hover {
    color: #f5f5dc;
    border-bottom-color: #f5f5dc;
    transform: translateX(8px);
}
.btn-outline:hover {
    color: #fff;
    border-bottom-color: #fff;
    transform: translateX(8px);
}

/* ===== ANIMATIONS ===== */
.section .content > *,
.footer-section .content > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.section .content.pre-anim > *,
.footer-section .content.pre-anim > * {
    opacity: 0;
}

.anim-slide-up.pre-anim > * {
    transform: translateY(150px) rotate(8deg) scale(0.7);
}
.anim-slide-left.pre-anim > * {
    transform: translateX(-150px) rotate(-10deg);
}
.anim-slide-right.pre-anim > * {
    transform: translateX(150px) skewX(10deg);
}
.anim-zoom.pre-anim > * {
    transform: scale(0.2);
}
.anim-flip.pre-anim > * {
    transform: rotateX(90deg) translateY(20px);
}
.anim-fade.pre-anim > * {
    filter: blur(20px);
    transform: translateY(20px);
}

.section .content.in-view > *,
.footer-section .content.in-view > * {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.in-view > *:nth-child(1) { transition-delay: 0.1s; }
.in-view > *:nth-child(2) { transition-delay: 0.25s; }
.in-view > *:nth-child(3) { transition-delay: 0.4s; }
.in-view > *:nth-child(4) { transition-delay: 0.55s; }
.in-view > *:nth-child(5) { transition-delay: 0.7s; }
.in-view > *:nth-child(6) { transition-delay: 0.85s; }
.in-view > *:nth-child(7) { transition-delay: 1s; }
.in-view > *:nth-child(8) { transition-delay: 1.15s; }
.in-view > *:nth-child(9) { transition-delay: 1.3s; }
.in-view > *:nth-child(10) { transition-delay: 1.45s; }

/* ===== FOOTER ===== */
.footer-section {
    position: relative;
    z-index: 2;
    padding: 2rem;
}
.footer {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    border-top: 3px solid #e63946;
    padding-top: 1.8rem;
}
.footer p {
    margin: 0.6rem 0;
}
.footer p:last-child {
    color: #e63946;
    font-weight: 700;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }
    .display-text {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }
    .hero-sub {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .section-desc {
        font-size: 1.1rem;
    }
    .about-text p {
        font-size: 1.2rem;
    }
    .feature-item {
        font-size: 1.15rem;
    }
    .feature-item em {
        font-size: 0.95rem;
    }
    .menu-item {
        flex-direction: column;
        gap: 0.6rem;
        padding: 1.2rem 0;
    }
    .menu-item .num {
        min-width: auto;
        font-size: 1.8rem;
    }
    .menu-details h4 {
        font-size: 1.3rem;
    }
    .menu-details p {
        font-size: 1rem;
    }
    .menu-item .price {
        align-self: flex-end;
        font-size: 1.4rem;
    }
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
    }

    .anim-slide-up.pre-anim > * {
        transform: translateY(80px) rotate(5deg) scale(0.8);
    }
    .anim-slide-left.pre-anim > * {
        transform: translateX(-80px) rotate(-5deg);
    }
    .anim-slide-right.pre-anim > * {
        transform: translateX(80px) skewX(5deg);
    }
    .anim-zoom.pre-anim > * {
        transform: scale(0.3);
    }
    .anim-flip.pre-anim > * {
        transform: rotateX(60deg) translateY(10px);
    }
    .anim-fade.pre-anim > * {
        filter: blur(10px);
        transform: translateY(10px);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 0.8rem;
    }
    .display-text {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }
    .tagline {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}