{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background:#0d0d0d;
  color:#fff;
}

a{text-decoration:none}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background:#000;
}

.logo{
  font-size:24px;
  font-weight:700;
}

.nav a{
  margin:0 15px;
  color:#ccc;
}

.btn{
  background:#c9a14a;
  color:#000;
  padding:10px 20px;
  border-radius:30px;
  font-weight:600;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  padding:80px 60px;
  gap:40px;
}

.hero-text h1{
  font-size:52px;
  margin-bottom:20px;
}

.hero-text p{
  color:#bbb;
  margin-bottom:30px;
}

.hero-img img{
  width:420px;
  border-radius:20px;
}

/* MENU */
.menu{
  padding:60px;
  text-align:center;
}

.menu h2{
  font-size:36px;
  margin-bottom:40px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#111;
  padding:20px;
  border-radius:20px;
}

.card img{
  width:100%;
  border-radius:15px;
}

.card h3{
  margin:15px 0 5px;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:30px;
  color:#777;
}

/* MOBILE APP STYLE */
.mobile-nav{
  display:none;
}

/* RESPONSIVE */
@media(max-width:900px){

  .header{
    padding:15px 20px;
  }

  .nav, .header .btn{
    display:none;
  }

  .hero{
    flex-direction:column;
    padding:40px 20px 100px;
    text-align:center;
  }

  .hero-img img{
    width:100%;
  }

  .hero-text h1{
    font-size:34px;
  }

  .menu{
    padding:40px 20px 120px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  /* BOTTOM NAV */
  .mobile-nav{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#000;
    border-top:1px solid #222;
    justify-content:space-around;
    padding:10px 0;
    z-index:999;
  }

  .mobile-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
    color:#aaa;
    font-size:11px;
  }

  .mobile-nav svg{
    width:22px;
    height:22px;
    fill:#aaa;
  }

  .mobile-nav a.active,
  .mobile-nav a.active svg{
    color:#c9a14a;
    fill:#c9a14a;
  }
}
.menu-sub{
  color:#aaa;
  margin-bottom:40px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.menu-item{
  display:flex;
  gap:20px;
  background:#111;
  padding:15px;
  border-radius:18px;
  transition:.3s;
}

.menu-item:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.menu-item img{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:15px;
}

.menu-item h3{
  margin-bottom:5px;
}

.menu-item p{
  color:#999;
  font-size:14px;
}

.menu-item span{
  color:#c9a14a;
  font-weight:600;
}

/* Responsive Menu */
@media(max-width:900px){
  .menu-grid{
    grid-template-columns:1fr;
  }
}
.order-form{
  max-width:420px;
  margin:0 auto;
  background:#111;
  padding:30px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  animation:fadeUp .6s ease;
}

.order-form input,
.order-form select{
  background:#0d0d0d;
  border:1px solid #222;
  padding:14px 16px;
  border-radius:30px;
  color:#fff;
  outline:none;
}

.order-form input:focus,
.order-form select:focus{
  border-color:#c9a14a;
}

.order-form button{
  margin-top:10px;
}

/* Small animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.nav a.active{
  color:#c9a14a;
}

.mobile-nav a.active span{
  color:#c9a14a;
}
.popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.popup.show{
  opacity:1;
  pointer-events:auto;
}

.popup-box{
  background:#111;
  padding:30px;
  border-radius:20px;
  text-align:center;
  animation:scaleUp .3s ease;
}

@keyframes scaleUp{
  from{transform:scale(.8)}
  to{transform:scale(1)}
}
body{
  animation:fadePage .4s ease;
}

@keyframes fadePage{
  from{opacity:0}
  to{opacity:1}
}
.contact-cards svg{
  width:30px;
  height:30px;
  fill:#c9a14a;
  margin-bottom:10px;
}

.map{
  margin-top:40px;
  border-radius:20px;
  overflow:hidden;
}

.map iframe{
  width:100%;
  height:300px;
  border:0;
}
.add-btn{
  margin-top:8px;
  background:transparent;
  border:1px solid #c9a14a;
  color:#c9a14a;
  padding:6px 14px;
  border-radius:20px;
  cursor:pointer;
  transition:.3s;
}

.add-btn:hover{
  background:#c9a14a;
  color:#000;
}
@media(max-width:900px){
  .desktop-btn{display:none;}

  .order-fab{
    position:fixed;
    bottom:70px;
    right:20px;
    background:#c9a14a;
    color:#000;
    padding:14px 20px;
    border-radius:40px;
    font-weight:600;
    z-index:999;
  }
}
.logo{
  font-size:26px;
  font-weight:700;
  letter-spacing:1px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
}

.logo span{
  color:#c9a14a;
}

.logo .icon{
  font-size:22px;
  animation:steam 2.5s infinite ease-in-out;
}

/* subtle animation */
@keyframes steam{
  0%{transform:translateY(0)}
  50%{transform:translateY(-3px)}
  100%{transform:translateY(0)}
}
.reveal{
  opacity:0;
  transform:translateY(30px);
  animation:revealUp .8s ease forwards;
}

.delay-1{ animation-delay:.2s; }
.delay-2{ animation-delay:.4s; }

@keyframes revealUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.mobile-order-btn{
  display:none;
  background:#c9a14a;
  color:#000;
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}
@media(max-width:900px){

  .nav{
    display:none;
  }

  .desktop-btn{
    display:none;
  }

  .mobile-order-btn{
    display:inline-block;
  }

  .header{
    justify-content:space-between;
    padding:14px 20px;
  }
}

