/* ═══════════════════════════════════════════════════
   CHẢ CÁ THĂNG LONG — Premium Restaurant Website
   Design System + Component Styles
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Roboto:wght@300;400;500;700&family=Dancing+Script:wght@400;700&family=Playball&family=Cinzel:wght@700&family=Cormorant+Garamond:wght@600;700&family=M+PLUS+Rounded+1c:wght@700;800&family=Google+Sans+Flex:opsz,wght@8..144,100..1000&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --gold:           #D4A843;
  --gold-dark:      #C8944A;
  --gold-light:     #E8C97A;
  --gold-muted:     #8B7355;
  --black:          #0D0D0D;
  --charcoal:       #1A1A1A;
  --dark-gray:      #2A2A2A;
  --medium-gray:    #3A3A3A;
  --ivory:          #F5F0E8;
  --soft-white:     #E8E0D4;
  --warm-white:     #FDF8F0;
  --deep-red:       #8B2525;
  --deep-red-light: #A83232;

  /* Typography */
  --font-display:   'Google Sans Flex', 'M PLUS Rounded 1c', sans-serif;
  --font-accent:    'Dancing Script', sans-serif;
  --font-body:      'Roboto', sans-serif;

  /* Spacing */
  --section-pad:    120px;
  --container-max:  1280px;

  /* Transitions */
  --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-card:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:    0 0 30px rgba(212,168,67,0.15);
}

.alt-font {
  font-family: 'Dancing Script', sans-serif !important;
}

.playball-font {
  font-family: 'Playball', cursive !important;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  
  /* Rich Dark Ambient Background: deep charcoal-black radial glows + soft vietnamese grid pattern */
  background-color: #0b0a09;
  background-image: 
    radial-gradient(circle at 50% 10vh, #1e1b15 0%, #070706 70%),
    radial-gradient(circle at 10% 40vh, rgba(212, 168, 67, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 90% 70vh, rgba(212, 168, 67, 0.02) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,0.002) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.002) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ivory);
  letter-spacing: -0.8px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

/* ── Utility Classes ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-pad) 0;
}

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

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

/* ── Ornamental Divider ── */
.ornament {
  width: 60px;
  height: 8px;
  position: relative;
  margin: 20px auto 30px;
}

.ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 
    -20px 0 0 var(--gold), 
    -10px 0 0 var(--gold), 
     10px 0 0 var(--gold), 
     20px 0 0 var(--gold);
}

.ornament::after,
.ornament-icon {
  display: none;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: none;
  margin-bottom: 12px;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 0;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--soft-white);
  max-width: 640px;
  margin: 20px auto 0;
  opacity: 0.85;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo img {
  height: 52px;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease-smooth);
}

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

.nav-links {
  display: flex;
  align-items: center;
}

.nav-menu-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mobile-menu-actions {
  display: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
  text-transform: uppercase;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 99px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.header-cta:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease-smooth);
}

.hamburger.active {
  transform: rotate(90deg);
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.3) 35%,
    rgba(13, 13, 13, 0.5) 70%,
    rgba(13, 13, 13, 1.0) 100%
  );
  z-index: 1;
}

/* Smoke Effect */
.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
}

.smoke-particle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  filter: blur(40px);
  animation: smokeFloat 12s ease-in-out infinite;
}

.smoke-particle:nth-child(1) {
  left: 20%;
  bottom: -50px;
  animation-delay: 0s;
  animation-duration: 14s;
}

.smoke-particle:nth-child(2) {
  left: 50%;
  bottom: -80px;
  animation-delay: -4s;
  animation-duration: 16s;
  width: 400px;
  height: 400px;
}

.smoke-particle:nth-child(3) {
  left: 70%;
  bottom: -30px;
  animation-delay: -8s;
  animation-duration: 12s;
}

@keyframes smokeFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-300px) scale(1.5);
    opacity: 0.3;
  }
  90% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}

