*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:black;
  color:white;
}

/* HEADER */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background:transparent;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo img{
   width: 220px;
   max-width: 100%;
   height: auto;
   object-fit: contain;
   display: block;
}

.logo h1{
  color:#ffb300;
  font-size:28px;
}

nav a{
color:white;
font-family: 'Bebas Neue', sans-serif;
text-decoration:none;
margin-left:45px;
font-size:32px;
letter-spacing:1px;
font-weight:400;
transition:0.3s;
text-shadow:0 0 8px rgba(255,140,0,0.3);
}

nav a:hover{
color:#ffb300;
text-shadow:0 0 15px orange;
transform:scale(1.1);
}
/* HERO */

.hero{
  height:100vh;

  background:
  linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
  url("images/hero-banner.png");
  filter:
  brightness(1.15)
  contrast(1.15)
  saturate(1.2);

  background-size:100% 100%;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;

  padding-left:80px;
}

.hero-content{
  position:relative;
  top:250px;
}

.hero button{
  margin-top:25px;
  padding:18px 45px;
  font-size:22px;

  background:#ffb300;
  color:black;
  border:none;
  border-radius:50px;
  font-weight:bold;
  cursor:pointer;
}

.hero-content h2,
.hero-content p{
  display:none;
}

/* MENU */

.menu-section{
  padding:100px 60px;
  text-align:center;
}

.menu-section h2{
  font-size:60px;
  color:#ffb300;
  margin-bottom:60px;
}

.menu-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.card{
  width:270px;
  background:#111;
  border-radius:25px;
  overflow:hidden;
  transition:.4s;
  border:1px solid #333;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(255,179,0,.5);
}

.card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.card h3{
  margin-top:20px;
  font-size:22px;
}

.card p{
  margin-top:10px;
  color:#ccc;
}

.card h4{
  margin-top:15px;
  color:#ffb300;
  font-size:26px;
}

.card button{
  margin:20px 0;
  padding:12px 25px;
  border:none;
  border-radius:30px;
  background:#ffb300;
  font-weight:bold;
  cursor:pointer;
}

/* 3D SECTION */

.chicken3d-section{
  padding:120px 50px;
  text-align:center;
  background:
  linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.9)),
  url("images/grillbg.jpg");
  background-size:cover;
  background-position:center;
}

.chicken3d-text h2{
  font-size:60px;
  color:#ffb300;
}

.chicken3d-text p{
  margin-top:20px;
  font-size:24px;
}

.model-box{
  margin:60px auto;
  width:800px;
  max-width:95%;
  height:500px;
  border-radius:30px;
  overflow:hidden;
  border:2px solid #ffb300;
  box-shadow:0 0 50px rgba(255,179,0,.5);
}

model-viewer{
  width:100%;
  height:100%;
  background:transparent;
}

/* CONTACT */

.contact-section{
  padding:120px 40px;
  text-align:center;
}

.contact-section h2{
  font-size:55px;
  color:#ffb300;
}

.contact-section p{
  margin-top:20px;
  font-size:24px;
}

.contact-section button{
  margin-top:35px;
  padding:18px 40px;
  border:none;
  border-radius:40px;
  background:#25D366;
  color:white;
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
}

/* FOOTER */

footer{
  padding:40px;
  text-align:center;
  background:#111;
}

/* POPUP */

.dish-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.dish-box{
  background:#111;
  padding:30px;
  border-radius:25px;
  text-align:center;
  width:350px;
  position:relative;
}

.dish-box img{
  width:100%;
  border-radius:20px;
}

.dish-box h2{
  margin-top:20px;
}

.dish-box h3{
  margin-top:10px;
  color:#ffb300;
}

.dish-box button{
  margin-top:20px;
  padding:14px 25px;
  border:none;
  border-radius:30px;
  background:#25D366;
  color:white;
  font-weight:bold;
}

.dish-close{
  position:absolute;
  right:20px;
  top:10px;
  font-size:30px;
  cursor:pointer;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
  overflow:hidden;
  position:fixed;
  right:25px;
  bottom:25px;
  background:#25D366;
  color:white;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:26px;
  text-decoration:none;
}
.dish-popup{
display:none;
}
.model-box model-viewer{
  width:100%;
  height:100%;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
    url("images/fire-bg.jpg");

  background-size:cover;
  background-position:center;
}
.call-btn{
  margin-top:15px;
  background:white;
  color:black;
}

