:root{
  --gold:#d4af37;
  --gold-light:#f5d76e;
  --black:#080808;
  --white:#fff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Cairo',sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
}

.topbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 6%;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(212,175,55,.25);
  transition:background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.topbar.scrolled{
  box-shadow:0 8px 30px rgba(0,0,0,.45);
  border-bottom-color:rgba(212,175,55,.4);
}

.brand img{
  height:58px;
  transition:transform .4s ease;
}

.brand:hover img{
  transform:scale(1.05);
}

.nav-links{
  display:flex;
  gap:24px;
}

.nav-links a{
  position:relative;
  color:white;
  text-decoration:none;
  font-weight:800;
  transition:color .3s ease;
  padding-bottom:4px;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .35s ease;
}

.nav-links a:hover{
  color:var(--gold);
}

.nav-links a:hover::after{
  transform:scaleX(1);
}

.menu-toggle{
  display:none;
  background:none;
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:24px;
  padding:5px 12px;
  border-radius:10px;
  cursor:pointer;
  transition:background .3s ease, color .3s ease, transform .2s ease;
}

.menu-toggle:hover{
  background:var(--gold);
  color:#000;
}

.menu-toggle:active{
  transform:scale(.92);
}

.hero{
  min-height:100vh;
  background:url("assets/hero.jpg") center/cover no-repeat;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero-shade{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.62),rgba(0,0,0,.94));
}

.hero-content{
  position:relative;
  z-index:2;
  padding:20px;
}

.hero-logo{
  width:280px;
  max-width:85%;
  filter:drop-shadow(0 0 22px rgba(212,175,55,.35));
  margin-bottom:22px;
  animation:floatLogo 5s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

@keyframes floatLogo{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

@keyframes glowPulse{
  0%,100%{ filter:drop-shadow(0 0 22px rgba(212,175,55,.35)); }
  50%{ filter:drop-shadow(0 0 34px rgba(212,175,55,.6)); }
}

.eyebrow{
  color:var(--gold-light);
  font-weight:800;
  margin-bottom:12px;
  opacity:0;
  animation:fadeUp .8s ease forwards;
  animation-delay:.15s;
}

.hero h1{
  font-size:54px;
  color:var(--gold);
  margin-bottom:12px;
  opacity:0;
  animation:fadeUp .8s ease forwards;
  animation-delay:.3s;
}

.hero-text{
  font-size:20px;
  max-width:620px;
  margin:0 auto 28px;
  color:#eee;
  opacity:0;
  animation:fadeUp .8s ease forwards;
  animation-delay:.45s;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp .8s ease forwards;
  animation-delay:.6s;
}

@keyframes fadeUp{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}

.primary-btn,
.secondary-btn,
.contact-grid a{
  display:inline-block;
  padding:13px 32px;
  border-radius:50px;
  text-decoration:none;
  font-weight:900;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.primary-btn,
.contact-grid a{
  background:var(--gold);
  color:#000;
}

.primary-btn:hover,
.contact-grid a:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 26px rgba(212,175,55,.35);
  background:var(--gold-light);
}

.secondary-btn{
  color:white;
  border:1px solid var(--gold);
}

.secondary-btn:hover{
  transform:translateY(-3px);
  background:rgba(212,175,55,.12);
  color:var(--gold-light);
}

.about,
.menu-section,
.contact{
  padding:90px 6%;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 55px;
}

.section-heading span{
  color:var(--gold);
  font-weight:900;
  letter-spacing:2px;
}

.section-heading h2{
  font-size:42px;
  margin:10px 0;
}

.section-heading p{
  color:#ccc;
  font-size:18px;
}

.category-tabs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:18px;
  margin-bottom:35px;
  scrollbar-width:thin;
}

.category-tabs button{
  flex:0 0 auto;
  border:1px solid rgba(212,175,55,.4);
  background:rgba(255,255,255,.06);
  color:white;
  padding:10px 18px;
  border-radius:50px;
  font-family:'Cairo',sans-serif;
  font-weight:800;
  cursor:pointer;
  transition:background .3s ease, color .3s ease, transform .25s ease, border-color .3s ease;
}

.category-tabs button:hover{
  border-color:var(--gold);
  transform:translateY(-2px);
}

.category-tabs button.active{
  background:var(--gold);
  color:#000;
  transform:translateY(-2px);
}

.menu-category{
  min-height:520px;
  margin-bottom:65px;
  border-radius:28px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  position:relative;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
  transition:box-shadow .4s ease;
}

.menu-category::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.67),rgba(0,0,0,.3));
}

.category-content{
  position:relative;
  z-index:2;
  max-width:760px;
  padding:55px;
}

.category-content h3{
  color:var(--gold);
  font-size:40px;
  margin-bottom:28px;
}

.items{
  display:grid;
  gap:13px;
}

.item{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:14px 18px;
  background:linear-gradient(90deg,rgba(255,255,255,.12),rgba(255,255,255,.06));
  border:1px solid rgba(212,175,55,.35);
  border-radius:16px;
  backdrop-filter:blur(8px);
  transition:transform .3s ease, border-color .3s ease, background .3s ease;
  opacity:0;
  transform:translateY(14px);
  animation:itemIn .6s ease forwards;
}

.item:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  background:linear-gradient(90deg,rgba(255,255,255,.16),rgba(255,255,255,.08));
}

@keyframes itemIn{
  to{ opacity:1; transform:translateY(0); }
}

.item-name{
  font-weight:900;
}

.price{
  color:var(--gold-light);
  font-weight:900;
  white-space:nowrap;
}

.sub-item{
  font-size:13px;
  font-style:italic;
  color:var(--gold-light);
  opacity:.86;
  margin-top:5px;
  line-height:1.5;
}

.contact{
  background:#0d0d0d;
}

.contact-grid{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.whatsapp-float{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:1001;
  background:#25D366;
  color:white;
  padding:14px 22px;
  border-radius:50px;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 0 0 0 rgba(37,211,102,.55);
  animation:waPulse 2.6s ease-in-out infinite;
  transition:transform .3s ease;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow:0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

footer{
  text-align:center;
  padding:28px 15px;
  background:#050505;
  color:#aaa;
}

.footer-credit{
  margin-top:12px;
  font-size:14px;
  color:rgba(255,255,255,.65);
}

.footer-credit a{
  color:var(--gold);
  text-decoration:none;
  font-weight:800;
  transition:color .3s ease;
}

.footer-credit a:hover{
  color:var(--gold-light);
}

.reveal{
  opacity:0;
  transform:translateY(25px);
  transition:opacity .8s ease, transform .8s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:768px){
  .brand img{
    height:44px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:5%;
    right:5%;
    display:none;
    flex-direction:column;
    background:rgba(0,0,0,.95);
    border:1px solid rgba(212,175,55,.35);
    border-radius:18px;
    padding:18px;
    text-align:center;
    opacity:0;
    transform:translateY(-10px);
    transition:opacity .3s ease, transform .3s ease;
  }

  .nav-links.open{
    display:flex;
    opacity:1;
    transform:translateY(0);
  }

  .hero h1{
    font-size:35px;
  }

  .hero-text{
    font-size:16px;
  }

  .section-heading h2{
    font-size:32px;
  }

  .menu-category{
    min-height:auto;
  }

  .menu-category::before{
    background:rgba(0,0,0,.78);
  }

  .category-content{
    padding:35px 20px;
  }

  .category-content h3{
    font-size:31px;
  }

  .item{
    font-size:15px;
  }
}

@media(prefers-reduced-motion:reduce){
  *{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}