.hero-script {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: -8px;
  text-shadow: 0 2px 20px rgba(212,168,67,0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 9rem);
    font-weight: 700;
    color: var(--ivory);
    letter-spacing: -1.5px; /* Tight letter spacing */
    text-transform: none;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--soft-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent; /* Align heights including border */
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.3);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── Hero Buttons Glowing Effects ── */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.hero-actions .btn {
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.hero-actions .btn-primary {
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.35);
  animation: primaryGlow 2.5s ease-in-out infinite alternate;
}

.hero-actions .btn-outline {
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.2);
  animation: outlineGlow 2.5s ease-in-out infinite alternate;
}

.hero-actions .btn:hover {
  animation: none;
  transform: translateY(-4px);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 0 35px rgba(212, 168, 67, 0.9);
  background: var(--gold-light);
}

.hero-actions .btn-outline:hover {
  box-shadow: 0 0 35px rgba(212, 168, 67, 0.9);
  background: var(--gold);
  color: var(--black);
}

@keyframes primaryGlow {
  0% {
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.75);
  }
}

@keyframes outlineGlow {
  0% {
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.15);
  }
  100% {
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gold-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 18px; }
}

/* ═══════════════════════════════════════
   INTRO / ABOUT SECTION
   ═══════════════════════════════════════ */
.intro {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--black), transparent);
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align with left border of container */
}

.intro-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.layered-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  aspect-ratio: 9 / 14;
}

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

/* State 1: imgTop active (right), imgMiddle middle, imgBottom back (left) */
.intro-image-container.state-1 #imgTop {
  height: 100%;
  left: 24%;
  top: 0;
  z-index: 3;
  opacity: 1;
  filter: brightness(1);
}
.intro-image-container.state-1 #imgMiddle {
  height: 85%;
  left: 12%;
  top: 7.5%;
  z-index: 2;
  opacity: 0.85;
  filter: brightness(0.7);
}
.intro-image-container.state-1 #imgBottom {
  height: 70%;
  left: 0;
  top: 15%;
  z-index: 1;
  opacity: 0.65;
  filter: brightness(0.5);
}

/* State 2: imgMiddle active (right), imgBottom middle, imgTop back (left) */
.intro-image-container.state-2 #imgMiddle {
  height: 100%;
  left: 24%;
  top: 0;
  z-index: 3;
  opacity: 1;
  filter: brightness(1);
}
.intro-image-container.state-2 #imgBottom {
  height: 85%;
  left: 12%;
  top: 7.5%;
  z-index: 2;
  opacity: 0.85;
  filter: brightness(0.7);
}
.intro-image-container.state-2 #imgTop {
  height: 70%;
  left: 0;
  top: 15%;
  z-index: 1;
  opacity: 0.65;
  filter: brightness(0.5);
}

/* State 3: imgBottom active (right), imgTop middle, imgMiddle back (left) */
.intro-image-container.state-3 #imgBottom {
  height: 100%;
  left: 24%;
  top: 0;
  z-index: 3;
  opacity: 1;
  filter: brightness(1);
}
.intro-image-container.state-3 #imgTop {
  height: 85%;
  left: 12%;
  top: 7.5%;
  z-index: 2;
  opacity: 0.85;
  filter: brightness(0.7);
}
.intro-image-container.state-3 #imgMiddle {
  height: 70%;
  left: 0;
  top: 15%;
  z-index: 1;
  opacity: 0.65;
  filter: brightness(0.5);
}

.layered-img:hover {
  filter: brightness(1) !important;
  opacity: 1 !important;
}

.intro-next-btn {
  position: absolute;
  right: -10%; /* Sit partially outside the right side of the stack */
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: all 0.3s var(--ease-smooth);
  z-index: 10;
}

.intro-next-btn i {
  font-size: 1.15rem;
  margin-left: 3px; /* Align visual center of triangle */
}

.intro-next-btn:hover {
  background: var(--gold-light);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(212,168,67,0.4);
}