.contact-number{
  color:#ffb300;
  font-size:28px;
  margin-top:20px;
  font-weight:bold;
}

.group-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.8);

  display:none;
  justify-content:center;
  align-items:center;

  z-index:9999;
}

.group-box{
  background:#111;
  padding:40px;
  border-radius:20px;
  text-align:center;
  color:white;
  width:350px;
  border:2px solid #ffb300;

  position:relative;
}

.group-box h2{
  color:#ffb300;
  margin-bottom:15px;
}

.group-box button{
  margin-top:20px;
  padding:15px 30px;
  border:none;
  border-radius:40px;
  background:#25D366;
  color:white;
  font-weight:bold;
  cursor:pointer;
}

.group-box span{
  position:absolute;
  top:10px;
  right:15px;
  cursor:pointer;
  font-size:22px;
}

.food-ticker{
  width:100%;
  overflow:hidden;
  background:#000;
  border-top:1px solid #ffb300;
  border-bottom:1px solid #ffb300;
  padding:18px 0;
}

.ticker-track{
  display:flex;
  width:max-content;
  animation:scrollFood 20s linear infinite;
}

.ticker-track span{
  color:white;
  font-size:20px;
  font-weight:bold;
  margin-right:70px;
  white-space:nowrap;
  letter-spacing:1px;
}

.ticker-track span:hover{
  color:#ffb300;
}

@keyframes scrollFood{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

.card{
  transition:0.4s;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(255,179,0,0.7);
}

.card img{
  transition:0.4s;
}

.card:hover img{
  transform:scale(1.08);
}

@media(max-width:768px){

  header{
    position:relative;
    padding:18px 20px;
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

  .logo{
    justify-content:center;
  }

  .logo img{
    width:60px;
    height:60px;
  }

  .logo h1{
    font-size:34px;
  }

  nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
  }

  nav a{
    margin-left:0;
    font-size:18px;
  }

  .hero{
    height:auto;
    min-height:520px;
    padding:0;
    background-image:
      linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)),
      url("images/hero-banner.png");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
  }

  .hero-content{
    display:none;
  }

  .menu-section{
    padding:70px 20px;
  }

  .menu-section h2{
    font-size:38px;
    margin-bottom:40px;
  }

  .menu-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:35px;
  }

  .card{
    width:92% !important;
    max-width:360px;
  }

  .card img{
    height:260px !important;
    object-fit:cover;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
    right:15px;
    bottom:18px;
  }
}

@media(max-width:768px){

  .hero{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:16/10;
    padding:0;
    background-image:url("images/hero-banner.png");
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#000;
  }

  .hero-content{
    display:none;
  }

}

@media(max-width:768px){

  header{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:15px 18px;
  }

  .logo{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .logo img{
    width:55px;
    height:55px;
  }

  .logo h1{
    font-size:28px;
    line-height:30px;
  }

  nav{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:5px;
  }

  nav a{
    font-size:16px;
    margin:0;
  }

}

@media(max-width:768px){

  header{
    flex-direction:column;
    align-items:center;
    padding:12px 10px;
    gap:10px;
  }

  .logo{
    justify-content:center;
  }

  .logo img{
    width:58px;
    height:58px;
  }

  .logo h1{
    font-size:32px;
    text-align:center;
  }

  nav{
    flex-direction:row;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
  }

  nav a{
    font-size:16px;
    margin:0;
  }

  .hero{
    width:100%;
    height:520px;
    padding:0;
    margin-top:0;

    background-image:url("images/hero-banner.png");
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
  }

  .hero-content{
    display:none;
  }

}

@media(max-width:768px){

  .hero{
    width:100%;
    height:100vh;

    background-image:url("images/hero-banner.png");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center top;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    padding-bottom:20px;
  }

  .hero-content{
    display:none;
  }

}

@media(max-width:768px){

  .hero{
    width:100%;
    height:85vh;
    padding:0;

    background-image:url("images/hero-mobile.png");
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
  }

  .hero-content{
    display:none;
  }
}

@media(max-width:768px){

  header{
    padding-left:10px;
    padding-right:10px;
  }

  .logo{
    margin-left:-10px;
  }

  .logo h1{
    font-size:42px;
    margin-left:5px;
  }

}

.load-3d-btn{
  background:#ffb300;
  color:#000;
  border:none;
  border-radius:40px;
  padding:15px 30px;
  font-weight:bold;
  font-size:16px;
  cursor:pointer;
}

.chicken3d-section{
  padding:90px 20px;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.95)),
    url("images/fire-bg.jpg");
  background-size:cover;
  background-position:center;
}

