:root {
  --primary-green: #0B4638;
  --primary-green-rgb: 11, 70, 56;
  --accent-gold: #C5A059;
  --accent-gold-rgb: 197, 160, 89;
  --bg-cream: #FDFBF7;
  --bg-cream-rgb: 253, 251, 247;
  --text-black: #1A1A1A;
  --text-grey: #4A4A4A;
  --water-blue: #2E8B9E;
  
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 16px;
}

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

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border: 2px solid var(--bg-cream);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  line-height: 1.2;
}

p {
  font-weight: 300;
  color: var(--text-grey);
}

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

.text-white {
  color: #FFFFFF !important;
}

/* Preloader Overlay */
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--primary-green);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

#preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, var(--primary-green) 80%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.preloader-content {
  position: relative;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  padding: 5px;
  background: rgba(253, 251, 247, 0.1);
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
  animation: logoPulse 2s infinite ease-in-out;
}

.preloader-title {
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.preloader-subtitle {
  font-size: 0.9rem;
  color: var(--bg-cream);
  opacity: 0.8;
  letter-spacing: 0.25em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.progress-container {
  width: 250px;
  height: 3px;
  background: rgba(253, 251, 247, 0.15);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), #FFF);
  box-shadow: 0 0 10px var(--accent-gold);
  transition: width 0.1s ease-out;
}

.progress-text {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(197, 160, 89, 0.4);
  }
}

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

header.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(11, 70, 56, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  padding: 2px;
  background: rgba(253, 251, 247, 0.1);
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 42px;
  width: 42px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: var(--transition-smooth);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.5rem;
  color: rgba(253,251,247,0.55);
  letter-spacing: 0.12em;
  font-weight: 400;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  line-height: 1.15;
  margin-top: 2px;
}
header.scrolled .logo-sub {
  font-size: 0.45rem;
}

header.scrolled .logo-text {
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

header:not(.scrolled) .nav-link {
  /* On non-scrolled transparent headers, let's keep text bright with text-shadow */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

.nav-link:hover::after {
  width: 100%;
}

.btn-nav-reserve {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-nav-reserve:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 70, 56, 0.4) 0%, rgba(11, 70, 56, 0.85) 100%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
}

.hero-bg-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: scale(1.05) blur(2px);
  z-index: 0;
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); filter: blur(2px); }
  100% { transform: scale(1.1); filter: blur(4px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  color: var(--bg-cream);
}

.hero-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.2s;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.4s;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 2vw, 1rem);
  color: rgba(253,251,247,0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.5s;
}

.hero-arabic {
  font-family: 'Amiri', 'Lateef', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeUp 1.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.5s;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--bg-cream);
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 3rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.7s;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.9s;
}

.btn-primary {
  padding: 0.9rem 2.2rem;
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
  padding: 0.9rem 2.2rem;
  background-color: transparent;
  border: 1px solid rgba(253, 251, 247, 0.3);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(253, 251, 247, 0.1);
  border-color: #FFFFFF;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(253, 251, 247, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1.5s forwards 1.2s;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(253, 251, 247, 0.5);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes slideFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Scroll Video Animation Section */
.scroll-video-section {
  position: relative;
  height: 500vh; /* Determines the scroll duration - adjusted for a faster, responsive flow */
  background-color: var(--accent-gold);
}

.scroll-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--accent-gold);
}

#video-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: block;
}

/* Canvas Overlay Gradient */
.scroll-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, rgba(11, 70, 56, 0.25) 100%),
              linear-gradient(180deg, rgba(11, 70, 56, 0.2) 0%, transparent 15%, transparent 85%, rgba(11, 70, 56, 0.4) 100%);
  z-index: 5;
  pointer-events: none;
}

/* Scroll Typography Narrative Overlays */
.scroll-narrative-container {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.scroll-text-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  max-width: 850px;
  transform: translate(-50%, -50%) translateY(30px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
  
  /* Koyu Yarı Saydam Kutu (Dark Glassmorphism) */
  background: rgba(11, 70, 56, 0.45); /* Koyu Zeliha Yeşili yarı saydam */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 160, 89, 0.2); /* İnce altın sarısı çerçeve çizgisi */
}

.scroll-text-item.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) translateY(0);
}

.scroll-text-badge {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold); /* Altın rengi */
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-text-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-family: var(--font-serif);
  color: #FFFFFF; /* Beyaz başlık */
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.scroll-text-para {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--bg-cream); /* Krem rengi gövde metni */
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Elegant Ornament Divider */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem 0;
}

.ornament-divider .line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  flex-grow: 1;
  max-width: 150px;
}