@media (max-width: 768px) {
  .intro-next-btn {
    left: 25.5%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .intro-next-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.intro-text p {
  color: var(--soft-white);
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.9;
  font-size: 1.02rem;
  text-transform: none;
}

.intro-text .btn {
  margin-top: 24px;
}

/* ═══════════════════════════════════════
   MENU HIGHLIGHT SECTION
   ═══════════════════════════════════════ */
.menu-highlight {
  position: relative;
  background-image: linear-gradient(rgba(11, 10, 9, 0.92), rgba(11, 10, 9, 0.92)), url('../assets/images/banner-cooking.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Slider Coverflow Styles */
.menu-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-slider {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 1000px;
}

.menu-slide {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.menu-slide .menu-card {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  pointer-events: none;
}

.menu-slide.active .menu-card {
  pointer-events: auto;
}

/* Center slide */
.menu-slide.active {
  transform: translate3d(0, 0, 100px) scale(1.15);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.95);
}

/* Next / Prev 1 (Left and Right adjacent) */
.menu-slide.prev-1 {
  transform: translate3d(-250px, 0, 0) scale(0.95) rotateY(15deg);
  opacity: 0.7;
  z-index: 5;
}

.menu-slide.next-1 {
  transform: translate3d(250px, 0, 0) scale(0.95) rotateY(-15deg);
  opacity: 0.7;
  z-index: 5;
}

/* Next / Prev 2 (Outer left and right) */
.menu-slide.prev-2 {
  transform: translate3d(-460px, 0, -100px) scale(0.8) rotateY(30deg);
  opacity: 0.45;
  z-index: 3;
}

.menu-slide.next-2 {
  transform: translate3d(460px, 0, -100px) scale(0.8) rotateY(-30deg);
  opacity: 0.45;
  z-index: 3;
}

/* Out of bounds/hidden slides */
.menu-slide.hidden {
  transform: translate3d(0, 0, -200px) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Slider Controls */
.menu-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 20;
}

.menu-slider-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.menu-slider-arrow.prev {
  left: 10px;
}

.menu-slider-arrow.next {
  right: 10px;
}

.menu-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: menu-card;
}

.menu-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.menu-card:hover .menu-card-image {
  transform: scale(1.08);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.4s;
}

.menu-card:hover .menu-card-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.menu-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  text-align: center;
  transform: translateY(calc(100% - 65px));
  transition: transform 0.5s var(--ease-smooth);
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.85) 60%, transparent 100%);
  z-index: 2;
}

.menu-card:hover .menu-card-content {
  transform: translateY(0);
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.menu-card-desc,
.menu-card-price {
  display: none !important;
}

.menu-cta {
  text-align: center;
  margin-top: 60px;
}

/* ═══════════════════════════════════════
   GALLERY / INTERIOR SECTION
   ═══════════════════════════════════════ */
.gallery {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding-bottom: 150px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 214px;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(8) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  transition: background 0.4s;
}

.gallery-item:hover::after {
  background: rgba(13,13,13,0.2);
}

.gallery-item-label {
  display: none;
}

/* ═══════════════════════════════════════
   CTA / BOOKING SECTION
   ═══════════════════════════════════════ */
.cta-booking {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.cta-booking-bg {
  position: absolute;
  inset: 0;
}

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

.cta-booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(3px);
}

.cta-booking-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-booking-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-booking-phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 4px;
  margin: 24px 0;
  display: block;
  transition: text-shadow 0.3s;
}

.cta-booking-phone:hover {
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(212,168,67,0.4);
}

.cta-booking-content .btn {
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 100%, rgba(26, 22, 17, 0.95) 0%, rgba(7, 7, 6, 0.98) 90%),
    url('../assets/images/interior-dining.png');
  background-size: cover;
  background-position: center center;
  padding: 0px 0px 40px;
}

/* Footer Dual Location Maps with 50% Tab controls */
.footer-maps-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 60px;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.map-iframe-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-smooth);
}

.map-iframe-container.active {
  opacity: 1;
  pointer-events: auto;
}

.map-tabs {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.map-tab-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
  white-space: nowrap;
}

.map-tab-btn.active {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.35);
}

.map-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease-smooth);
}

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