.chicken3d-section h2{
  font-size:60px;
  color:white;
}

.chicken3d-section h2 span{
  color:#ffb300;
}

.chicken3d-section p{
  color:white;
  font-size:22px;
  margin:15px 0 35px;
}

.model-box{
  position:relative;
  max-width:650px;
  height:520px;
  margin:auto;
  border-radius:30px;
  border:1px solid #ffb300;
  overflow:hidden;
  box-shadow:0 0 45px rgba(255,179,0,.45);
  background:#080808;
}

.model-poster{
  position:absolute;
  inset:0;
  z-index:5;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:#111;
}

.model-poster img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.9;
}

.model-poster button{
  position:absolute;
  bottom:30px;
  background:#ffb300;
  color:#000;
  border:none;
  padding:16px 35px;
  border-radius:40px;
  font-weight:bold;
  font-size:18px;
  cursor:pointer;
}

model-viewer{
  width:100%;
  height:100%;
}

.featured-title{
font-family: 'Anton', sans-serif;
font-size:70px;
color:#ffb300;
text-align:center;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:40px;

text-shadow:
0 0 10px rgba(255,140,0,0.8),
0 0 20px rgba(255,120,0,0.6),
0 0 40px rgba(255,80,0,0.4);

animation: glow 2s infinite alternate;
}

@keyframes glow{
from{
text-shadow:
0 0 10px orange;
}

to{
text-shadow:
0 0 20px orange,
0 0 40px red,
0 0 60px #ff6600;
}
}
.premium-3d-section{
padding:80px 20px;
background:black;
text-align:center;
}

.title3d{
font-size:55px;
color:white;
font-weight:bold;
}

.title3d span{
color:#ffb300;
}

.subtitle3d{
color:white;
font-size:22px;
margin-top:10px;
margin-bottom:40px;
}

.viewer-box{
position:relative;
width:100%;
max-width:650px;
height:550px;
margin:auto;
border-radius:30px;
overflow:hidden;
border:2px solid #ffb300;
box-shadow:0 0 45px rgba(255,179,0,0.5);

background:
linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.6)),
url("images/fire-bg.jpg");

background-size:cover;
background-position:center;
}

.poster-screen{
position:absolute;
inset:0;
z-index:10;
}

.poster-screen img{
width:100%;
height:100%;
object-fit:cover;
}

.poster-screen button{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#ffb300;
color:black;
padding:18px 35px;
border:none;
border-radius:50px;
font-size:18px;
font-weight:bold;
cursor:pointer;
}

model-viewer{
width:100%;
height:100%;
background:black;
}

.loading-ui{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
width:80%;
display:none;
z-index:20;
}

.loading-ui p{
color:white;
margin-bottom:10px;
font-size:18px;
}

.bar{
width:100%;
height:10px;
background:#333;
border-radius:20px;
overflow:hidden;
}

.progress{
width:60%;
height:100%;
background:#ffb300;
animation:loadingMove 1s infinite alternate;
}

@keyframes loadingMove{

0%{
width:20%;
}

100%{
width:80%;
}

}

/* MOBILE */

@media(max-width:768px){

.title3d{
font-size:38px;
}

.subtitle3d{
font-size:18px;
}

.viewer-box{
height:420px;
}

.poster-screen button{
font-size:15px;
padding:14px 25px;
}

}

#chickenViewer{
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)),
    url("images/fire-bg.jpg") !important;

  background-size:cover !important;
  background-position:center !important;
}

.brand-name{
  position:relative;
  display:inline-block;
}

.brand-text-img{
  width:330px;
  height:auto;
  display:block;
  animation:brandGlow 2s infinite alternate;
}

