/* ============================================
   TAKRI - Modern Restaurant Design
   Contemporary Culinary Experience
   ============================================ */

/* CSS Variables - Modern Palette */
:root {
  /* Primary Colors */
  --primary-dark: #0f0f0f;
  --primary-medium: #1a1a1a;
  --primary-light: #2a2a2a;
  
  /* Accent Colors */
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8941f;
  --accent-coral: #ff6b6b;
  --accent-sage: #87a96b;
  
  /* Neutral Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --surface-light: rgba(255, 255, 255, 0.05);
  --surface-medium: rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.25);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--primary-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-medium);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

/* ============================================
   Modern Navigation
   ============================================ */
.navbar {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-smooth);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(25px);
  padding: var(--space-xs) 0;
  border-bottom-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-smooth);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.navbar-toggler {
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: var(--space-xs);
  transition: all var(--transition-smooth);
}

.navbar-toggler:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm) !important;
  color: var(--text-primary) !important;
  position: relative;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold) !important;
}

/* ============================================
   Modern Hero Section
   ============================================ */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-spotlight-bg {
  position: absolute;
  inset: 0;
  background-image: url('img7.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  z-index: 1;
}

.hero-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    transparent 0%,
    transparent 65%,
    rgba(15, 15, 15, 0.2) 75%,
    rgba(15, 15, 15, 0.5) 85%,
    rgba(15, 15, 15, 0.8) 95%,
    rgba(15, 15, 15, 0.9) 100%
  );
  z-index: 2;
  pointer-events: none;
  transition: background 0.3s ease-out;
  mix-blend-mode: multiply;
}

/* Mobile spotlight effect */
@media (max-width: 768px) {
  .hero-spotlight-overlay {
    background: radial-gradient(
      circle 220px at var(--mouse-x, 50%) var(--mouse-y, 50%),
      transparent 0%,
      transparent 55%,
      rgba(15, 15, 15, 0.2) 65%,
      rgba(15, 15, 15, 0.5) 75%,
      rgba(15, 15, 15, 0.8) 90%,
      rgba(15, 15, 15, 0.9) 100%
    );
  }
}

@media (max-width: 480px) {
  .hero-spotlight-overlay {
    background: radial-gradient(
      circle 160px at var(--mouse-x, 50%) var(--mouse-y, 50%),
      transparent 0%,
      transparent 50%,
      rgba(15, 15, 15, 0.2) 60%,
      rgba(15, 15, 15, 0.5) 75%,
      rgba(15, 15, 15, 0.85) 90%,
      rgba(15, 15, 15, 0.9) 100%
    );
  }
}

.hero-bg-modern {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.4);
  transform: scale(1.1);
  transition: transform var(--transition-slow);
}

.hero-modern:hover .hero-bg-modern {
  transform: scale(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.8) 0%,
    rgba(15, 15, 15, 0.6) 50%,
    rgba(212, 175, 55, 0.2) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 40%; left: 60%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 30%; animation-delay: 3s; }
.particle-5 { top: 30%; left: 90%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-content-modern {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--surface-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
  transition: all var(--transition-smooth);
}

.hero-badge:hover {
  background: var(--surface-medium);
  transform: translateY(-2px);
}

.hero-title-modern {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.title-main {
  display: block;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-modern {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-dark);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
  color: var(--primary-dark);
}

.btn-secondary-modern {
  background: transparent;
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--text-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

.btn-secondary-modern:hover {
  background: var(--text-primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-scroll-modern {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   Modern Section Styles
   ============================================ */
.section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* ============================================
   Modern About Section
   ============================================ */
.culture-section {
  background: var(--primary-medium);
}

.culture-img-single {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-smooth);
}

.culture-img-single:hover {
  transform: translateY(-5px);
}

.culture-img-single img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ============================================
   Modern Dham Section
   ============================================ */
.dham-section {
  background: var(--primary-dark);
}

.dham-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-smooth);
}

.dham-img-wrap:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}

.dham-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   Menu Section with Simple Right-to-Left Slide
   ============================================ */
.menu-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 2;
}

.menu-card {
  position: relative;
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  transform: translateX(100px);
  opacity: 0;
}

/* Simple Right-to-Left Slide In Animation */
.menu-card.slide-in {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.6s ease-out;
}

/* Staggered delays for sequential animation */
.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; }
.menu-card:nth-child(4) { transition-delay: 0.4s; }
.menu-card:nth-child(5) { transition-delay: 0.5s; }
.menu-card:nth-child(6) { transition-delay: 0.6s; }

