
/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
height:200vh;
background:#0b0f14;
}


/* ================= NAVBAR ================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 7%;
z-index:1000;

/* GLASS EFFECT */
background:rgba(255,255,255,0.05);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,0.08);
transition:.3s ease;
}

/* SCROLL EFFECT */
.navbar.scrolled{
padding:12px 7%;
background:rgba(0,0,0,0.85);
}


/* LOGO */
.logo{
font-size:24px;
font-weight:700;
color:white;
letter-spacing:1px;
}

.logo span{
color:#f4b400;
}


/* NAV LINKS */
.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
color:#ddd;
text-decoration:none;
font-size:15px;
position:relative;
transition:.3s;
}

/* PREMIUM HOVER LINE */
.nav-links a::after{
content:"";
position:absolute;
bottom:-6px;
left:0;
width:0%;
height:2px;
background:linear-gradient(90deg,#f4b400,#ff2e2e);
transition:.4s;
}

.nav-links a:hover{
color:white;
}

.nav-links a:hover::after{
width:100%;
}


/* CTA BUTTON */
.cta-btn{
background:linear-gradient(45deg,#f4b400,#ff2e2e);
border:none;
padding:10px 22px;
border-radius:50px;
color:white;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.cta-btn:hover{
transform:translateY(-2px);
box-shadow:0 5px 18px rgba(255,80,0,.4);
}


/* HAMBURGER */
.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:26px;
height:3px;
background:white;
transition:.3s;
}
/* DESKTOP CTA SHOW */
.desktop-cta{
display:block;
}

/* MOBILE CTA HIDE DEFAULT */
.mobile-cta{
display:none;
}


/* ================= MOBILE ================= */

@media(max-width:900px){

.nav-links{
position:absolute;
top:100%;
right:-100%;
flex-direction:column;
background:#111;
width:260px;
padding:30px;
border-radius:0 0 0 20px;
transition:.4s;
}

.nav-links.show{
right:0;
}

/* HIDE DESKTOP BUTTON */
.desktop-cta{
display:none;
}

/* SHOW MOBILE BUTTON */
.mobile-cta{
display:block;
margin-top:15px;
}

.mobile-cta .cta-btn{
width:100%;
}

.hamburger{
display:flex;
}

}




/* HERO */
.premium-hero{
position:relative;
overflow:hidden;
padding:120px 8% 180px;
color:white;

/* animated gradient */
background:linear-gradient(-45deg,#020617,#0f172a,#1e293b,#020617);
background-size:400% 400%;
animation:gradientMove 12s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

/* container */
.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
position:relative;
z-index:2;
}

/* heading */
.hero-content h1{
font-size:60px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content span{
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
-webkit-background-clip:text;
color:transparent;
}

.hero-desc{
color:#cbd5e1;
max-width:500px;
margin-bottom:35px;
}

/* buttons */
.hero-buttons{
display:flex;
gap:20px;
}

.btn-primary{
padding:14px 32px;
border:none;
border-radius:50px;
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
color:white;
cursor:pointer;
font-weight:600;
box-shadow:0 0 20px rgba(255,107,0,.4);
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-4px);
box-shadow:0 0 35px rgba(255,107,0,.8);
}

.btn-outline{
padding:14px 32px;
border-radius:50px;
border:2px solid rgba(255,255,255,.3);
background:transparent;
color:white;
cursor:pointer;
}

/* floating image */
.hero-image img{
width:480px;
max-width:100%;
filter:drop-shadow(0 40px 80px rgba(0,0,0,.6));
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-20px)}
}

/* particles */
.particles{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
background-image:radial-gradient(circle,#ff6b00 1px,transparent 1px);
background-size:40px 40px;
opacity:.08;
animation:moveParticles 40s linear infinite;
}

@keyframes moveParticles{
from{transform:translateY(0)}
to{transform:translateY(-500px)}
}

/* wave */
.wave{
position:absolute;
bottom:0;
left:0;
width:100%;
}

/* booking modal */
.booking-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

.booking-box{
background:rgba(255,255,255,.08);
backdrop-filter:blur(25px);
padding:40px;
border-radius:20px;
display:flex;
flex-direction:column;
gap:15px;
width:320px;
}

.booking-box input{
padding:12px;
border:none;
border-radius:8px;
}

.close-btn{
background:transparent;
border:none;
color:white;
cursor:pointer;
}

/* responsive */
@media(max-width:992px){
.hero-container{
flex-direction:column;
text-align:center;
}

.hero-content h1{
font-size:42px;
}

.hero-image img{
width:350px;
}
}




.menu-section{
padding:100px 8%;
background:#020617;
color:white;
text-align:center;
}

.menu-title{
font-size:42px;
margin-bottom:40px;
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
-webkit-background-clip:text;
color:transparent;
}

/* tabs */
.menu-tabs{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:50px;
flex-wrap:wrap;
}

.tab{
padding:10px 25px;
border-radius:30px;
border:1px solid rgba(255,255,255,.2);
background:transparent;
color:white;
cursor:pointer;
transition:.3s;
}

.tab.active,
.tab:hover{
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
border:none;
}

/* grid */
.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* card */
.menu-card{
background:rgba(255,255,255,.05);
backdrop-filter:blur(20px);
border-radius:20px;
padding:20px;
transition:.4s;
position:relative;
overflow:hidden;
}

.menu-card:hover{
transform:translateY(-10px) scale(1.04);
box-shadow:0 20px 50px rgba(0,0,0,.6);
}

/* image */
.menu-img{
position:relative;
height:200px;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:15px;
}

.menu-img img{
max-height:180px;
transition:.4s;
}

.menu-card:hover img{
transform:scale(1.15) rotate(5deg);
}

/* price badge */
.price{
position:absolute;
top:10px;
right:10px;
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
padding:6px 14px;
border-radius:20px;
font-size:14px;
box-shadow:0 0 15px rgba(255,107,0,.6);
}

/* text */
.menu-card h3{
margin-bottom:5px;
}

.menu-card p{
color:#cbd5e1;
font-size:14px;
}




.about-section{
padding:120px 8%;
background:#020617;
color:white;
position:relative;
overflow:hidden;
}

/* container */
.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

/* ================= IMAGE SIDE ================= */

.about-images{
position:relative;
}

.main-img{
width:100%;
border-radius:30px;
box-shadow:0 25px 80px rgba(0,0,0,.6);
}

.floating-img{
position:absolute;
bottom:-40px;
right:-30px;
width:220px;
border-radius:25px;
/* border:5px solid #020617; */
box-shadow:0 20px 50px rgba(0,0,0,.7);
}

/* ================= TEXT SIDE ================= */

.about-tag{
color:#ff9f1a;
letter-spacing:2px;
margin-bottom:10px;
}

.about-content h2{
font-size:42px;
margin-bottom:20px;
line-height:1.2;
}

.about-content h2 span{
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
-webkit-background-clip:text;
color:transparent;
}

.about-content p{
color:#cbd5e1;
margin-bottom:35px;
line-height:1.7;
}

/* ================= STATS ================= */

.about-stats{
display:flex;
gap:40px;
margin-bottom:40px;
}

.stat{
background:rgba(255,255,255,.05);
padding:20px 25px;
border-radius:15px;
backdrop-filter:blur(15px);
text-align:center;
}

.stat h3{
font-size:26px;
color:#ff9f1a;
}

.stat span{
font-size:14px;
color:#cbd5e1;
}

/* ================= BUTTON ================= */

.about-btn{
padding:14px 35px;
border:none;
border-radius:40px;
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
color:white;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.about-btn:hover{
transform:scale(1.08);
box-shadow:0 10px 30px rgba(255,107,0,.5);
}



@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
gap:60px;
}

.floating-img{
right:10px;
width:180px;
}

.about-content h2{
font-size:32px;
}

.about-stats{
flex-direction:column;
gap:15px;
}
}




.best-food{
padding:120px 8%;
background:linear-gradient(180deg,#020617,#020617,#07122a);
text-align:center;
color:white;
position:relative;
overflow:hidden;
}

/* HEADER */
.section-header h5{
color:#ff9f1a;
letter-spacing:3px;
margin-bottom:10px;
}

.section-header h2{
font-size:48px;
margin-bottom:15px;
}

.section-header h2 span{
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
-webkit-background-clip:text;
color:transparent;
}

.section-header p{
color:#cbd5e1;
margin-bottom:70px;
}

/* GRID */
.food-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:35px;
}

/* CARD */
.food-card{
background:rgba(255,255,255,0.05);
border-radius:30px;
padding:90px 25px 30px;
backdrop-filter:blur(20px);
position:relative;
transition:.4s;
box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.food-card:hover{
transform:translateY(-15px) scale(1.03);
box-shadow:0 30px 80px rgba(255,107,0,.25);
}

/* FLOATING PNG IMAGE */
.food-img{
width:150px;
position:absolute;
top:-70px;
left:50%;
transform:translateX(-50%);
filter:drop-shadow(0 15px 25px rgba(0,0,0,.6));
}

/* TEXT */
.food-card h3{
margin-top:10px;
font-size:22px;
}

.food-card p{
color:#cbd5e1;
font-size:14px;
margin:12px 0;
}

/* PRICE */
.price{
background:linear-gradient(45deg,#ff6b00,#ff9f1a);
padding:8px 22px;
border-radius:25px;
display:inline-block;
font-weight:bold;
margin-top:10px;
}
@media(max-width:1000px){
.food-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.food-grid{
grid-template-columns:1fr;
}

.section-header h2{
font-size:34px;
}
}





.drink-3d-section{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#fff8f2,#ffe9dc);
    overflow:hidden;
}

.drink-title{
    font-size:40px;
    margin-bottom:60px;
}

/* 3D CONTAINER */
.slider-3d{
    position:relative;
    width:220px;
    height:220px;
    transform-style:preserve-3d;
    animation:rotate 20s linear infinite;
}

.slider-3d:hover{
    animation-play-state:paused;
}

/* 3D POSITION */
.slider-3d span{
    position:absolute;
    width:100%;
    height:100%;
    transform:rotateY(calc(var(--i)*72deg)) translateZ(380px);
}

.slider-3d img{
    width:100%;
    height:100%;
    object-fit:contain;
    cursor:pointer;
    transition:0.4s;
}

.slider-3d img:hover{
    transform:scale(1.2);
}

/* ROTATION */
@keyframes rotate{
    0%{ transform:perspective(1200px) rotateY(0deg);}
    100%{ transform:perspective(1200px) rotateY(360deg);}
}

.drink-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
}

.modal-box{
    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    width:320px;
    position:relative;
}

.modal-box img{
    width:150px;
}

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:26px;
    cursor:pointer;
}

.order-btn{
    padding:12px 25px;
    border:none;
    background:#ff6b00;
    color:white;
    border-radius:8px;
}



   footer {
        background-color: #000000; /* Dark sleek background */
        color: #f5f5f5;
        padding: 60px 20px 20px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        max-width: 1200px;
        margin: auto;
    }

    .footer-container div {
        flex: 1 1 250px;
    }

    footer h3 {
        margin-bottom: 15px;
        font-size: 1.4em;
        color: #ff6b00; /* Highlight color for headings */
        letter-spacing: 1px;
    }

    footer p {
        margin-bottom: 12px;
        font-size: 1em;
        color: #dcdcdc;
    }

    .footer-newsletter form {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .footer-newsletter input[type="email"] {
        padding: 12px 15px;
        border: none;
        border-radius: 30px;
        flex: 1;
        font-size: 0.95em;
        outline: none;
    }

    .footer-newsletter button {
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        background-color: #ff6b00;
        color: #fff;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s, transform 0.3s;
    }

    .footer-newsletter button:hover {
        background-color:#ff6b00;
        transform: scale(1.05);
    }

    .footer-social {
        text-align: center;
        margin-top: 40px;
    }

    .footer-social a {
        color: #f5f5f5;
        margin: 0 15px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05em;
        transition: color 0.3s, transform 0.3s;
    }

    .footer-social a:hover {
        color: #ff6b00;
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 25px;
        font-size: 0.9em;
        color: #b5b5b5;
        border-top: 1px solid #000000;
        padding-top: 15px;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }