@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Brand Colors (Extracted from Logo) */
  --color-navy: #1B365D;
  --color-navy-dark: #0D1E36;
  --color-navy-light: #2A4B7C;
  --color-gold: #C5A059;
  --color-gold-hover: #D4AF37;
  --color-gold-light: #E5CFA3;
  --color-gold-dark: #9F7E3C;
  
  /* Brand Accent Stripes (From Logo) */
  --color-purple: #8E44AD;
  --color-green: #2ECC71;

  /* Neutral Colors */
  --color-cream: #FAF7F2;
  --color-cream-dark: #F3ECE0;
  --color-charcoal: #2A2D34;
  --color-charcoal-light: #4E525E;
  --color-white: #FFFFFF;
  --color-white-trans: rgba(255, 255, 255, 0.95);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  --gradient-navy: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(13, 30, 54, 0.8) 0%, rgba(13, 30, 54, 0.4) 50%, rgba(13, 30, 54, 0.85) 100%);
  --gradient-stripes: linear-gradient(90deg, var(--color-purple) 0%, var(--color-gold) 40%, var(--color-green) 100%);

  /* Typography Defaults */
  --font-en-head: 'Playfair Display', Georgia, serif;
  --font-en-body: 'Montserrat', 'Inter', sans-serif;
  --font-ar-head: 'Amiri', serif;
  --font-ar-body: 'Tajawal', sans-serif;

  /* Elevation */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(13, 30, 54, 0.15);

  /* Layout Constants */
  --header-height: 90px;
  --max-width: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   MULTILINGUAL & TYPOGRAPHY SYSTEM
   ========================================================================== */
html[lang="en"] {
  --font-heading: var(--font-en-head);
  --font-body: var(--font-en-body);
  font-family: var(--font-body);
}

html[lang="ar"] {
  --font-heading: var(--font-ar-head);
  --font-body: var(--font-ar-body);
  font-family: var(--font-body);
}

/* Toggle displays for content based on active language */
html[lang="en"] .lang-ar { display: none !important; }
html[lang="ar"] .lang-en { display: none !important; }

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

body {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.3s ease-in-out;
}

body.lang-transition {
  opacity: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.25;
}

/* Arabic Heading Weight Correction */
html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3 {
  font-weight: 700;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Button & Interactable Defaults */
button, .btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition-smooth);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ==========================================================================
   SHARED REUSABLE COMPONENTS
   ========================================================================== */

/* Buttons */
.btn-primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--color-navy);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  z-index: -1;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--color-white-trans);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 54, 93, 0.2);
}

/* Accent Strip decoration */
.accent-bar {
  height: 4px;
  width: 80px;
  background: var(--gradient-stripes);
  margin: 16px auto;
  border-radius: 2px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  position: relative;
}

.section-head p {
  color: var(--color-charcoal-light);
  font-size: 1.1rem;
}

/* Glassmorphism card utility */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius-md);
}

/* Scroll Animations helper */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   HEADER / STICKY NAVIGATION
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--max-width);
  height: 76px;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(13, 30, 54, 0.08);
  padding: 0 32px;
}

/* Sticky Class */
.header-wrapper.scrolled {
  top: 12px;
  height: 70px;
  background: rgba(250, 247, 242, 0.85);
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 12px 36px rgba(13, 30, 54, 0.12);
}

.header-wrapper.scrolled .nav-logo img {
  height: 44px;
}

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

.nav-logo img {
  height: 52px;
  transition: var(--transition-smooth);
  object-fit: contain;
}

