

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

/* ── CSS Variables ─────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CC85;
  --gold-dim:    #7A5F2A;
  --bg-deep:     #0A0804;
  --bg-surface:  #111008;
  --bg-card:     #181409;
  --text-main:   #F0E8D5;
  --text-muted:  #8A7D65;
  --text-soft:   #C8B99A;
  --border:      rgba(201, 168, 76, 0.18);
  --border-soft: rgba(201, 168, 76, 0.08);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --font-arabic: 'Cairo', sans-serif;
  /* --font-display: 'Playfair Display', 'Tajawal', serif; */
  --font-body:    'Tajawal', 'Cormorant Garamond', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Arabic RTL tweaks */
[dir="rtl"] body,
[lang="ar"] body {
  font-family: 'Tajawal', serif;
  letter-spacing: 0;
}

/* ── Subtle grain texture overlay ─────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Utility ───────────────────────────────── */
.hidden { display: none !important; }

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

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto;
  width: 60%;
}

/* ── NAVBAR ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: linear-gradient(180deg, rgba(10, 8, 4, 0.97) 0%, rgba(10, 8, 4, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition), background var(--transition);
}

.navbar.scrolled {
  padding: 10px 40px;
  background: rgba(10, 8, 4, 0.98);
}

/* Logo */
.navbar .logo-container .logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: opacity var(--transition);
}

.navbar .logo-container .logo:hover {
  opacity: 0.85;
}

.navbar .logo::before {
  content: '◆';
  font-size: 12px;
  color: var(--gold-dim);
}

.navbar .logo::after {
  content: '◆';
  font-size: 12px;
  color: var(--gold-dim);
}

/* Nav links */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar nav button {
  background: none;
  border: none;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

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

.navbar nav button:hover {
  color: var(--gold-light);
}

.navbar nav button:hover::after {
  width: 60%;
}

/* Lang toggle button */
.navbar .lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}

.navbar .lang-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

/* Mobile nav collapse */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .navbar nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .navbar nav button {
    font-size: 13px;
    padding: 6px 12px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container .logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
}
/* ── HERO ──────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  background: url("../uploads/bg.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 4, 0.55) 0%,
    rgba(10, 8, 4, 0.30) 40%,
    rgba(10, 8, 4, 0.75) 80%,
    rgba(10, 8, 4, 1.00) 100%
  );
}

.hero .overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero .overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  animation: heroFadeUp 1.1s ease forwards;
  opacity: 0;
}

.hero-ornament {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: heroFadeUp 1.1s 0.3s ease forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 20px);
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: heroFadeUp 1.1s 0.5s ease forwards;
  opacity: 0;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ANNOUNCEMENT BAR ──────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--bg-deep), rgba(201, 168, 76, 0.08), var(--bg-deep));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

/* ── ABOUT SECTION (Improved) ─────────────────────────── */
.about {
  position: relative;
  z-index: 2;
  padding: 100px 20px; 
}

 .about-inner {
  max-width: 760px;  
  margin: 0 auto;
  text-align: center;
  background: rgba(24, 20, 9, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 55px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-gold),
              inset 0 1px 0 rgba(201,168,76,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

 .about-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), var(--shadow-gold);
}

 .about-inner::before {
  content: '✦ ✧ ✦';
  display: block;
  font-size: 18px;
  color: var(--gold-dim);
  margin-bottom: 22px;
  letter-spacing: 10px;
}

 .about-inner p {
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--text-soft);
  line-height: 1.95;    
  font-weight: 300;
  text-align: justify;  
  margin: 0;
}



[dir="ltr"] .about-inner p,
[lang="de"] .about-inner p {
  direction: ltr;
}


.about-inner p::first-letter {
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
}


@media (max-width: 600px) {
  .about {
    padding: 70px 15px;
  }

  .about-inner {
    padding: 40px 22px;
  }

  .about-inner p {
    font-size: 15.5px;
    line-height: 1.85;
    text-align: start; /* أفضل للموبايل */
  }

  .about-inner p::first-letter {
    font-size: 22px;
  }
}

/* ── HOURS SECTION ─────────────────────────── */
.hours {
  padding: 80px 20px;
  text-align: center;
}

.hours h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 40px auto 0;
}

.hours-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  transition: border-color var(--transition), transform var(--transition);
}

.hours-item:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.hours-item .day {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hours-item .time {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}

/* ── ACTION BUTTONS ────────────────────────── */
.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 20px 80px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 42px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn.main {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.30);
}

.btn.main:hover {
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.50);
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn.secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── SLIDERS SECTION ───────────────────────── */
.sliders-section {
  padding: 48px 20px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.sliders-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 22px;   /* room for the protruding arrow buttons */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Card (sc = slider-card) ───────────────── */
.sc {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), opacity 0.3s ease;
}

.sc:hover {
  border-color: var(--gold-dim);
}

.sc--fading {
  opacity: 0.4;
}

/* Subtle gold accent strip on alt row */
.sc--alt {
  background: color-mix(in srgb, var(--bg-card) 94%, var(--gold) 6%);
}

/* ── Inner layout: image + body side by side ─ */
.sc-inner {
  display: flex;
  align-items: stretch;
  height: 200px;               /* compact fixed height */
}

/* Row 1: image left, text right */
.sc-inner--ltr { flex-direction: row; }

/* Row 2: text left, image right */
.sc-inner--rtl { flex-direction: row-reverse; }

/* ── Image cell ─────────────────────────────── */
.sc-img-wrap {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  overflow: hidden;
}

.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}

.sc:hover .sc-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.05);
}