.footer-brand p {
  color: var(--soft-white);
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-address {
  margin-bottom: 24px;
}

.store-name,
.hours-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 6px;
}

.store-location,
.hours-time {
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.75;
  margin-bottom: 4px;
  line-height: 1.6;
}

.store-phone a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px dotted rgba(212, 168, 67, 0.3);
  padding-bottom: 1px;
  display: inline-block;
}

.store-phone a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.hours-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--soft-white);
  opacity: 0.55;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gold-muted);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   PAGE BANNER (Sub-pages)
   ═══════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 50vh;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
}

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

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 10, 9, 0.85) 0%,
    rgba(11, 10, 9, 0.3) 35%,
    rgba(11, 10, 9, 0.55) 70%,
    #0b0a09 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-banner-content .breadcrumb {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.page-banner-content .breadcrumb a {
  color: var(--gold);
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.story-section {
  background: #0b0a09;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block.reverse {
  direction: rtl;
}

.story-block.reverse > * {
  direction: ltr;
}

.story-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  overflow: visible;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px 12px 100px 12px;
  transition: transform 0.6s var(--ease-smooth), border-radius 0.6s var(--ease-smooth);
  border: 1px solid rgba(212, 168, 67, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-block.reverse .story-image img {
  border-radius: 12px 100px 12px 100px;
}

.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
  border-radius: 100px 12px 100px 12px;
  transform: translate(12px, 12px);
  z-index: -1;
  transition: transform 0.4s var(--ease-smooth), border-radius 0.4s var(--ease-smooth);
  opacity: 0.4;
  pointer-events: none;
}

.story-block.reverse .story-image::before {
  border-radius: 12px 100px 12px 100px;
  transform: translate(-12px, 12px);
}

.story-image:hover img {
  transform: scale(1.02);
  border-radius: 80px 20px 80px 20px;
}

.story-block.reverse .story-image:hover img {
  border-radius: 20px 80px 20px 80px;
}

.story-image:hover::before {
  transform: translate(6px, 6px);
  border-radius: 80px 20px 80px 20px;
}

.story-block.reverse .story-image:hover::before {
  transform: translate(-6px, 6px);
  border-radius: 20px 80px 20px 80px;
}

.story-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.story-text p {
  color: var(--soft-white);
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Values */
.values-section {
  background: #0b0a09;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 12px;
  background: var(--charcoal);
  transition: all 0.4s var(--ease-smooth);
}

.value-card:hover {
  border-color: rgba(212,168,67,0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--soft-white);
  opacity: 0.8;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════ */
.menu-page-section {
  background: #0b0a09;
}

.menu-category {
  margin-bottom: 80px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--dark-gray);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--ease-smooth);
}

.menu-item:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.menu-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info {
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 600;
}

.menu-item-price {
  display: none;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.7;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-section {
  background: #0b0a09;
}

/* Contact Info 4 Columns */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-col {
  padding: 32px 24px;
  background: var(--dark-gray);
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 67, 0.15);
  text-align: center;
  transition: all 0.3s;
}

.contact-info-col:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.contact-info-col i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.contact-info-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-col p,
.contact-info-col a {
  font-size: 0.95rem;
  color: var(--soft-white);
  opacity: 0.85;
  text-decoration: none;
}

.contact-info-col a:hover {
  color: var(--gold);
}

/* Horizontal Form */
.contact-horizontal-form {
  margin-bottom: 80px;
  padding: 40px;
  background: var(--dark-gray);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-horizontal-form .form-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-end;
}

.contact-horizontal-form .form-group {
  margin-bottom: 0;
}

.contact-horizontal-form .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-horizontal-form .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.contact-horizontal-form .form-group input {
  background: var(--charcoal);
}

.contact-horizontal-form .btn {
  width: 100%;
  padding: 14px 20px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .contact-horizontal-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-horizontal-form .form-submit-group {
    grid-column: span 2;
  }
  .contact-horizontal-form .submit-placeholder {
    display: none;
  }
}

