/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  line-height: 1.6;

  background: url('../images/hero.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* DARK OVERLAY */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: -1;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
  background: rgba(0,0,0,0.9);

  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar h1 {
  font-family: 'Playfair Display', serif;
  color: gold;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: gold;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 60px; /* avoid navbar overlap */
}

.hero-content h1 {
  font-size: 3.5rem;
  color: gold;
}

.hero-content p {
  margin: 15px 0;
  opacity: 0.85;
}

/* BUTTON */
.btn, button {
  background: gold;
  color: black;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover, button:hover {
  background: #ffd700;
  transform: scale(1.05);
}

/* ===== MENU ===== */
.menu {
  padding: 80px 40px;
  text-align: center;
  background: transparent;
}

.menu h2 {
  color: gold;
}

/* GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ===== MENU CARDS (WIDGET STYLE) ===== */
.card {
  position: relative;
  height: 260px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
}

/* BACKGROUND IMAGE */
.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
}

/* DARK GRADIENT */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  z-index: 1;
}

/* TEXT */
.card-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 2;
  transition: 0.4s ease;
}

.card-content h4 {
  margin: 0;
  color: gold;
}

.card-content p {
  opacity: 0;
  font-size: 0.9rem;
  margin: 10px 0;
  transform: translateY(10px);
  transition: 0.4s;
}

.card-content span {
  color: white;
  font-weight: bold;
}

/* HOVER EFFECT */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255,215,0,0.25);
}

.card:hover .card-bg {
  transform: scale(1.1);
}

.card:hover .card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CATEGORY ===== */
.menu-category {
  margin-top: 50px;
  text-align: left;
}

.menu-category h3 {
  color: gold;
  margin-bottom: 10px;
}

/* ===== RESERVATION ===== */
.reservation {
  padding: 80px 20px;
  text-align: center;
  background: transparent;
}

/* GLASS FORM */
.reservation form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  display: inline-block;
}

/* INPUTS */
form input {
  width: 300px;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.9);
  margin-top: 40px;
}

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

  .hero-content h1 {
    font-size: 2.2rem;
  }

  form input {
    width: 90%;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}
