/* css/style.css */
:root {
  /* Premium Dark Theme Variables */
  --bg-color: #0c0a09; /* Very dark espresso */
  --surface-color: #1c1917; /* slightly lighter surface */
  --surface-light: rgba(41, 37, 36, 0.6);
  --text-main: #f5f5f4; /* Off white / light gray */
  --text-muted: #a8a29e;
  --accent-gold: #c29b62;
  --accent-gold-hover: #dfb271;
  --border-color: rgba(194, 155, 98, 0.2);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

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

/* Typography Utility */
.font-serif {
  font-family: var(--font-serif);
}

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

h1, h2, h3, h4, .title {
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}
.no-padding-bottom { padding-bottom: 0; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-color);
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 4px 15px rgba(194, 155, 98, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--bg-color);
}

/* Glass & Card FX */
.glass-card {
  background: rgba(28, 25, 23, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.shadow-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Loader */
#loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.loader-content h1 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.loader-line {
  width: 100%;
  height: 2px;
  background-color: var(--surface-light);
  position: relative;
  overflow: hidden;
}

.loader-line::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background-color: var(--accent-gold);
  animation: loadLine 1.5s ease-in-out infinite;
}

@keyframes loadLine {
  to { left: 100%; }
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

#navbar.scrolled {
  padding: 1rem 0;
  background: rgba(12, 10, 9, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-size: 1.8rem;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  transform: scale(1.05); /* Slight scale for breathing room */
  animation: breathe 20s infinite alternate;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(12,10,9,0.3) 0%, rgba(12,10,9,0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content .title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@keyframes breathe {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin-top: 2rem;
}

.features-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

/* Menu Section */
.section-title {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.menu-category {
  padding: 3rem;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.menu-category:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 155, 98, 0.5);
}

.category-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.menu-item {
  margin-bottom: 1.5rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-main);
}

.item-price {
  color: var(--accent-gold);
  font-weight: 500;
}

.item-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Locations */
.locations-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-card {
  padding: 2.5rem;
  text-align: center;
}

.location-card h3 {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.loc-address {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.location-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  filter: grayscale(40%);
}

.hours h4 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hours ul {
  list-style: none;
  color: var(--text-muted);
}

.hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
  padding-bottom: 0.2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  height: 400px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

/* Contact */
.contact-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.contact-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent-gold);
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--surface-color);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

.copyright {
  color: #666;
  font-size: 0.8rem;
}

/* Animation Utilities */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  visibility: visible;
}

.fade-up { transform: translateY(40px); }
.fade-up.active { transform: translateY(0); }

.slide-right { transform: translateX(-50px); }
.slide-right.active { transform: translateX(0); }

.slide-left { transform: translateX(50px); }
.slide-left.active { transform: translateX(0); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .menu-grid, .locations-wrapper {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* simple mobile hide for demo */
  }
}
