:root {
  --color-bg: #1a1a1a;
  --color-gold: #d4af37;
  --color-white: #ffffff;
  --color-text-muted: #cccccc;
  --color-overlay: rgba(0, 0, 0, 0.7);
  --glass-bg: rgba(26, 26, 26, 0.85);
  --glass-border: rgba(212, 175, 55, 0.1);
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Cinzel', serif;
  /* Futuristic yet classic feel */
  --transition-fast: 0.3s ease;
  --spacing-section: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-gold {
  color: var(--color-gold);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: var(--transition-fast);
}

.btn:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.5rem 0;
  /* Reduced vertical padding */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  /* Adjust to hang nicely */
  z-index: 1002;
  margin: 0;
}

/* Logo "Under Header" Effect */
.logo-center img {
  height: 150px;
  /* Increased to match reference */
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.logo-center:hover img {
  transform: scale(1.05);
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-gold);
  transition: width 0.3s;
}

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

.nav-cta {
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-gold);
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(var(--color-overlay), var(--color-overlay)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.hero-content h1 span {
  color: var(--color-gold);
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

/* Highlights */
.highlights {
  padding: var(--spacing-section) 0;
  background: #111;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.highlight-card {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.highlight-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

/* About Preview / Hours */
.hours-section {
  padding: var(--spacing-section) 0;
  background: var(--color-bg);
  text-align: center;
}

.hours-list {
  margin-top: 2rem;
  display: inline-block;
  text-align: left;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  width: 300px;
  border-bottom: 1px solid #333;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}

/* Menu Page & General Page Spacing */
.menu-section,
.page-spacing {
  padding: 14rem 0 4rem;
  /* Increased top padding to clear the 150px hanging logo */
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.menu-table tr {
  border-bottom: 1px solid #333;
}

.menu-table td {
  padding: 1rem 0;
}

.menu-table .price {
  text-align: right;
  color: var(--color-gold);
  font-weight: bold;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}

/* Footer */
footer {
  background: #111;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid #333;
}

.social-icons {
  margin: 1.5rem 0;
}

.social-icons a {
  font-size: 1.2rem;
  margin: 0 0.5rem;
  color: var(--color-white);
}

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

/* Animation Classes */
.fade-up {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
    z-index: 1001;
    /* Above nav menu */
  }

  .nav-cta {
    display: none;
    /* Hide button on mobile menu for simplicity, could add inside links */
  }

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

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

/* Google Map Dark Mode */
.map-container iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
  -webkit-filter: grayscale(100%) invert(92%) contrast(83%);
  border: 1px solid var(--color-gold);
  border-radius: 8px;
}

/* Gallery Section Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  /* Responsive columns */
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 350px;
  border: 1px solid #333;
  /* Dark border initially */
  cursor: pointer;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  display: block;
}

/* Hover Effects */
.gallery-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  /* Gold glow */
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Overlay Styles */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Semi-transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--color-gold);
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }

  .gallery-item {
    height: 300px;
    /* Slightly smaller on mobile */
  }
}

/* Menu Revamp Styles */

:root {
  --font-heading-oswald: 'Oswald', sans-serif;
}

.menu-section {
  background-color: #121212;
  /* Deep Dark Background */
}

.section-header h1 {
  font-family: var(--font-heading-oswald);
  letter-spacing: 2px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 Columns on Desktop */
  gap: 4rem 3rem;
  /* Row gap, Col gap */
  margin-top: 3rem;
}

.category-title {
  font-family: var(--font-heading-oswald);
  font-size: 1.8rem;
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  color: var(--color-white);
}

.service-name {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  background-color: #121212;
  /* Matches bg to hide dots behind text if needed, but here we use flex spacer */
  padding-right: 0.5rem;
}

/* Leader Line Effect */
.menu-item::after {
  content: '';
  flex-grow: 1;
  border-bottom: 1px dotted #555;
  /* Subtle dots */
  margin: 0 0.5rem;
  position: relative;
  top: -5px;
  /* Visual alignment */
  opacity: 0.6;
}

/* For complex items, we handle structure differently */
.menu-item.has-desc::after {
  display: none;
  /* Disable auto leader for complex items if it messes up layout */
}

/* Re-implement leader line for complex items purely via flex if simple ::after fails, 
   but for simplicity, let's try a different approach for standard items */

/* Better Leader Line Approach */
.menu-item {
  display: flex;
  align-items: baseline;
}

.service-info {
  display: flex;
  flex-direction: column;
}

.service-desc {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  text-transform: none;
  margin-top: 0.2rem;
}

.menu-item .service-name {
  padding-right: 10px;
  background: #121212;
}

.menu-item .service-price {
  font-weight: bold;
  color: var(--color-gold);
  font-size: 1.1rem;
  background: #121212;
  padding-left: 10px;
}

/* The Dots Spacer */
.menu-item::before {
  content: '';
  flex-grow: 1;
  order: 2;
  /* Place between name and price */
  border-bottom: 1px dotted #555;
  margin: 0 5px;
  position: relative;
  bottom: 5px;
}

/* Adjust order for flex children */
.menu-item .service-name,
.menu-item .service-info {
  order: 1;
}

.menu-item .service-price {
  order: 3;
}

.badge-gold {
  background-color: var(--color-gold);
  color: #121212;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 10px;
  font-weight: bold;
  font-family: var(--font-primary);
}

/* Floating Booking Button */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-gold);
  color: #000;
  font-family: var(--font-heading-oswald);
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  background-color: #f0c54e;
}

/* Mobile Responsiveness for Menu */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
    /* 1 Column on tablet/mobile */
    gap: 3rem;
  }

  .floating-btn {
    bottom: 20px;
    right: 20px;
    /* Still floating, but slightly adjusted */
    width: calc(100% - 40px);
    /* Full width style on mobile or just centered? Let's keep it button style but prominent */
    text-align: center;
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }

  .floating-btn:hover {
    transform: translateX(50%) translateY(-5px);
  }
}