/* =========================
   ROOT
========================= */
:root {
  --font-base: clamp(14px, 1.2vw, 18px);
  --font-h1: clamp(34px, 6vw, 72px);
  --font-h2: clamp(26px, 4vw, 42px);

  --text-main: #f5f5f5;
  --text-light: #bdbdbd;

  --primary: #c9a66b;
  --primary-hover: #d8b57a;
  --accent: #e0b973;

  --border: #2d2d2d;
}

/* =========================
   BASE
========================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;

  font-family: Poppins, sans-serif;
  font-size: var(--font-base);

  background: #0d0d0d;
  color: var(--text-main);

  padding-top: 60px;
}

img {
  max-width: 100%;
  display: block;
}

section {
  max-width: 1400px;
  margin: auto;
  padding: 90px 5vw;
}

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

h1 {
  font-size: var(--font-h1);
}

h2 {
  text-align: center;
  font-size: var(--font-h2);
}

h2::after {
  content: "";
  display: block;

  width: 80px;
  height: 2px;

  background: var(--accent);

  margin: 18px auto 0;
}

/* =========================
   NAV
========================= */
nav {
  position: fixed;
  top: 0;
  width: 100%;

  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 20px;
  box-sizing: border-box;

  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--border);
}

nav.scrolled {
  background: rgba(10,10,10,0.98);

  box-shadow: 0 5px 25px rgba(0,0,0,0.35);
}

.logo {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;

  background: linear-gradient(90deg, #c9a66b, #f0d18a);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span {
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;

  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  display: block;

  width: 0;
  height: 2px;

  background: var(--accent);

  transition: 0.3s;

  margin-top: 4px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   BURGER
========================= */
.burger {
  width: 35px;
  height: 22px;

  display: none;
  flex-direction: column;
  justify-content: space-between;

  cursor: pointer;
}

.burger span {
  height: 3px;
  background: white;
  border-radius: 2px;

  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   HERO
========================= */
header {
  height: 90vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  position: relative;

  background:
    linear-gradient(
      rgba(0,0,0,0.72),
      rgba(0,0,0,0.82)
    ),
    url('../img/hero-restaurant.png') center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  padding: 20px;
}

.hero-subtitle {
  color: var(--accent);

  text-transform: uppercase;
  letter-spacing: 3px;

  font-size: 14px;
}

.hero-text {
  max-width: 700px;

  margin: 20px auto;

  color: #ddd;
  line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;

  padding: 14px 28px;
  border-radius: 40px;

  text-decoration: none;
  color: white;
  font-weight: 600;

  background: linear-gradient(135deg, #c9a66b, #e0b973);

  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-4px);

  background: var(--primary-hover);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}

/* =========================
   ABOUT
========================= */
.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text,
.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 24px;

  height: 420px;
  object-fit: cover;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.section-subtitle {
  color: var(--accent);

  text-transform: uppercase;
  letter-spacing: 3px;

  font-size: 14px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.9;
}

/* =========================
   MENU
========================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));

  gap: 30px;

  margin-top: 50px;
}

.menu-card {
  overflow: hidden;

  border-radius: 24px;

  background: #181818;

  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.4s;
}

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

.menu-card img {
  width: 100%;
  height: 240px;

  object-fit: cover;

  transition: 0.5s;
}

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

.menu-content {
  padding: 25px;
}

.menu-top {
  display: flex;
  justify-content: space-between;

  margin-bottom: 15px;
}

.menu-top span {
  color: var(--accent);
  font-weight: 700;
}

.menu-content p {
  color: var(--text-light);
  line-height: 1.7;
}

.menu-card:nth-child(1){
  transition-delay:0.1s;
}

.menu-card:nth-child(2){
  transition-delay:0.2s;
}

.menu-card:nth-child(3){
  transition-delay:0.3s;
}

/* =========================
   GALLERY
========================= */
.restaurant-gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  gap: 18px;
}

.restaurant-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 20px;

  cursor: pointer;

  transition: 0.4s;
}

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



@media(max-width:768px){

  .restaurant-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurant-gallery img {
    height: 180px;
  }

}

/* =========================
   REVIEWS
========================= */
.review {
  margin-top: 1rem;
  padding: 35px;

  border-radius: 24px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.4s;
}

.review:hover {
  transform: translateY(-8px);
}

.review p {
  color: #ddd;
  line-height: 1.9;
}

.review span {
  color: var(--accent);
  font-weight: 600;
}

.stars {
  color: var(--accent);

  font-size: 20px;
  letter-spacing: 3px;

  margin-bottom: 20px;
}


.google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 30px;

  padding: 14px 24px;

  border-radius: 40px;

  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.4s;
}

.google-link i {
  color: var(--accent);
}

.google-link:hover {
  transform: translateY(-4px);

  border-color: rgba(224,185,115,0.4);

  background: rgba(255,255,255,0.06);
}

/* =========================
   LOCATION
========================= */
.contact-description {
  max-width: 700px;

  margin: auto;

  text-align: center;

  color: #bbb;

  line-height: 1.8;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;

  gap: 35px;

  margin-top: 60px;
}

.map-box iframe {
  width: 100%;
  min-height: 520px;

  border: 0;
  border-radius: 28px;
}
@media(max-width:768px){

  .map-box iframe {
    min-height: 320px;
  }

}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 18px;
   transition: 0.4s;
  padding: 24px;

  border-radius: 24px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);
}

.location-card i {
  width: 55px;
  height: 55px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #c9a66b, #e0b973);

  color: white;
}

.location-card span {
  display: block;
  color: #aaa;
}

.location-card strong {
  line-height: 1.6;
}

/* =========================
   FOOTER
========================= */
footer {
  margin-top: 100px;

  padding: 80px 5vw 30px;

  background: #080808;

  border-top: 1px solid rgba(255,255,255,0.05);
}


footer a,
footer a:visited,
footer a:active,
.location-card a,
.location-card a:visited,
.location-card a:active,
.reservation-info a,
.reservation-info a:visited,
.reservation-info a:active {
  color: white;
  text-decoration: none;
}

.location-card:hover {
  transform: translateY(-5px);

  border-color: rgba(224,185,115,0.3);
}

footer a:hover,
.location-card a:hover,
.reservation-info a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));

  gap: 50px;

  max-width: 1200px;
  margin: auto;
}

.footer-grid p {
  color: #aaa;
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.05);

  color: #777;
}

/* =========================
   LIGHTBOX
========================= */
#lightbox {
  position: fixed;
  inset: 0;

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.9);

  z-index: 9999;
}

#lightbox img {
  max-width: 80%;
  max-height: 70%;

  border-radius: 10px;
}

#close,
.arrow {
  position: absolute;

  color: white;

  cursor: pointer;
}

#close {
  top: 20px;
  right: 30px;

  font-size: 40px;
}

.arrow {
  top: 50%;

  transform: translateY(-50%);

  font-size: 40px;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* =========================
   RESERVATION BUTTON
========================= */
.reservation-fixed {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 9999;

  padding: 16px 24px;
  border-radius: 40px;

  text-decoration: none;
  color: white;
  font-weight: 600;

  background: linear-gradient(135deg, #c9a66b, #e0b973);

  box-shadow: 0 10px 25px rgba(0,0,0,0.35);

  transition: 0.4s;
}

.reservation-fixed:hover {
  transform: translateY(-4px);
}

/* =========================
   POPUP
========================= */
.reservation-popup {
  position: fixed;
  inset: 0;

  display: none;
  justify-content: center;
  align-items: center;

  padding: 20px;

  background: rgba(0,0,0,0.7);

  z-index: 99999;
}

.reservation-popup.active {
  display: flex;
}

.reservation-popup-box {
  width: 100%;
  max-width: 500px;

  padding: 45px 35px;

  border-radius: 28px;

  background: #121212;

  text-align: center;

  position: relative;
}

.reservation-close {
  position: absolute;

  top: 15px;
  right: 20px;

  font-size: 34px;

  cursor: pointer;
}

.reservation-info {
  display: flex;
  flex-direction: column;

  gap: 15px;

  margin-bottom: 35px;
}

.reservation-info div {
  padding: 16px;

  border-radius: 16px;

  background: rgba(255,255,255,0.03);
}

/* =========================
   ANIMATIONS
========================= */
.fade {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOCUS
========================= */
.btn:focus,
.nav-links a:focus,
.reservation-fixed:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

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

}

@media(max-width:768px){

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    flex-direction: column;

    background: rgba(10,10,10,0.98);

    max-height: 0;
    overflow: hidden;

    transition: 0.4s;
  }

  .nav-links.active {
  max-height: 100vh;
}

  .nav-links a {
    padding: 18px 20px;
  }

  .about-grid {
    flex-direction: column;
  }

  

  .reservation-fixed {
    left: 15px;
    right: 15px;

    bottom: 15px;

    text-align: center;
  }

  section {
    padding: 60px 5vw;
  }

}