@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-horizontal-form {
    padding: 24px;
  }
  .contact-horizontal-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-horizontal-form .form-submit-group {
    grid-column: span 1;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Contact Form */
.contact-form {
  margin-top: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--soft-white);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gold-muted);
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  cursor: zoom-out;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-smooth);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .intro-grid {
    gap: 48px;
  }

  .menu-slider {
    height: 440px;
  }
  .menu-slide {
    width: 240px;
    height: 340px;
  }
  .menu-slide.prev-1 {
    transform: translate3d(-190px, 0, 0) scale(0.9) rotateY(10deg);
  }
  .menu-slide.next-1 {
    transform: translate3d(190px, 0, 0) scale(0.9) rotateY(-10deg);
  }
  .menu-slide.prev-2 {
    transform: translate3d(-350px, 0, -80px) scale(0.75) rotateY(20deg);
  }
  .menu-slide.next-2 {
    transform: translate3d(350px, 0, -80px) scale(0.75) rotateY(-20deg);
  }

  .menu-card-overlay {
    background: linear-gradient(
      180deg,
      transparent 15%,
      rgba(13,13,13,0.4) 45%,
      rgba(13,13,13,0.92) 100%
    ) !important;
  }

  .menu-card-content {
    transform: translateY(0) !important;
    padding: 24px !important;
  }

  .menu-card-desc {
    opacity: 0.85 !important;
    transform: translateY(0) !important;
    font-size: 0.85rem !important;
  }

  .menu-card-price {
    opacity: 1 !important;
    transform: translateY(0) !important;
    font-size: 1rem !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    margin-bottom: 40px;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-block {
    gap: 48px;
  }
}

/* ── Gallery Slider Global Styles ── */
.gallery-slider-wrapper {
  position: relative;
  width: 100%;
}