/* Logo design fallbacks inside navigation if image is missing */
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-fallback-en {
  font-family: var(--font-en-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 1.5px;
}
.logo-fallback-ar {
  font-family: var(--font-ar-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
}

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

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  position: relative;
  padding: 8px 0;
}

/* Hover underline effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

html[lang="ar"] .nav-link::after {
  left: auto;
  right: 0;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switch Button */
.lang-switch {
  background-color: transparent;
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.lang-switch:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* Header Button */
.header-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hamburger active transformation */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-image: var(--gradient-overlay), url('assets/images/hero-seaview.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

/* Luxury visual overlay for sea-view mood */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--color-cream) 0%, rgba(250, 247, 242, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
  padding: 40px 0;
}

.hero-tag {
  background-color: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 4rem;
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Glass Floating Badge in Hero */
.hero-floating-card {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: 320px;
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 30, 54, 0.6);
  backdrop-filter: blur(12px);
  color: var(--color-white);
  z-index: 10;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: floatCard 6s ease-in-out infinite;
}

html[lang="ar"] .hero-floating-card {
  right: auto;
  left: 5%;
}

.hero-floating-card h4 {
  font-size: 1.1rem;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-floating-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ==========================================================================
   FEATURED MENU SECTION
   ========================================================================== */
.featured-menu {
  padding: 100px 0;
  position: relative;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

/* Menu Card Design */
.menu-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(27, 54, 93, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 160, 89, 0.3);
}

.menu-card-img-wrapper {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-cream-dark);
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.menu-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 5;
}

html[lang="ar"] .menu-card-badge {
  left: auto;
  right: 16px;
}

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

.menu-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.menu-card h3 {
  font-size: 1.3rem;
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.3;
}

.menu-card h3 span.sub-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-charcoal-light);
  margin-top: 4px;
}

