:root {
  --bg-dark: #0a0505;
  --bg-card: rgba(25, 15, 10, 0.6);
  --accent-gold: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.3);
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--accent-gold);
  line-height: 1.1;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 transparent;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(10, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.nav-toggle {
  display: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 2px;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,5,5,0.95) 0%, rgba(10,5,5,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 5.5rem;
  margin-bottom: 24px;
  color: var(--text-main);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}

/* ===== EXPERIENCE ===== */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.exp-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.exp-text strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.exp-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.exp-image img {
  width: 100%;
  display: block;
}

.glass-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

/* ===== MENU HIGHLIGHTS ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.menu-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.1);
  padding: 40px;
  border-radius: 16px;
  transition: var(--transition);
}

.menu-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.menu-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.menu-card .price {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== REVIEWS ===== */
.reviews {
  background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.05));
}

.reviews-header {
  margin-bottom: 60px;
}

.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rating-badge .stars {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.rating-badge .score {
  font-size: 1.5rem;
  font-weight: 800;
}

.rating-badge .count {
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.review-card .stars {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.review-card p {
  font-style: italic;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
}

.review-card .author {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1.1rem;
}

/* ===== VISIT ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h4 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.info-block p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.pricing-tier {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-weight: 600;
  border-radius: 4px;
  margin-top: 20px;
}

.visit-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
}

/* ===== ADVANCED FEATURES ===== */
@media (pointer: fine) {
  body, a, button, .magnetic-btn, .tilt-card {
    cursor: none;
  }
}

.custom-cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  display: none;
}

.custom-cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor, .custom-cursor-follower {
    display: block;
  }
}

.custom-cursor.hover {
  width: 10px;
  height: 10px;
  background-color: var(--text-main);
}

.custom-cursor-follower.hover {
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.1);
}

.ambient-light {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent-gold);
}

.orb-2 {
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: #ea580c;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.2); }
}

.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  will-change: transform;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    transition: 0.3s;
    border-radius: 2px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #0f0a0a;
    border-left: 1px solid rgba(245, 158, 11, 0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

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

  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-title { font-size: 3rem; }
  .experience-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid, .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2.5rem; }
  .navbar { padding: 15px 0; }
}