.gallery-slider-arrow {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .container {
    padding: 0 15px;
  }

  .header {
    padding: 10px 0;
  }

  .header-right {
    margin-left: auto;
    margin-right: 15px;
  }

  .logo img {
    height: 45px !important;
  }

  .footer-logo img {
    height: 45px !important;
  }

  /* Navigation */
  .header.scrolled {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #0b0a09;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 100px 30px 40px;
    transition: right 0.4s var(--ease-smooth);
    box-shadow: none;
    z-index: 999;
  }

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

  .nav-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }

  .nav-links a {
    font-size: 1em;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: normal;
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    font-weight: normal;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    color: var(--gold);
    font-weight: 600;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .mobile-action-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: normal;
    text-align: center;
  }

  .mobile-action-btn.book-btn {
    background: var(--gold);
    color: var(--black);
    border: 1.5px solid var(--gold);
  }

  .mobile-action-btn.dir-btn {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
  }

  .header-cta {
    display: none;
  }

  /* Hero */
  .hero-title {
    letter-spacing: 6px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* Intro */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image-wrapper {
    height: 350px;
    justify-content: center;
  }

  .intro-image-container {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Menu Slider Mobile */
  .menu-slider-wrapper {
    padding: 20px 10px;
  }
  .menu-slider {
    height: 380px;
  }
  .menu-slide {
    width: 200px;
    height: 280px;
  }
  .menu-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  .menu-slide.prev-1 {
    transform: translate3d(-110px, 0, 0) scale(0.85);
    opacity: 0.5;
  }
  .menu-slide.next-1 {
    transform: translate3d(110px, 0, 0) scale(0.85);
    opacity: 0.5;
  }
  .menu-slide.prev-2,
  .menu-slide.next-2,
  .menu-slide.hidden {
    transform: translate3d(0, 0, -100px) scale(0.5);
    opacity: 0;
    pointer-events: none;
  }
  .menu-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .menu-card {
    aspect-ratio: 4/3;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery Slider on Mobile */
  .gallery {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding-bottom: 35px;
  }

  .gallery-slider-wrapper {
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .gallery-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 168, 67, 0.3);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
  }

  .gallery-slider-arrow:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .gallery-slider-arrow.prev {
    left: 10px;
  }

  .gallery-slider-arrow.next {
    right: 10px;
  }

  .gallery-grid {
    display: block; /* Disable grid on mobile slider */
    position: relative;
    height: 380px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: visible;
  }

  .gallery-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 280px;
    transform: translate3d(-50%, -50%, 0) scale(0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    margin: 0;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .gallery-item.active {
    transform: translate3d(-50%, -50%, 0) scale(1.15);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
  }

  .gallery-item.prev-1 {
    transform: translate3d(calc(-50% - 110px), -50%, 0) scale(0.85);
    opacity: 0.6;
    z-index: 3;
    pointer-events: auto;
  }

  .gallery-item.next-1 {
    transform: translate3d(calc(-50% + 110px), -50%, 0) scale(0.85);
    opacity: 0.6;
    z-index: 3;
    pointer-events: auto;
  }

  .gallery-item.prev-2 {
    transform: translate3d(calc(-50% - 180px), -50%, 0) scale(0.6);
    opacity: 0.2;
    z-index: 2;
  }

  .gallery-item.next-2 {
    transform: translate3d(calc(-50% + 180px), -50%, 0) scale(0.6);
    opacity: 0.2;
    z-index: 2;
  }

  .gallery-item.hidden {
    transform: translate3d(-50%, -50%, -100px) scale(0.5);
    opacity: 0;
    pointer-events: none;
  }

  /* CTA */
  .cta-booking {
    padding: 80px 0;
  }

  /* Footer */
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }

  .footer-grid .footer-brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-grid .footer-brand .footer-logo {
    display: block;
    margin: 0 auto 20px;
    align-self: center;
  }
  .footer-grid .footer-brand .footer-logo img {
    display: block;
    margin: 0 auto;
  }
  .footer-grid .footer-brand .footer-socials {
    justify-content: flex-start;
  }

  /* About */
  .story-block,
  .story-block.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

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

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

  .contact-map {
    min-height: 300px;
  }

  /* Page Banner */
  .page-banner {
    min-height: 250px;
    height: 35vh;
  }
}

@media (max-width: 576px) {
  .hero-title {
    letter-spacing: 3px;
  }

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

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  max-width: 90%;
  line-height: 1.5;
}

.preloader-bar {
  width: 240px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath d='M0 2 Q 5 0, 10 2 T 20 2' fill='none' stroke='%23333333' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 6px;
  position: relative;
  overflow: visible;
  margin-top: 10px;
}

.preloader-progress {
  height: 100%;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath d='M0 2 Q 5 0, 10 2 T 20 2' fill='none' stroke='%23d4a843' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 6px;
  transform: scaleX(0);
  transform-origin: left;
  animation: barFill 3s ease-in-out infinite;
}

.preloader-fish-swim {
  position: absolute;
  top: -16px;
  width: 32px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.9));
  animation: swimAnimation 3s ease-in-out infinite;
}

@keyframes barFill {
  0% { transform: scaleX(0); }
  85%, 100% { transform: scaleX(1); }
}

@keyframes swimAnimation {
  0% {
    left: -32px;
    transform: scaleX(-1) translateY(-2px) rotate(-6deg);
  }
  15% {
    transform: scaleX(-1) translateY(2px) rotate(6deg);
  }
  30% {
    transform: scaleX(-1) translateY(-2px) rotate(-6deg);
  }
  45% {
    transform: scaleX(-1) translateY(2px) rotate(6deg);
  }
  60% {
    transform: scaleX(-1) translateY(-2px) rotate(-6deg);
  }
  75% {
    transform: scaleX(-1) translateY(2px) rotate(6deg);
  }
  85% {
    left: calc(100% - 15px);
    transform: scaleX(-1) translateY(0) rotate(0deg);
  }
  88% {
    left: calc(100% - 15px);
    transform: scaleX(1) translateY(0) rotate(0deg);
  }
  92% {
    left: calc(100% - 15px);
    transform: scaleX(1) translateY(-2px) rotate(-6deg);
  }
  100% {
    left: -32px;
    transform: scaleX(-1) translateY(-2px) rotate(-6deg);
  }
}