.sc-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10, 8, 4, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}

/* ── Text body ──────────────────────────────── */
.sc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  min-width: 0;
}

.sc-eyebrow {
  display: block;
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sc-body h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 14px;
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Dots ───────────────────────────────────── */
.sc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.sc-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
}

.sc-dot--on {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── Arrow button (always on the side) ─────── */
.sc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--gold);
  color: var(--bg-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sc-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--bg-deep);
  flex-shrink: 0;
}

.sc-arrow:hover {
  background: var(--gold-light);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}

.sc-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Positioning: right edge for row-1, left edge for row-2 */
.sc-arrow--right {
  right: -14px;    /* half outside the card */
}

.sc-arrow--left {
  left: -14px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .sliders-section {
    padding: 32px 16px;
  }

  .sc-inner {
    height: auto;
    flex-direction: column !important; /* always stack on mobile */
  }

  .sc-img-wrap {
    width: 100%;
    height: 160px;
  }

  .sc-body {
    padding: 16px 18px;
  }

  .sc-body h3 {
    white-space: normal;
    font-size: 16px;
  }

  /* On mobile: arrow sits in bottom-right corner of the card */
  .sc-arrow--right,
  .sc-arrow--left {
    top: auto;
    bottom: 12px;
    right: 12px;
    left: auto;
    transform: none !important;
  }

  .sc-arrow:hover {
    transform: scale(1.1) !important;
  }

  .sc-arrow:active {
    transform: scale(0.95) !important;
  }
}

/* ── MAP ───────────────────────────────────── */
.map {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--bg-deep), transparent);
  z-index: 1;
  pointer-events: none;
}

.map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(40%) contrast(1.05) brightness(0.8);
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 56px 40px 32px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-ornament {
  font-size: 18px;
  color: var(--gold-dim);
  letter-spacing: 14px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

[dir="rtl"] .footer-contact {
  align-items: flex-start;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(201,168,76,0.07);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

@media (max-width: 700px) {
  footer {
    padding: 44px 20px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ── CATEGORIES & MENU (from script_v1) ──── */
#categories {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.category-card.open {
  border-color: var(--gold-dim);
}

.category-header {
  position: relative;
  height: 180px;
  cursor: pointer;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.6) saturate(0.8);
}

.category-card:hover .category-image,
.category-card.open .category-image {
  transform: scale(1.04);
  filter: brightness(0.75) saturate(1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: linear-gradient(90deg, rgba(10,8,4,0.65) 0%, transparent 60%);
}

.category-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.category-arrow {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.category-card.open .category-arrow {
  transform: rotate(180deg);
}

.items-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card.open .items-container {
  max-height: 2000px;
}

.items-container-inner {
  padding: 28px 24px;
  border-top: 1px solid var(--border-soft);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.menu-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.menu-item:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.item-image-container {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg-card);
}

.item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.menu-item:hover .item-image {
  transform: scale(1.06);
}

.item-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.item-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.4;
}

.item-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.item-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.item-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.item-price {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

/* ── Theme toggle button ───────────────────── */
#theme-toggle,
#lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

#theme-toggle:hover,
#lang-toggle:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ── LIGHT THEME OVERRIDE ──────────────────── */
body.light {
  --bg-deep:    #FAF7F0;
  --bg-surface: #F2EDE2;
  --bg-card:    #FFFDF7;
  --text-main:  #1A150A;
  --text-soft:  #5A4D38;
  --text-muted: #9A8B72;
  --border:     rgba(140, 100, 30, 0.18);
  --border-soft:rgba(140, 100, 30, 0.09);
  --shadow-gold:0 0 40px rgba(201, 168, 76, 0.15);
}

body.light .hero::before {
  background: linear-gradient(
    180deg,
    rgba(250, 247, 240, 0.35) 0%,
    rgba(250, 247, 240, 0.10) 40%,
    rgba(250, 247, 240, 0.70) 80%,
    rgba(250, 247, 240, 1.00) 100%
  );
}

body.light .map iframe {
  filter: grayscale(10%) contrast(1) brightness(1);
}



.footer {
  margin-top: 2rem;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid;
}

body.dark .footer {
  background: var(--card-dark);
  border-color: var(--gold-dim);
}

body.light .footer {
  background: var(--card-light);
  border-color: var(--border-light);
}

.footer-content {
  max-width: 480px;
  margin: 0 auto;
}

.social-section {
  margin-bottom: 1.5rem;
}

.social-section h3,
.address-section h3,
.phone-number-section h3{
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--gold-dim);
}

body[dir="rtl"] .social-section h3,
body[dir="rtl"] .address-section h3,
body[dir="rtl"] .phone-number-section h3{
  font-family: var(--font-arabic);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dim);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
}

body.dark .social-link:hover {
  color: var(--background-dark);
}

body.light .social-link:hover {
  color: var(--background-light);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.address-section {
  margin-bottom: 1.5rem;
}

.phone-number-section {
  margin-bottom: 1rem;
}

.address-link ,
.phone-number-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: all var(--transition);
}

.address-link:hover {
  opacity: 1;
  color: var(--primary);
}

.address-icon ,
.phone-number-icon {
  width: 1rem;
  height: 1rem;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.6;
}

body[dir="rtl"] .copyright {
  font-family: var(--font-arabic);
}


/* ── SCROLL ANIMATIONS ─────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeSlideUp 0.7s ease forwards;
}

/* ── RESPONSIVE BOOTSTRAP HELPERS ─────────── */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-center {
    display: none;
  }
}

@media (max-width: 576px) {
  .actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
}