.menu-card-desc {
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-card-footer {
  border-top: 1px solid rgba(27, 54, 93, 0.08);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-cta {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu-card-cta:hover {
  color: var(--color-navy);
}

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

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  padding-right: 20px;
}

html[lang="ar"] .about-content {
  padding-right: 0;
  padding-left: 20px;
}

.about-tag {
  color: var(--color-gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.about h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about p.about-lead {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 20px;
  font-weight: 500;
}

.about p.about-body {
  color: var(--color-charcoal-light);
  margin-bottom: 30px;
  font-size: 1rem;
}

/* 3 highlights icons/texts */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--color-gold);
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.highlight-text h4 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.highlight-text p {
  color: var(--color-charcoal-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-img-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--color-cream);
  z-index: 5;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 420px;
}

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

/* Background elements */
.about-img-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 420px;
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  top: 24px;
  right: -24px;
  z-index: 1;
  pointer-events: none;
}

html[lang="ar"] .about-img-box::before {
  right: auto;
  left: -24px;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us {
  padding: 100px 0;
  background-color: var(--color-cream-dark);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.why-card {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--color-gold);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(27, 54, 93, 0.05);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-navy);
  transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   EXPERIENCE / GALLERY SECTION
   ========================================================================== */
.gallery {
  padding: 100px 0;
  background-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

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

/* Text Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 30, 54, 0.85) 0%, rgba(13, 30, 54, 0.2) 60%, rgba(13, 30, 54, 0) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text {
  color: var(--color-white);
}

.gallery-text h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery-text p {
  font-size: 0.85rem;
  color: var(--color-gold-light);
}

/* Gallery Masonry Layout Configurations */
.gallery-item-1 { grid-column: span 8; grid-row: span 2; }
.gallery-item-2 { grid-column: span 4; grid-row: span 1; }
.gallery-item-3 { grid-column: span 4; grid-row: span 2; }
.gallery-item-4 { grid-column: span 4; grid-row: span 1; }
.gallery-item-5 { grid-column: span 4; grid-row: span 1; }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  padding: 100px 0;
  background-image: var(--gradient-navy);
  color: var(--color-white);
  position: relative;
}

.testimonials .section-head h2 {
  color: var(--color-white);
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  border-radius: var(--border-radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Quote Icon Decoration */
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  font-family: var(--font-en-head);
  color: rgba(197, 160, 89, 0.15);
  line-height: 1;
}

html[lang="ar"] .testimonial-card::before {
  right: auto;
  left: 25px;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.95rem;
}

.testimonial-card p.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

/* ==========================================================================
   CONTACT & VISIT US SECTION
   ========================================================================== */
.contact {
  padding: 100px 0;
  background-color: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-panel h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-info-panel p.contact-desc {
  color: var(--color-charcoal-light);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--color-charcoal-light);
  font-size: 0.95rem;
  white-space: pre-line;
}

.contact-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Map frame design */
.contact-map-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--color-white);
  height: 100%;
  min-height: 400px;
  position: relative;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 80px 0 40px;
  border-top: 4px solid var(--color-gold);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 70px;
  object-fit: contain;
  width: fit-content;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-stripes {
  height: 3px;
  width: 100px;
  background: var(--gradient-stripes);
  border-radius: 1.5px;
}

.footer-links h3 {
  color: var(--color-gold-light);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

html[lang="ar"] .footer-links h3::after {
  left: auto;
  right: 0;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

html[lang="ar"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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


/* ==========================================================================
   FULL MENU PAGE STYLING (`menu.html`)
   ========================================================================== */
.menu-header-sec {
  padding: 160px 0 60px;
  background-image: var(--gradient-overlay), url('assets/images/lounge.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  position: relative;
}

.menu-header-sec h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.menu-header-sec p {
  color: var(--color-gold-light);
  font-size: 1.1rem;
}

/* Category Filter Tabs */
.menu-tabs-wrapper {
  margin-top: -30px;
  position: relative;
  z-index: 50;
  margin-bottom: 60px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-tab {
  background: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 54, 93, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-tab:hover {
  background-color: var(--color-cream-dark);
  transform: translateY(-2px);
}

.menu-tab.active {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
}

.menu-tab-icon {
  font-size: 1.1rem;
}

.menu-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

/* Custom list layout for standard menu items */
.menu-list-item {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 54, 93, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.menu-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.25);
}

.menu-list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

html[lang="ar"] .menu-list-item::before {
  left: auto;
  right: 0;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

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

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

.menu-list-item h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
}

.menu-list-item h3 span.sub-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-charcoal-light);
  margin-top: 2px;
}

.menu-list-item p {
  color: var(--color-charcoal-light);
  font-size: 0.9rem;
  margin: 0;
}

.menu-list-tag {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: auto;
  margin-top: 12px;
}

/* Category Filter Transition Anim */
.menu-page-grid .menu-list-item {
  animation: scaleIn 0.4s ease forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}


/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content {
    padding-right: 0;
    padding-left: 0;
  }
  
  .about-img-box {
    order: -1;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-map-frame {
    min-height: 350px;
  }
  
  .gallery-grid {
    grid-auto-rows: 180px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .header-wrapper {
    top: 16px;
    width: 92%;
    padding: 0 20px;
    height: 68px;
    background: rgba(255, 255, 255, 0.75);
  }
  
  .header-wrapper.scrolled {
    top: 10px;
    height: 60px;
  }
  
  .header-wrapper.scrolled .nav-logo img {
    height: 36px;
  }
  
  .nav-logo img {
    height: 40px;
  }
  
  /* Mobile Menu Toggle Styling */
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    inset-inline-end: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 100px 24px 40px;
    gap: 24px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    z-index: 999;
    align-items: flex-start;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    display: flex;
  }
  
  .nav-menu.open {
    inset-inline-end: 0;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    margin-inline-end: 12px;
  }
  
  .nav-actions .header-btn {
    display: none;
  }
  
  .nav-actions .lang-switch {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 80px;
  }
  
  /* Show actions inside mobile menu when active */
  .nav-menu .mobile-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-top: auto;
  }
  
  .nav-menu .mobile-actions .lang-switch,
  .nav-menu .mobile-actions .header-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero {
    background-attachment: scroll; /* fixes background lag on mobile */
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-floating-card {
    position: static;
    margin: 40px auto 0;
    width: 100%;
    max-width: 380px;
  }
  
  .section-head h2 {
    font-size: 2rem;
  }
  
  .menu-grid, .why-us-grid, .menu-page-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
  }
  
  .gallery-grid {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  
  .gallery-item {
    height: 240px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