/* Preloader Responsive Mobile */
@media (max-width: 768px) {
  .preloader {
    padding: 20px;
    gap: 12px;
  }
  .preloader-text {
    font-size: 1.1rem !important;
    letter-spacing: 3px !important;
    padding: 0 10px;
    line-height: 1.4;
    text-align: center;
  }
  .preloader-bar {
    width: 180px !important;
  }
}
@media (max-width: 480px) {
  .preloader-text {
    font-size: 0.9rem !important;
    letter-spacing: 2px !important;
  }
}
@media (max-width: 360px) {
  .preloader-text {
    font-size: 0.8rem !important;
    letter-spacing: 1.5px !important;
  }
}


/* ═══════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   FLOATING QUICK ACTIONS
   ═══════════════════════════════════════ */
.floating-actions {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.floating-btn-wrapper {
  position: relative;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 12, 11, 0.95);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover,
.floating-btn-wrapper.active .floating-btn {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
  transform: translateY(-2px);
}

.floating-options {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(15px);
  background: rgba(19, 18, 16, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.floating-btn-wrapper.active .floating-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.floating-options a {
  padding: 10px 16px;
  color: var(--soft-white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-options a:hover {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.back-to-top {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
}

/* ═══════════════════════════════════════
   SLIDER LAYOUT OPTIMIZATIONS (Desktop)
   ═══════════════════════════════════════ */
@media (min-width: 1025px) {
  .menu-grid {
    margin-top: 30px !important;
  }
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 10000;
  padding: 20px;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-smooth);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
}

.video-modal-close:hover {
  color: var(--gold);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── Welcome Promo Popup ── */
.promo-popup {
    position: fixed;
    inset: 0;
    background: rgb(10 10 10 / 28%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-smooth);
    z-index: 11000;
    padding: 20px;
}

.promo-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup-content {
  position: relative;
  width: 100%;
  max-width: 550px;
  background: #0d0d0d;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 16px;
  padding: 40px 30px 30px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 168, 67, 0.15);
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-smooth);
}

.promo-popup.active .promo-popup-content {
  transform: scale(1);
}

.promo-popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--soft-white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s;
}

.promo-popup-close:hover {
  opacity: 1;
  color: var(--gold);
  transform: rotate(90deg);
}

.promo-popup-header {
  margin-bottom: 24px;
}

.promo-popup-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.promo-popup-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ivory);
  letter-spacing: 0.5px;
}

.promo-popup-body {
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 12px;
  padding: 16px;
  background: #131210;
  margin-bottom: 30px;
}

.promo-popup-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.promo-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-popup-info {
  padding: 0 8px;
}

.promo-popup-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.promo-popup-text {
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.8;
  line-height: 1.7;
}

.promo-popup-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.promo-popup-footer .btn {
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .promo-popup-content {
    padding: 35px 20px 24px;
  }
  
  .promo-popup-title {
    font-size: 1.5rem;
  }
  
  .promo-popup-image {
    height: 160px;
  }
  
  .promo-popup-footer {
    flex-direction: column;
    gap: 12px;
  }
  
  .promo-popup-footer .btn {
    width: 100%;
  }
}

/* ── Warning Mode Overrides ── */
.promo-popup-content.warning-mode {
  max-width: 600px;
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 168, 67, 0.15);
  padding: 35px 30px 30px;
}

.warning-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin: 0;
  animation: warningPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes warningPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.warning-scroll {
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #11100e;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.warning-scroll::-webkit-scrollbar {
  width: 6px;
}

.warning-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.warning-scroll::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.2);
  border-radius: 99px;
}

.warning-lang-section p {
  font-size: 0.92rem;
  color: var(--soft-white);
  line-height: 1.6;
  margin-bottom: 12px;
}

.warning-lang-section .warning-intro {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ivory);
  margin-bottom: 14px;
}

.warning-lang-section .warning-thanks {
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 0;
}