.menu-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(15, 15, 15, 0.7) 100%
  );
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  padding: var(--space-md);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
}

.menu-card:hover h3 {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-sm);
  }
  
  .menu-card-img {
    height: 180px;
  }
  
  .menu-card {
    transform: translateX(50px);
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .menu-card-img {
    height: 160px;
  }
  
  .menu-card {
    transform: translateX(30px);
  }
}

/* ============================================
   Blog Page Styles
   ============================================ */
.blog-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.blog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.blog-header-content {
  position: relative;
  z-index: 2;
}

.blog-category {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.blog-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.blog-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-date::before {
  content: '📅';
  margin-right: var(--space-xs);
}

.blog-reading-time::before {
  content: '⏱️';
  margin-right: var(--space-xs);
}

.blog-article {
  padding: var(--space-xl) 0;
  background: var(--primary-dark);
}

.blog-content {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
}

.blog-hero-image {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blog-hero-image:hover img {
  transform: scale(1.02);
}

.blog-intro {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-intro .lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.blog-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-md) 0;
  position: relative;
  padding-left: var(--space-md);
}

.blog-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.blog-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.blog-conclusion {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin: var(--space-xl) 0;
}

.blog-conclusion p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-xl) 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-tag {
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

.blog-tag:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.author-bio {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.author-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Related Posts */
.related-posts {
  padding: var(--space-xl) 0;
  background: var(--primary-medium);
}

.related-posts-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-post-card {
  background: var(--surface-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.related-post-image {
  height: 200px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-post-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.related-post-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  flex: 1;
}

.read-more {
  color: var(--accent-gold);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.read-more:hover {
  color: var(--accent-gold-dark);
}

/* Blog CTA */
.blog-cta {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  text-align: center;
}

.blog-cta h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.blog-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-header {
    padding: calc(80px + var(--space-lg)) 0 var(--space-lg) 0;
  }
  
  .blog-content {
    padding: var(--space-lg);
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
    padding-left: var(--space-sm);
  }
  
  .blog-content p {
    font-size: 1rem;
  }
  
  .blog-intro .lead {
    font-size: 1.1rem;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .blog-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .blog-content {
    padding: var(--space-md);
  }
  
  .blog-meta {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  
  .blog-tags {
    justify-content: center;
  }
}

/* ============================================
   Menu Popup Styles
   ============================================ */
.menu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}

.menu-popup.show {
  display: flex;
}

.menu-popup-content {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--accent-gold);
  position: relative;
  animation: slideUp 0.4s ease-out;
}

.menu-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.menu-popup-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-smooth);
  padding: var(--space-xs);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-popup-close:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

.menu-popup-body {
  text-align: center;
}

.menu-popup-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  animation: bounce 2s ease-in-out infinite;
}

.menu-popup-message {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.menu-popup-submessage {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.menu-popup-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-popup {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-dark);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-primary-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--primary-dark);
}

.btn-secondary-popup {
  background: transparent;
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--text-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-secondary-popup:hover {
  background: var(--text-primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-popup-content {
    width: 95%;
    padding: var(--space-lg);
  }
  
  .menu-popup-header h3 {
    font-size: 1.3rem;
  }
  
  .menu-popup-message {
    font-size: 1.1rem;
  }
  
  .menu-popup-submessage {
    font-size: 0.95rem;
  }
  
  .menu-popup-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .menu-popup-content {
    width: 98%;
    padding: var(--space-md);
  }
  
  .menu-popup-header h3 {
    font-size: 1.2rem;
  }
  
  .menu-popup-icon {
    font-size: 2.5rem;
  }
}

/* ============================================
   Modern Reservation Section
   ============================================ */
.reservation-section {
  position: relative;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.reservation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(212, 175, 55, 0.1));
}

.reservation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.reservation-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.reservation-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* ============================================
   Modern Gallery Section
   ============================================ */
.gallery-section {
  background: var(--primary-medium);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* Gallery Smooth Slide Animation */
.gallery-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: smoothSlideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes smoothSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger delays for gallery items */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-smooth);
    aspect-ratio: 1;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ============================================
   Modern Testimonials Section
   ============================================ */
.testimonials-section {
  background: var(--primary-dark);
}

.testimonial-card {
  background: var(--surface-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.testimonial-date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-rating {
  margin-bottom: var(--space-md);
}

.star-rating {
  font-size: 1.2rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

/* ============================================
   Modern Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface-light);
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

/* ============================================
   Right-to-Left Animations
   ============================================ */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRightSmooth {
  from {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes slideInFromLeftSmooth {
  from {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes slideInFromRightDelayed {
  0% {
    opacity: 0;
    transform: translateX(120px);
  }
  50% {
    opacity: 0.7;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeftDelayed {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Classes */
.slide-in-right {
  animation: slideInFromRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-left {
  animation: slideInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right-smooth {
  animation: slideInFromRightSmooth 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left-smooth {
  animation: slideInFromLeftSmooth 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right-delayed {
  animation: slideInFromRightDelayed 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-left-delayed {
  animation: slideInFromLeftDelayed 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered animations for multiple elements */
.slide-in-right-stagger-1 {
  animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  opacity: 0;
}

.slide-in-right-stagger-2 {
  animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  opacity: 0;
}

.slide-in-right-stagger-3 {
  animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  opacity: 0;
}

.slide-in-left-stagger-1 {
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  opacity: 0;
}

.slide-in-left-stagger-2 {
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  opacity: 0;
}

.slide-in-left-stagger-3 {
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  opacity: 0;
}

/* Scroll-triggered animations */
.slide-in-right-scroll {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left-scroll {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hover slide effects */
.slide-on-hover-right {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-on-hover-right:hover {
  transform: translateX(10px);
}

.slide-on-hover-left {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-on-hover-left:hover {
  transform: translateX(-10px);
}

/* Continuous slide animations */
@keyframes continuousSlideRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes continuousSlideLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.continuous-slide-right {
  animation: continuousSlideRight 20s linear infinite;
}

.continuous-slide-left {
  animation: continuousSlideLeft 20s linear infinite;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

/* ============================================
   Modern Responsive Design
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3rem;
  }

  .navbar {
    padding: var(--space-xs) 0;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: var(--space-xs) var(--space-sm) !important;
  }

  .hero-title-modern {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .title-sub {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .section-text {
    font-size: 1rem;
  }

  .culture-img-single img,
  .dham-img-wrap img {
    height: 300px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }

  .testimonial-card {
    padding: var(--space-md);
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: -50px;
  }

  .lightbox-next {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .reservation-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

/* ============================================
   Modern Utility Classes
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: var(--surface-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
  transition: transform var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Modern Button Styles
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  gap: var(--space-xs);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-dark);
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  color: var(--primary-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-hero {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--primary-dark);
  padding: var(--space-md) var(--space-lg);
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.btn-hero:hover {
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
  color: var(--primary-dark);
}

/* Star Animation Styles */
.stars-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: twinkle 3s ease-in-out infinite;
}

/* Individual star positions and sizes */
.star-1 { width: 3px; height: 3px; top: 10%; left: 15%; animation-delay: 0s; }
.star-2 { width: 2px; height: 2px; top: 20%; left: 80%; animation-delay: 0.5s; }
.star-3 { width: 4px; height: 4px; top: 15%; left: 45%; animation-delay: 1s; }
.star-4 { width: 2px; height: 2px; top: 30%; left: 25%; animation-delay: 1.5s; }
.star-5 { width: 3px; height: 3px; top: 25%; left: 70%; animation-delay: 2s; }
.star-6 { width: 2px; height: 2px; top: 40%; left: 10%; animation-delay: 2.5s; }
.star-7 { width: 3px; height: 3px; top: 35%; left: 60%; animation-delay: 0.3s; }
.star-8 { width: 4px; height: 4px; top: 45%; left: 85%; animation-delay: 0.8s; }
.star-9 { width: 2px; height: 2px; top: 50%; left: 30%; animation-delay: 1.3s; }
.star-10 { width: 3px; height: 3px; top: 55%; left: 75%; animation-delay: 1.8s; }
.star-11 { width: 2px; height: 2px; top: 60%; left: 20%; animation-delay: 2.3s; }
.star-12 { width: 4px; height: 4px; top: 65%; left: 50%; animation-delay: 0.6s; }
.star-13 { width: 3px; height: 3px; top: 70%; left: 90%; animation-delay: 1.1s; }
.star-14 { width: 2px; height: 2px; top: 75%; left: 35%; animation-delay: 1.6s; }
.star-15 { width: 3px; height: 3px; top: 80%; left: 65%; animation-delay: 2.1s; }
.star-16 { width: 4px; height: 4px; top: 85%; left: 15%; animation-delay: 0.9s; }
.star-17 { width: 2px; height: 2px; top: 90%; left: 40%; animation-delay: 1.4s; }
.star-18 { width: 3px; height: 3px; top: 5%; left: 55%; animation-delay: 1.9s; }
.star-19 { width: 2px; height: 2px; top: 12%; left: 95%; animation-delay: 0.4s; }
.star-20 { width: 4px; height: 4px; top: 88%; left: 78%; animation-delay: 1.7s; }

@keyframes twinkle {
  0%, 100% { 
    opacity: 0;
    transform: scale(0.5);
  }
  50% { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Shooting star animation */
.star::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
  animation: shooting 8s linear infinite;
}

.star-1::before { animation-delay: 2s; }
.star-5::before { animation-delay: 5s; }
.star-9::before { animation-delay: 1s; }
.star-13::before { animation-delay: 6s; }
.star-17::before { animation-delay: 3s; }

@keyframes shooting {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-45deg) translateX(-100px);
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-45deg) translateX(100px);
  }
  100% {
    opacity: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-title .title-line {
  display: block;
}

.hero-title .accent {
  color: var(--color-gold);
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 30px rgba(201, 162, 39, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--color-cream);
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-gold);
  color: var(--color-bg) !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-hero:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-cream-muted);
}

.scroll-indicator {
  width: 1px;
  height: 40px;
  margin: 0.5rem auto 0;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Animations */
.animate-fade-in {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: var(--color-gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-cream);
}

.section-text {
  color: var(--color-cream-muted);
  margin-bottom: 1.5rem;
}

/* ============================================
   Culture Section
   ============================================ */
.culture-section {
  background: var(--color-bg-light);
}

.culture-img-single {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.culture-img-single img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.culture-img-single:hover img {
  transform: scale(1.08);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
}

.culture-img {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.culture-img:hover img {
  transform: scale(1.05);
}

.culture-img-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 1;
}

.culture-img-2 {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 1;
}

.culture-img-3 {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 1;
}

.btn-outline-gold {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-bg) !important;
}

/* ============================================
   Dham Section (3rd Page)
   ============================================ */
.dham-section {
  background: var(--color-bg);
}

.dham-img-wrap {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  max-width: 520px;
  margin-left: auto;
}

.dham-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.dham-img-wrap:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .dham-img-wrap {
    margin-right: auto;
    margin-left: auto;
  }
}

/* ============================================
   Menu Section (4th Page)
   ============================================ */
.menu-section {
  background: var(--color-bg-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}

.menu-card-img {
  position: absolute;
  inset: 0;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 60%);
  transition: background var(--transition);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.12);
}

.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, rgba(201, 162, 39, 0.2) 100%);
}

.menu-card h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  z-index: 2;
  transition: color var(--transition), transform var(--transition);
}

.menu-card:hover h3 {
  color: var(--color-gold);
  transform: translateX(5px);
}

.btn-gold {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--color-gold);
  color: var(--color-bg) !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

/* ============================================
   Reservation Section
   ============================================ */
.reservation-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.reservation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.reservation-content {
  position: relative;
  z-index: 2;
}

.reservation-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.reservation-text {
  color: var(--color-cream-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
  background: var(--color-bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ============================================
   Instagram Section
   ============================================ */
.instagram-section {
  background: var(--color-bg);
}

.instagram-handle {
  color: var(--color-gold);
  transition: opacity var(--transition);
}

.instagram-handle:hover {
  opacity: 0.8;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-item:hover img {
  transform: scale(1.12);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
  background: var(--color-bg-light);
}

.testimonial-card {
  background: var(--color-bg);
  padding: 3rem;
  border-radius: 2px;
  border-left: 4px solid var(--color-gold);
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.star-rating {
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 0.2rem;
  text-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
  transition: all var(--transition);
}

.star-rating:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-gold);
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.8;
}

.carousel-control-prev { left: -25px; }
.carousel-control-next { right: -25px; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.rating-badge {
  padding: 0.75rem 1.5rem;
  background: var(--color-bg);
  border-radius: 2px;
  color: var(--color-cream-muted);
}

.rating-badge strong {
  color: var(--color-gold);
}

/* ============================================
   Blogs Section
   ============================================ */
.blogs-section {
  background: var(--color-bg);
}

.blog-card {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-bg-light);
  transition: transform var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.blog-card:hover .blog-card-content h3 {
  color: var(--color-gold);
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-light);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.footer-main {
  padding-bottom: 2.5rem;
}

.footer-brand {
  padding-right: 1.5rem;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  margin: 0;
  line-height: 1.5;
  max-width: 260px;
}

.footer-col {
  padding-left: 0.5rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-cream-muted);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  font-size: 0.95rem;
  color: var(--color-cream-muted);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-socials a {
  font-size: 0.9rem;
  color: var(--color-cream-muted);
}

.footer-socials a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
  margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 991px) {
  .culture-grid {
    margin-top: 2rem;
  }

  .culture-img-1 {
    aspect-ratio: 16/9;
    grid-row: 1;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  /* Reduce stars on mobile for performance */
  .star-6, .star-7, .star-8, .star-9, .star-10,
  .star-11, .star-12, .star-13, .star-14, .star-15 {
    display: none;
  }

  /* Testimonial responsive styles */
  .testimonial-card {
    padding: 2rem;
  }

  .star-rating {
    font-size: 1.2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-control-prev { left: 0; }
  .carousel-control-next { right: 0; }

  .reservation-bg {
    background-attachment: scroll;
  }

  .footer-main {
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-tagline {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col {
    padding-left: 0;
  }

  .footer-links,
  .footer-contact {
    display: inline-block;
    text-align: left;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo {
    height: 36px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .culture-img-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .culture-img-2 {
    grid-column: 1;
    grid-row: 2;
  }

  .culture-img-3 {
    grid-column: 1;
    grid-row: 3;
  }
}

/* ============================================
   Scroll: images swipe right to left
   ============================================ */
.swipe-in {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--transition-swipe), transform var(--transition-swipe);
}

.swipe-in.swipe-in-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
  }

  .swipe-in {
    transform: none;
  }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex !important;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    max-width: 650px;
    z-index: 10000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: linear-gradient(135deg, var(--color-bg) 0%, #1a1a1a 100%);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    outline: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.modal-title {
    margin-bottom: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem 2rem 2rem 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    gap: 1rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-light);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.btn-close:hover {
    background-color: rgba(212, 175, 55, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-bg);
}

.contact-details h6 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
}

.contact-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-light);
    line-height: 1.4;
}

.contact-link {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-light);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
        max-width: 95%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex !important;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid var(--color-gold);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: scale(1.1);
}

.lightbox-caption {
    color: var(--color-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Item Cursor */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}
