body {
  font-family: 'Poppins', sans-serif;
  background: #0f0f0f;
  color: #fff;
}

/* NAVBAR */
.custom-nav {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://source.unsplash.com/1600x900/?burger-dark') center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), #000);
}

.hero .content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 600;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

/* BUTTON */
.btn-gold {
  background: #d4af37;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
}

.btn-gold:hover {
  background: #b8962e;
}

/* SECTIONS */
.section-dark {
  padding: 80px 0;
  background: #111;
}

.section-light {
  padding: 80px 0;
  background: #f8f8f8;
  color: #000;
}

/* MENU CARD */
.menu-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.menu-card:hover {
  transform: translateY(-10px);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* GALLERY */
.gallery-img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

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

/* FOOTER */
footer {
  padding: 20px;
  background: #000;
}