.warning-tel {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.warning-tel:hover {
  text-decoration: underline;
}

.warning-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.warning-links-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.warning-links-group .btn {
  width: 170px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 8px 12px;
  text-transform: none;
  font-weight: 600;
  flex-shrink: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .warning-links-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .promo-popup-content.warning-mode {
    width: calc(100% - 32px);
    max-width: 420px;
    margin: 16px;
    padding: 48px 20px 24px;
  }

  .warning-header-flex {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .promo-popup-content.warning-mode .promo-popup-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
    text-align: center;
    color: var(--gold);
    padding: 0 16px;
  }

  .promo-popup-content.warning-mode .promo-popup-subtitle {
    font-size: 0.75rem;
    text-align: center;
    color: var(--ivory);
  }

  .promo-popup-close {
    top: 16px;
    right: 16px;
  }

  .warning-scroll {
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid rgba(212, 168, 67, 0.15);
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
  }

  .warning-lang-section {
    font-size: 0.9em;
  }
}

/* ── Centered Warning Header + Body Text ── */
.warning-header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
  gap: 16px;
}

.warning-header-text {
  flex: 0 1 auto;
}

.promo-popup-content.warning-mode .promo-popup-title {
  font-size: 1.5rem;
  margin-bottom: 0;
  text-align: center;
  color: var(--gold);
}

.promo-popup-content.warning-mode .promo-popup-subtitle {
  font-size: 0.92rem;
  text-align: center;
  color: var(--ivory);
}

.warning-lang-section {
  text-align: left;
}

/* ── Header Right Wrapper ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Header Actions Wrapper ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Language Selector Dropdown ── */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--ivory);
  padding: 8px 16px;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-display);
}

.lang-btn:hover,
.lang-selector.active .lang-btn {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
}

.lang-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.lang-selector.active .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #11100e;
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  padding: 8px;
  min-width: 170px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1000;
}

.lang-selector.active .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--soft-white);
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  text-align: left;
}

.lang-option:hover {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}

.lang-option.active {
  color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.lang-option.active .lang-name {
  font-weight: 600;
}

.flag-icon {
  font-size: 1.15rem;
}

.lang-name {
  flex: 1;
}

.check-icon {
  font-size: 0.8rem;
  opacity: 0;
  color: #10b981;
}

.lang-option.active .check-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .lang-selector {
    margin-right: 0;
  }
}

/* ═══════════════════════════════════════
   NEWS PAGE
   ═══════════════════════════════════════ */
.news-section {
  background: #0b0a09;
}

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

.news-card {
  background: var(--dark-gray);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  padding: 6px 12px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}

.news-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-date {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--soft-white);
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.news-card-title a {
  color: inherit;
}

.news-card:hover .news-card-title {
  color: var(--gold);
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-card-more {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.news-card-more i {
  font-size: 0.8rem;
}

.news-card:hover .news-card-more {
  gap: 12px;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination-btn {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-gray);
  color: var(--soft-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  text-decoration: none;
}

.pagination-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.pagination-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* WordPress Native Pagination Style Mapping */
.pagination .page-numbers {
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-gray);
  color: var(--soft-white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  text-decoration: none;
}

.pagination a.page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.pagination .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
/* ═══════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════ */
.post-detail-section {
  background: #0b0a09;
}

.post-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta-details {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--soft-white);
  opacity: 0.7;
}

.post-meta-details .post-badge {
  background: var(--gold);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-weight: 600;
}

.post-content-body {
  color: var(--soft-white);
  line-height: 1.85;
  font-size: 1.05rem;
}

.post-content-body p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.post-content-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 40px 0 20px;
}

.post-content-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivory);
  margin: 30px 0 16px;
}

.post-content-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  opacity: 0.95;
  color: var(--gold-light);
  line-height: 1.8;
}

.post-content-body img {
  border-radius: 8px;
  margin: 32px auto;
  box-shadow: var(--shadow-card);
}

.post-share-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0;
}

.post-share-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ivory);
}

.post-share-links {
  display: flex;
  gap: 12px;
}

.post-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-gray);
  color: var(--soft-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease-smooth);
}

.post-share-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.post-related-section {
  background: #070706;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.post-related-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 48px;
}
