:root {
  --dark: #111;
  --gold: #c8a96a;
  --light: #ffffff;
  --gray: #f4f4f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--light);
  color: #333;
  scroll-behavior: smooth;
}

/* ================= HEADER ================= */

.header {
  background: var(--dark);
  color: var(--light);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--gold);
}

.navbar {
  display: flex;
  gap: 25px;
}

.navbar a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
}

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

.hamburger {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  color: var(--light);
  cursor: pointer;
}

/* ================= HERO ================= */

.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("https://images.unsplash.com/photo-1555992336-03a23c7b20ee?auto=format&fit=crop&w=1500&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: var(--dark);
  color: var(--light);
  padding: 12px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

/* ================= SECTIONS ================= */

.section {
  padding: 70px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark);
}

.menu-section {
  background: var(--gray);
}

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

.menu-column h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* ================= RESERVATION ================= */

.reservation-section {
  background: var(--light);
}

.reservation-container {
  max-width: 500px;
  margin: auto;
  position: relative;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.booking-form input,
.booking-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ================= CONFIRMATION CARD ================= */

.confirmation-card {
  display: none;
  padding: 30px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #fff;
  margin-top: 20px;
  animation: fadeIn 0.5s ease forwards;
}

.confirmation-card h3 {
  color: var(--gold);
}

.confirmation-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */

.footer {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ================= ANIMATION ================= */

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

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .navbar {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .navbar.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}