@keyframes brandGlow{
  from{
    filter:drop-shadow(0 0 6px orange);
  }
  to{
    filter:drop-shadow(0 0 22px #ffb300);
  }
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:80px;
}

.brand-text{
    width:320px;
    height:auto;
    object-fit:contain;

    animation: glow 2s infinite alternate;
}

@keyframes glow{
    from{
        filter: drop-shadow(0 0 5px orange);
    }

    to{
        filter: drop-shadow(0 0 18px gold);
    }
}

.logo-text{
height:150px;
width:auto;
object-fit:contain;
animation: glow 2s infinite alternate;
}

@keyframes glow{
from{
filter: drop-shadow(0 0 5px orange);
}
to{
filter: drop-shadow(0 0 18px red);
}
}

.logo-text{
animation:
glow 2s infinite alternate,
floatcrumbs 4s infinite ease-in-out;
}

@keyframes floatcrumbs{
0%{transform:translateY(0px);}
50%{transform:translateY(-3px);}
100%{transform:translateY(0px);}
}

.menu-section h2{
  font-family:'Anton', sans-serif;
  font-size:85px;
  font-weight:900;
  letter-spacing:6px;

  color:#ffcc00;

  text-align:center;
  text-transform:uppercase;

  margin-bottom:50px;

  animation: fireGlow 1.5s ease-in-out infinite alternate;

  text-shadow:
    0 0 5px #ff9900,
    0 0 10px #ff6600,
    0 0 20px #ff3300,
    0 0 40px red;
}

@keyframes fireGlow{
  from{
    text-shadow:
      0 0 5px #ff9900,
      0 0 10px #ff6600,
      0 0 20px #ff3300;
  }

  to{
    text-shadow:
      0 0 10px #ffcc00,
      0 0 20px orange,
      0 0 40px red,
      0 0 80px #ff2200;
  }
}

.card{
  text-align:center;
}

.card h3{
  font-family:'Poppins', sans-serif;
  text-align:center;
  font-size:26px;
  font-weight:700;
  margin-top:18px;
}

.card p{
  font-family:'Poppins', sans-serif;
  text-align:center;
  font-size:16px;
  margin:10px 0 18px;
}

.card a{
  display:flex;
  justify-content:center;
  text-decoration:none;
}

.card button{
  display:block;
  margin:0 auto 18px;
}

.card h3{
  font-family:'Poppins', sans-serif;
  font-weight:800;
  letter-spacing:.5px;
}

.white-text{
  color:white;
}

.orange-text{
  color:#ffb300;
}

.cinema-border{
  overflow:visible;
  width:fit-content;
  margin:70px auto;
  padding:35px 70px;
  border-radius:25px;
  position:relative;
  background:#170000;
  border:5px solid #ffb300;

  box-shadow:
  0 0 15px #ffb300,
  0 0 35px orange,
  0 0 60px red;
}

.cinema-border::before{
  content:"";
  position:absolute;

  inset:-25px;   /* increase this */

  border-radius:40px;
  padding:25px;

  background:
    radial-gradient(circle,
    #fff7a8 0 22%,
    #ffb300 28%,
    #ff6a00 45%,
    transparent 52%)
    0 0 / 42px 42px;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  animation:bulbBlink 1s infinite alternate;

  z-index:-1;
}

@keyframes bulbBlink{
  from{
    filter:brightness(1);
  }
  to{
    filter:brightness(1.8) drop-shadow(0 0 10px #ffb300);
  }
}

.cinema-border h2{
  font-family:'Anton', sans-serif;
  font-size:75px;
  color:#ffb300;
  letter-spacing:5px;
  margin:0;
  text-shadow:
  0 0 15px orange,
  0 0 35px red;
}

.chat-toggle{
overflow:hidden;
position:fixed;
bottom:25px;
right:25px;
width:58px;
height:58px;
background:#00e676;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:26px;
cursor:pointer;
z-index:999;
box-shadow:0 0 20px #00e676;
}

.chat-box{
position:fixed;
bottom:100px;
right:25px;
width:320px;
height:450px;
background:#111;
border:2px solid orange;
border-radius:20px;
display:none;
flex-direction:column;
overflow:hidden;
z-index:999;
box-shadow:0 0 30px orange;
}

.chat-header{
background:orange;
color:black;
padding:15px;
font-family:'Anton', sans-serif;
font-size:24px;
text-align:center;
}

.chat-messages{
flex:1;
padding:15px;
overflow-y:auto;
font-family:Poppins;
color:white;
}

.bot-message,
.user-message{
padding:10px;
margin-bottom:12px;
border-radius:12px;
max-width:80%;
}

.bot-message{
background:#222;
}

.user-message{
background:orange;
color:black;
margin-left:auto;
}

.chat-input-area{
display:flex;
padding:10px;
background:#1a1a1a;
}

.chat-input-area input{
flex:1;
padding:10px;
border:none;
outline:none;
border-radius:10px;
}

.chat-input-area button{
margin-left:10px;
padding:10px 15px;
border:none;
background:orange;
border-radius:10px;
cursor:pointer;
font-weight:bold;
}

.cinematic-effects{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:260px;
  pointer-events:none;
  z-index:20;
  overflow:hidden;
}

/* crossing wires */
.cross-wire{
  position:absolute;
  left:-5%;
  width:110%;
  height:120px;
  border-bottom:3px solid rgba(255,150,0,.7);
  box-shadow:0 0 12px orange;
}

.wire-one{
  top:-45px;
  border-radius:0 0 55% 45%;
  transform:rotate(-2deg);
}

.wire-two{
  top:-15px;
  border-radius:0 0 45% 55%;
  transform:rotate(3deg);
  opacity:.65;
}

/* bulb image only */
.h-bulb{
  position:absolute;
  width:120px;
  height:180px;
  background:url("images/bulb.png") center/contain no-repeat;
  transform-origin:top center;

  filter:
  drop-shadow(0 0 8px #ff8800)
  drop-shadow(0 0 25px #ff6600)
  drop-shadow(0 0 60px rgba(255,120,0,.9));

  animation:
    bulbSwing 4s ease-in-out infinite alternate,
    orangeBlink 1.2s infinite alternate;
}

/* 5 bulbs only */
.b1{left:-1%; top:-5px; transform:rotate(8deg);}
.b2{left:28%; top:44px; transform:rotate(-10deg);}
.b3{left:50%; top:39px; transform:rotate(9deg);}
.b4{left:69%; top:22px; transform:rotate(-12deg);}
.b5{left:87%; top:0px; transform:rotate(8deg);}

@keyframes bulbSwing{
  from{ rotate:-3deg; }
  to{ rotate:3deg; }
}

@keyframes orangeBlink{

  0%{
    filter:
      brightness(.7)
      drop-shadow(0 0 5px #ff8800)
      drop-shadow(0 0 15px #ff6600);
  }

  50%{
    filter:
      brightness(1.2)
      drop-shadow(0 0 15px orange)
      drop-shadow(0 0 35px #ff5500);
  }

  100%{
    filter:
      brightness(1.8)
      drop-shadow(0 0 25px #ff9900)
      drop-shadow(0 0 55px #ff4400)
      drop-shadow(0 0 100px rgba(255,90,0,.9));
  }
}

@media(max-width:768px){

  body{
    overflow-x:hidden;
  }

  header{
    position:relative;
    width:100%;
    padding:10px 0;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .logo{
    justify-content:center;
    flex-direction:column;
    gap:5px;
  }

  .logo img{
    width:85px;
    height:auto;
  }

  .logo-text{
    height:auto;
    margin-top:20px;
    width:260px;
    max-width:90vw;
  }

  nav{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:8px;
  }

  nav a{
    margin:0;
    font-size:18px;
  }

  .cinematic-effects{
    height:135px;
    overflow:hidden;
  }

  .cross-wire{
    height:70px;
    border-bottom:2px solid rgba(255,150,0,.75);
  }

  .wire-one{
    top:-35px;
  }

  .wire-two{
    top:-20px;
  }

  .h-bulb{
    width:55px;
    height:80px;
  }

  .b1{left:3%; top:6px;}
  .b2{left:28%; top:22px;}
  .b3{left:52%; top:15px;}
  .b4{left:72%; top:30px;}
  .b5{left:88%; top:22px;}

  .hero{
    width:100%;
    height:auto;
    min-height:650px;
    padding:0;
    background-image:
      linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
      url("images/hero-mobile.png");
    background-size:cover;
    background-position:center top;
  }

  .hero-content{
    display:none;
  }

  .food-ticker{
    width:100%;
  }

  .ticker-track span{
    font-size:17px;
    margin-right:45px;
  }

  .cinema-border{
    width:88%;
    margin:45px auto;
    padding:18px;
    min-height:180px;

    overflow:visible;
    margin-bottom:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:22px;
    border:3px solid #ffb300;

    position:relative;
} 

  .cinema-border::before{
    inset:-18px;
    padding:18px;
    border-radius:30px;
    background:
      radial-gradient(circle,
      #fff7a8 0 20%,
      #ffb300 28%,
      #ff6a00 45%,
      transparent 55%)
      0 0 / 32px 32px;
  }

  .cinema-border h2{
    font-size:42px;
    line-height:1.1;
    text-align:center;

    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    margin:0 auto;

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

  .menu-section{
    padding:60px 15px;
  }

  .menu-container{
    align-items:center;
  }

  .card{
    width:92%;
    max-width:360px;
    margin:0 auto;
  }

  .chicken3d-section h2,
  .title3d{
    font-size:38px;
    text-align:center;
  }

  .chicken3d-section p,
  .subtitle3d{
    font-size:17px;
    text-align:center;
  }

  .model-box,
  .viewer-box{
    width:92%;
    height:430px;
  }

}

.wa-btn{
    position:fixed;
    right:18px;
    bottom:18px;

    width:62px;
    height:62px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;
    text-decoration:none;

    box-shadow:0 0 20px rgba(37,211,102,.6);

    z-index:9999;

    animation:waPulse 2s infinite;
}

@keyframes waPulse{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }
}

nav a{
  position:relative;
  color:white;
  transition:.3s ease;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:3px;
  background:#ff6a00;
  box-shadow:
    0 0 8px #ff6a00,
    0 0 18px orange;
  transition:.3s ease;
}

nav a:hover{
  color:#ff6a00;
  text-shadow:
    0 0 8px #ff6a00,
    0 0 18px orange;
}

nav a:hover::after{
  width:100%;
}

.neon-heading{
    font-size:60px;
    text-align:center;
    font-weight:900;
    text-transform:uppercase;

    text-shadow:
    0 0 10px rgba(255,120,0,.7),
    0 0 25px rgba(255,120,0,.9),
    0 0 40px rgba(255,120,0,.7);
}

.hungry-title{
    text-align:center;
    font-size:70px;
    font-weight:900;
    line-height:1.1;

    text-shadow:
    0 0 10px rgba(255,120,0,.8),
    0 0 25px rgba(255,120,0,.9),
    0 0 45px rgba(255,120,0,.8);
}

@media(max-width:768px){

.featured-title,
.neon-heading,
.hungry-title{
    font-size:42px;
}

}

.disabled-order-btn {
    opacity: 0.7;
    cursor: not-allowed;
}

.disabled-order-btn:hover {
    transform: none;
}

.crispy-section{
    text-align: center;
    padding: 80px 20px;
    background: black;
}

.crispy-title{
    font-size: 55px;
    font-family: 'Anton', sans-serif;
    margin-bottom: 15px;
    color: white;

    /* Neon Orange Border Effect */
    -webkit-text-stroke: 2px #ff8800;

    /* Neon Glow */
    text-shadow:
        0 0 8px #ff8800,
        0 0 15px #ff8800,
        0 0 30px #ff6600;
}
.crispy-text{
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.crispy-image-box img{
    width: 900px;
    max-width: 90%;
    border-radius: 20px;
    border: 2px solid orange;
    box-shadow: 0 0 30px orange;
}

.coming-soon-btn{
    background: #00ff66;
    color: black;
    border: 2px solid #00ff66;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 18px;
    cursor: not-allowed;

    /* Neon Glow */
    box-shadow:
        0 0 10px #00ff66,
        0 0 20px #00ff66,
        0 0 40px #00ff66;

    transition: 0.3s ease;
}

.coming-soon-btn:hover{
    transform: scale(1.05);

    box-shadow:
        0 0 20px #00ff66,
        0 0 40px #00ff66,
        0 0 60px #00ff66;
}

@media (max-width: 768px) {

    .crispy-title{
        font-size: 29px;
        line-height: 1.2;
        text-align: center;
        padding: 0 15px;
    }

    .small-tagline{
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .crispy-image-box img{
        width: 90%;
        max-width: 350px;
    }

}