/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #000;
    z-index: 1;
}

/* ==================== BACKGROUND LAYERS ==================== */
.hero-background,
.hero-overlay,
.hero-luxury-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-luxury-glow {
    pointer-events: none;
    z-index: 5;
}

/* ==================== HERO SLIDES ==================== */
.hero-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
}

.hero-slide-text {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #fff;
    max-width: 80%;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    opacity: 0;
    margin-top: 15px;
    text-align: center;
    transition: all 1.5s ease-in-out;
}

/* ==================== HERO INNER CONTENT ==================== */
.hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    animation: title-slide 5s infinite alternate;
    font-family: 'Playfair Display', serif;
}

.hero-title-shimmer {
    display: block;
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%);
    margin: 0 auto;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes title-slide {
    0% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

/* ==================== ORDER NOW BUTTON ==================== */
.hero-btn.order-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(145deg, #ff4b2b, #ffcc00);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6), inset 0 0 12px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 10;
    position: relative;
    perspective: 1000px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.hero-btn.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) inset;
    transform: translateZ(-10px);
    z-index: -1;
}

.btn-light {
    animation: glow 1.2s ease-in-out forwards;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px #fff, 0 0 20px #ffcc00, 0 0 30px #ff4b2b;
    }

    50% {
        box-shadow: 0 0 20px #fff, 0 0 40px #ffcc00, 0 0 60px #ff4b2b;
    }

    100% {
        box-shadow: 0 0 10px #fff, 0 0 20px #ffcc00, 0 0 30px #ff4b2b;
    }
}

.btn-shake {
    animation: shake 0.9s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    75% {
        transform: translateX(-4px);
    }
}

/* ==================== SPARKLES ==================== */
.hero-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkle 3s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.3;
    }
}

/* ==================== FLOATING FOOD ICONS ==================== */
.hero-food-decor {
    position: absolute;
    color: #fff;
    pointer-events: none;
    z-index: 3;
    user-select: none;
    animation: float 8s infinite alternate ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) translateX(5px) rotate(15deg);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

/* ==================== SCROLL DOWN ICON ==================== */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* ==================== LOGO ==================== */
.logo {
    position: relative;
    z-index: 999;
    max-width: 180px;
    width: 100%;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
}

/* ==================== MOBILE NAVIGATION ==================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slide-text {
        font-size: 1.3rem;
    }

    .hero-btn.order-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .logo {
        max-width: 140px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-slide-text {
        font-size: 1rem;
    }

    .hero-btn.order-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .logo {
        max-width: 120px;
    }
}