.ornament-divider svg {
  color: var(--accent-gold);
}

/* Story Section */
.story-section {
  padding: 8rem 2rem;
  background-color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.story-bg-lottie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.story-bg-lottie svg {
  width: 100%;
  height: 100%;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.story-content {
  text-align: left;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}

.story-text p {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.story-highlight {
  border-left: 2px solid var(--accent-gold);
  padding-left: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-green);
  margin: 2.2rem 0;
}

.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px dashed var(--accent-gold);
  padding: 15px;
}

.image-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary-green);
  box-shadow: 0 15px 35px rgba(11, 70, 56, 0.15);
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.image-frame:hover .story-img {
  transform: scale(1.08);
}

.decor-dots {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--accent-gold) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.3;
  z-index: -1;
}

/* Interactive Menu Preview Section */
.menu-section {
  padding: 8rem 2rem;
  background-color: var(--primary-green);
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.2) 100%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-section h2 {
  color: #FFFFFF;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.menu-card {
  background: rgba(253, 251, 247, 0.03);
  border: 1px solid rgba(253, 251, 247, 0.08);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-8px);
  background: rgba(253, 251, 247, 0.06);
  border-color: rgba(197, 160, 89, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.menu-card:hover::before {
  height: 100%;
}

.menu-icon-wrap {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.menu-card:hover .menu-icon-wrap {
  background-color: var(--accent-gold);
  color: var(--primary-green);
  border-color: var(--accent-gold);
}

.menu-item-title {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: rgba(253, 251, 247, 0.7);
  margin-bottom: 2rem;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: 1.2rem;
}

.menu-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.btn-menu-more {
  display: inline-block;
  margin-top: 4.5rem;
  padding: 1rem 2.8rem;
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn-menu-more:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.35);
}

/* Contact & Reservation Section */
.contact-section {
  padding: 8rem 2rem;
  background-color: var(--bg-cream);
  position: relative;
}

.contact-grid {
  max-width: 800px;
  margin: 0 auto;
}

#contact-lottie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}
#contact-lottie svg {
  width: 100% !important;
  height: 100% !important;
}

.contact-section .section-container {
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.contact-info .section-title {
  text-align: center;
}

.contact-info .section-label {
  text-align: center;
  display: inline-block;
  color: #0B4638;
}

.contact-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-items-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-items-row .contact-item {
  flex: 1;
  min-width: 200px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(11, 70, 56, 0.05);
  border: 1px solid rgba(11, 70, 56, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

.contact-text {
  text-align: left;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-text p, .contact-text a {
  font-size: 0.95rem;
  color: var(--text-grey);
  text-decoration: none;
  font-weight: 400;
}

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

/* Map Section */
.map-section {
  width: 100%;
  height: 400px;
  background-color: #E5E4E2;
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(10%) contrast(100%);
}

/* Footer styling */
footer {
  background-color: #05261E;
  color: rgba(253, 251, 247, 0.8);
  padding: 5rem 2rem 2.5rem;
  position: relative;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(253, 251, 247, 0.08);
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-logo-sub {
  display: block;
  font-size: 0.55rem;
  color: rgba(253,251,247,0.5);
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 3px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(253, 251, 247, 0.85);
}

.footer-col-title {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: rgba(253, 251, 247, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(253, 251, 247, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-green);
  border-color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(253, 251, 247, 0.75);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(253, 251, 247, 0.75);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  header {
    padding: 1.5rem 2rem;
  }
  header.scrolled {
    padding: 0.8rem 2rem;
  }
  .story-grid {
    gap: 3.5rem;
  }
  .contact-grid {
    max-width: 100%;
  }
  #contact-lottie {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-green);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

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

  .nav-link {
    font-size: 1.1rem;
  }

  header .lang-switcher {
    display: none;
  }
  .mobile-lang {
    display: block;
    text-align: center;
    margin-top: 1rem;
  }
  .mobile-lang .lang-switcher {
    display: inline-flex;
    margin-left: 0;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .story-content {
    text-align: center;
  }
  
  .story-highlight {
    border-left: none;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding: 1.5rem 0;
    margin: 2.2rem auto;
    max-width: 500px;
  }
  
  .contact-info {
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  header {
    padding: 1.2rem 1.5rem;
  }
  header.scrolled {
    padding: 0.7rem 1.5rem;
  }
  .logo-link {
    gap: 0.5rem;
  }
  .logo-text {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }
  .logo-sub {
    font-size: 0.45rem;
  }
  header.scrolled .logo-text {
    font-size: 0.95rem;
  }
  header.scrolled .logo-sub {
    font-size: 0.4rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .scroll-text-title {
    font-size: 1.8rem;
  }
  .story-section, .menu-section, .contact-section {
    padding: 5rem 1rem;
  }
  .footer-top {
    gap: 2.5rem;
  }
}

@media (min-width: 901px) {
  .mobile-lang {
    display: none;
  }
}

/* --- Language Switcher UI --- */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(253, 251, 247, 0.3);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.lang-btn:hover, .lang-btn.active {
  background: var(--accent-gold);
  color: var(--primary-green);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

/* --- Hero Logo Styling --- */
.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  padding: 5px;
  background: rgba(253, 251, 247, 0.1);
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.3);
  animation: logoPulse 2s infinite ease-in-out;
  display: inline-block;
  object-fit: contain;
}

/* --- RTL (Right-to-Left) Layout for Arabic --- */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .logo-link {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 1.5rem;
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu {
  flex-direction: row-reverse;
}

html[dir="rtl"] .story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  direction: rtl;
}

html[dir="rtl"] .story-content {
  text-align: right;
}

html[dir="rtl"] .story-highlight {
  border-left: none;
  border-right: 2px solid var(--accent-gold);
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .menu-card {
  text-align: right;
}

html[dir="rtl"] .menu-card::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .menu-item-footer {
  flex-direction: row-reverse;
}

html[dir="rtl"] .contact-grid {
  direction: ltr;
}
html[dir="rtl"] .contact-grid .contact-info {
  direction: rtl;
}

html[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .contact-icon {
  margin-right: 0;
  margin-left: 1.5rem;
}

html[dir="rtl"] .footer-top {
  direction: rtl;
}

html[dir="rtl"] .footer-links {
  text-align: right;
}

html[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  html[dir="rtl"] .nav-menu {
    left: -100vw;
    right: auto;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    transition: left 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  html[dir="rtl"] .nav-menu.active {
    left: 0;
    right: auto;
  }
}

/* --- Culture Blog Page Styles --- */
.blog-hero {
  background-color: var(--primary-green);
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, var(--primary-green) 80%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.blog-hero-content {
  position: relative;
  z-index: 10;
}

.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.blog-hero p {
  color: var(--bg-cream);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.blog-section {
  padding: 5rem 2rem;
  background-color: var(--bg-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(11, 70, 56, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 70, 56, 0.1);
  border-color: var(--accent-gold);
}

.blog-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--primary-green);
  overflow: hidden;
  position: relative;
}

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-placeholder {
  transform: scale(1.05);
  opacity: 1;
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-card-btn {
  margin-top: auto;
  align-self: flex-start;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.blog-card-btn:hover {
  color: var(--accent-gold);
}

/* Modal Overlay for Blog Details */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 70, 56, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-cream);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 12px;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-gold);
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(26, 26, 26, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-black);
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--primary-green);
  color: #FFFFFF;
}

.modal-img-wrapper {
  width: 100%;
  height: 350px;
  background-color: var(--primary-green);
  overflow: hidden;
}

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

.modal-content-wrap {
  padding: 3rem;
}

.modal-category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.modal-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-grey);
}

.modal-body p {
  margin-bottom: 1.5rem;
  color: var(--text-grey);
}

.modal-body blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-green);
  margin: 2rem 0;
}

/* Blog specific RTL adjustments */
html[dir="rtl"] .blog-card-excerpt,
html[dir="rtl"] .modal-body {
  text-align: right;
}

html[dir="rtl"] .blog-card-btn {
  align-self: flex-end;
  flex-direction: row-reverse;
}

html[dir="rtl"] .modal-body blockquote {
  border-left: none;
  border-right: 3px solid var(--accent-gold);
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 1.5rem;
}

/* ── Gallery Preview Home ── */
.gallery-preview-section {
  padding: 80px 24px;
  background: var(--primary-green);
  text-align: center;
}
.gallery-preview-section .section-label {
  color: #FDFBF7;
}
.gallery-preview-section .section-title {
  color: #FFFFFF;
}
.gp-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.gp-home-grid a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gp-home-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gp-home-grid a:hover img {
  transform: scale(1.06);
}
.gp-home-loading {
  grid-column: 1 / -1;
  padding: 40px 0;
  color: var(--text-grey);
  font-size: 0.9rem;
}
.gp-home-more {
  margin-top: 28px;
}
.btn-gold {
  display: inline-block;
  background: var(--accent-gold);
  color: #05261E;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.3s;
}
.btn-gold:hover {
  background: #b58d4a;
}
@media(max-width:600px){
  .gp-home-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .gallery-preview-section{padding:50px 16px}
}

