/* =============================================
   CSS Variables & Typography
============================================= */
:root {
  --primary-bg: #1a1a1a;
  --darker-bg: #121212;
  --text-color: #f5f0e8;
  --text-muted: #aaaaaa;
  --accent-gold: #c9a96e;
  --accent-gold-hover: #e0be7d;
  --accent-red: #8b2635;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: var(--font-heading);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color var(--transition-speed);
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   Utility Classes
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}

.bg-darker {
  background-color: var(--darker-bg);
}

.title-underline {
  height: 3px;
  width: 60px;
  background-color: var(--accent-gold);
  margin: 15px 0 30px 0;
}

.text-center .title-underline {
  margin: 15px auto 30px auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--accent-gold);
}

.section-description {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all var(--transition-speed);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: #000;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-text {
  color: var(--accent-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
}

.btn-text:hover {
  color: var(--accent-gold-hover);
  text-decoration: underline;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* =============================================
   Navigation
============================================= */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease;
  padding: 20px 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

nav.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-gold);
  transition: width var(--transition-speed);
}

.nav-links:hover::after,
.nav-links.active::after {
  width: 100%;
}

.social-nav {
  display: flex;
  gap: 15px;
}

.social-nav a {
  font-size: 1.2rem;
  color: var(--text-color);
}

.social-nav a:hover {
  color: var(--accent-gold);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

/* =============================================
   Hero Section
============================================= */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  /* Placeholder background */
  background:
    linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.7)), #2a2a2a;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: var(--accent-gold);
  font-size: 2rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* =============================================
   About Section
============================================= */
.layout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.location-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.about-img-real {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background-color: #2a2a2a;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* =============================================
   Menu Settings
============================================= */
.menu-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-card {
  background-color: var(--primary-bg);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-speed);
}

.menu-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
}

.menu-img {
  height: 250px;
  overflow: hidden;
}

.menu-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.menu-card:hover .menu-img-real {
  transform: scale(1.05);
}

.menu-img-placeholder {
  height: 250px;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.menu-card h3 {
  padding: 20px;
  font-size: 1.3rem;
  text-align: center;
  color: var(--accent-gold);
}

/* =============================================
   Experience / Gallery 
============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  height: 250px;
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
  z-index: 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(201, 169, 110, 0.8),
    rgba(0, 0, 0, 0.4)
  );
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   Contact / Reservation
============================================= */
.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--primary-bg);
  padding: 50px;
  border-radius: 12px;
  border: 1px solid #333;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.contact-info h2 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 2rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.cs-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* =============================================
   Footer
============================================= */
footer {
  background-color: #0a0a0a;
  border-top: 1px solid #222;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: all var(--transition-speed);
}

.footer-social a:hover {
  background-color: var(--accent-gold);
  color: #000;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: #666;
  font-size: 0.9rem;
}

/* =============================================
   Media Queries for Responsiveness
============================================= */
@media screen and (max-width: 991px) {
  .hero h1 {
    font-size: 3rem;
  }

  .layout-grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    margin-top: 20px;
  }

  .menu-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    flex-direction: column;
    background-color: rgba(18, 18, 18, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .social-nav {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cs-buttons {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .section-padding {
    padding: 60px 0;
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .subtitle {
    font-size: 1rem;
  }

  .menu-highlight-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
