/* =========================
   LUNA PREMIUM RESTAURANT
========================= */

:root{
  --gold:#c6a73c;
  --gold-light:#e6c86e;
  --dark:#0e0e0e;
  --dark-soft:#161616;
  --text:#f5f5f5;
  --muted:#b5b5b5;
  --max:1300px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--dark);
  color:var(--text);
  line-height:1.7;
}

.container{
  width:90%;
  max-width:var(--max);
  margin:auto;
}

/* ================= NAV ================= */

.nav{
  position:fixed;
  width:100%;
  top:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(10px);
  z-index:1000;
  padding:25px 0;
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-family:'Playfair Display',serif;
  font-size:28px;
  letter-spacing:2px;
  color:var(--gold);
}

.nav-links a{
  color:white;
  margin-left:35px;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:var(--gold);
}

.nav-cta{
  background:var(--gold);
  padding:10px 20px;
  border-radius:6px;
  color:#111 !important;
}

/* ================= HERO ================= */

.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('images/restaurant-hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
}

.hero-content{
  max-width:900px;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:72px;
  margin-bottom:25px;
}

.hero p{
  font-size:20px;
  color:var(--muted);
  margin-bottom:40px;
}

.btn-primary{
  display:inline-block;
  padding:16px 36px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#111;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(198,167,60,.4);
}

/* ================= SECTIONS ================= */

.section{
  padding:140px 0;
}

.section h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  margin-bottom:30px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-image{
  height:500px;
  background:url('images/restaurant-interior.jpg') center/cover no-repeat;
  border-radius:12px;
}

/* ================= DARK FEATURE SECTION ================= */

.dark{
  background:var(--dark-soft);
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:60px;
  text-align:center;
}

.features-grid h3{
  font-size:24px;
  margin-bottom:10px;
  color:var(--gold);
}

/* ================= MENU ================= */

.menu{
  padding:140px 0;
}

.menu h2{
  font-size:40px;
  margin:80px 0 30px;
  font-family:'Playfair Display',serif;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
}

.menu-card{
  background:var(--dark-soft);
  padding:35px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.menu-card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
}

.menu-card h4{
  font-size:20px;
  margin-bottom:10px;
}

.menu-card span{
  color:var(--gold);
  font-weight:600;
}

/* ================= RESERVATION ================= */

.page-header{
  padding:200px 20px 80px;
  text-align:center;
}

.page-header h1{
  font-size:56px;
  font-family:'Playfair Display',serif;
}

.reservation-form{
  max-width:600px;
  margin:0 auto 140px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea{
  padding:16px;
  background:#111;
  border:1px solid rgba(255,255,255,.1);
  color:white;
  border-radius:6px;
  font-size:16px;
}

.reservation-form button{
  padding:16px;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border:none;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
}

.success-message{
  display:none;
  margin-top:10px;
  color:var(--gold);
}

/* ================= FOOTER ================= */

footer{
  padding:60px 0;
  text-align:center;
  background:#000;
  color:#777;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  .hero h1{
    font-size:42px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-image{
    height:350px;
  }

  .section{
    padding:100px 0;
  }
}
/* ================= GALLERY HERO ================= */

.gallery-hero{
  height:70vh;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
    url('images/gallery-hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
}

.gallery-hero-content{
  position:relative;
  color:white;
}

.gallery-hero h1{
  font-family:'Playfair Display',serif;
  font-size:60px;
  margin-bottom:15px;
}

.gallery-hero p{
  color:var(--muted);
  font-size:18px;
}

/* ================= GALLERY GRID ================= */

.gallery-section{
  padding:140px 0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.gallery-item{
  overflow:hidden;
  border-radius:12px;
  position:relative;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
  display:block;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* Premium hover overlay */
.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity:0;
  transition:.4s;
}

.gallery-item:hover::after{
  opacity:1;
}
