/* Reset and Base Styles */
html,
body {
  background: linear-gradient(180deg, #0f172a 0%, #0b1224 55%, #0f172a 100%);
  color: #e5e9f3;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
}

/* Ensures the restaurant name links stay centered across all breakpoints */
.navbar .navbar-brand {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.navbar-links {
  width: 100%;
  margin-top: 0.5rem;
}

.navbar-links .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.navbar-links .nav-link:hover,
.navbar-links .nav-link:focus {
  color: #ffb26b;
}

@media (min-width: 992px) {
  .navbar-links {
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-links .navbar-nav {
    justify-content: flex-start;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 12vh, 120px) 0 clamp(72px, 12vh, 130px);
  box-sizing: border-box;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* منع التفاعل مع الفيديو */
}

.hero-bg-video.is-hidden {
  display: none;
}

/* التظليل الرمادي الشفاف فوق الفيديو */
.hero-section .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  /* تظليل رمادي داكن */
  z-index: 1;
}

.hero-section.no-video {
  background: linear-gradient(180deg, #0f172a 0%, #0b1224 55%, #0f172a 100%);
}

.hero-section.no-video .video-overlay {
  display: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.navbar.bg-dark,
.navbar.navbar-dark {
  background: linear-gradient(135deg, #0f172a, #0b1224) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* شعار المطعم */
.hero-section img {
  max-height: 300px;
  margin-bottom: 24px;
}

/* أزرار الهيرو */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-description {
  color: #f3f4f6;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 640px;
}

.hero-buttons .btn-hero {
  width: min(260px, 80vw);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-buttons .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-hero--light {
  background: rgba(255, 255, 255, 0.08);
}

.btn-hero--accent {
  background: linear-gradient(120deg, #ff7a18, #e45b00);
  border-color: transparent;
  box-shadow: 0 15px 32px rgba(228, 91, 0, 0.45);
}

.hero-buttons .btn-hero--accent:hover {
  box-shadow: 0 18px 40px rgba(228, 91, 0, 0.5);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.btn-icon--ghost {
  background: rgba(28, 28, 28, 0.2);
}

.btn-icon i {
  margin-right: 0;
}

.btn-label {
  flex: 1;
  text-align: center;
}

i {
  margin-right: 14px;
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 360px;
    padding: 84px 0 96px;
  }

  .hero-section .container {
    padding: 0 1.1rem;
  }

  .hero-section img {
    max-height: 220px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 10px auto;
    max-width: 520px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn-hero {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
  }
}

/* في الشاشات الصغيرة: تجعل الأزرار عمودية لكن تظل تأخذ نفس العرض */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-section {
    padding: 78px 0 90px;
    min-height: 340px;
  }

  .hero-section .container {
    padding: 0 0.9rem;
  }

  .hero-buttons .btn-hero {
    width: 100%;
    /* في الموبايل: العرض يصبح 100% داخل الحاوية */
    max-width: 300px;
    /* يمكنك تقييده إن أردت */
  }
}

.showcase-section {
  background: linear-gradient(180deg, #0f172a 0%, #0b1224 60%, #0f172a 100%);
  color: #e2e8f0;
  padding: clamp(72px, 10vh, 120px) 0;
  overflow: hidden;
}

.showcase-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 28px;
}

.showcase-head__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  font-weight: 700;
  margin-bottom: 6px;
}

.showcase-head__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  color: #f8fafc;
}

.showcase-head__lead {
  margin: 10px auto 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

.showcase-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
}

.showcase-stage {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.showcase-stage__frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0b1224;
}

.showcase-stage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: clamp(260px, 48vh, 520px);
}

.showcase-stage__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.2s ease;
}

.showcase-stage__nav--prev {
  left: 12px;
}

.showcase-stage__nav--next {
  right: 12px;
}

.showcase-stage__nav:hover,
.showcase-stage__nav:focus {
  background: rgba(59, 130, 246, 0.95);
  transform: translateY(-50%) scale(1.02);
  outline: none;
}

@media (max-width: 640px) {
  .showcase-stage__nav {
    display: none;
  }
}

.showcase-stage__caption {
  margin: 10px 0 0;
  color: #cbd5e1;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.showcase-thumb-tile {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.showcase-thumb-tile img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.showcase-thumb-tile__dot {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  align-self: center;
}

.showcase-thumb-tile.is-active {
  border-color: #60a5fa;
  box-shadow: 0 12px 28px rgba(96, 165, 250, 0.3);
  transform: translateY(-2px);
}

.showcase-thumb-tile.is-active .showcase-thumb-tile__dot {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.showcase-thumb-tile:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.showcase-stage__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
}

.showcase-section .container {
  position: relative;
}

.showcase-section .container::before {
  content: none;
}

.showcase-section .container::after {
  content: none;
}

@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stage__frame img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .showcase-section {
    padding: 64px 0;
  }

  .showcase-head__lead {
    font-size: 1rem;
  }

  .showcase-stage__frame img {
    min-height: 240px;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  }

  .showcase-stage__nav {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .showcase-stage__nav--prev {
    left: 10px;
  }

  .showcase-stage__nav--next {
    right: 10px;
  }

  .showcase-thumb-tile img {
    height: 52px;
  }
}

/* Main Content */
.container h2 {
  margin-bottom: 20px;
}

.list-group-item {
  border: none;
  padding: 10px 0;
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #fff;
}

/* أزرار */
.btn-warning {
  font-weight: bold;
}

/* Additional Custom Styles */
/* يمكنك إضافة أي ستايل إضافي هنا حسب حاجتك */
/* === Footer Section from CodePen === */
.footer-section {
  background: linear-gradient(180deg, #0b1224 0%, #0f172a 60%, #0b1224 100%);
  color: #fff;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-info-row {
  align-items: stretch;
}

.restaurant-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.restaurant-info-icon {
  --icon-primary: #ff5e14;
  --icon-secondary: #ffb26b;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--icon-primary), var(--icon-secondary));
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.restaurant-info-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.restaurant-info-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  z-index: 1;
}

.restaurant-info-card--phone .restaurant-info-icon {
  --icon-primary: #16a34a;
  --icon-secondary: #4ade80;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.35);
}

.restaurant-info-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.restaurant-info-label {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.restaurant-info-content {
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  line-height: 1.6;
}

.restaurant-info-content:hover {
  color: #ffb280;
}

@media (max-width: 768px) {
  .restaurant-info-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .restaurant-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .restaurant-info-icon::after {
    inset: 5px;
    border-radius: 14px;
  }
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span a {
  color: #757575;
  text-decoration: none;
}

/* Footer content wrapper keeps the widgets elevated above the background overlay */
.footer-content {
  z-index: 2;
  position: relative;
}

/* Responsive grid distribution for the footer columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

/* Footer widget cards unify spacing, depth, and visual hierarchy */
.footer-columns .footer-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(24px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Dedicated grid balance for larger displays */
@media (min-width: 992px) {
  .footer-columns {
    grid-template-columns: minmax(360px, 1.15fr) minmax(240px, 0.85fr);
  }
}

/* Stack spacing adjustments for tablet and down */
@media (max-width: 767.98px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-columns .footer-widget {
    padding: clamp(20px, 5vw, 32px);
  }
}

/* Compact tweaks for narrow phones */
@media (max-width: 575.98px) {
  .footer-column--brand {
    text-align: center;
    align-items: center;
  }

  .footer-column--brand .footer-logo,
  .footer-column--brand .footer-text {
    width: 100%;
  }

  /* Small-screen grid layout keeps the social label and icons balanced */
  .footer-column--brand .footer-social-icon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    justify-content: center;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 16px 14px;
    gap: 14px 10px;
    margin-inline: auto;
    width: min(100%, 280px);
    align-self: center;
    justify-self: center;
  }

  .footer-column--brand .footer-social-icon span {
    grid-column: 1 / -1;
  }

  .footer-column--brand .footer-social-icon a {
    width: 48px;
    height: 48px;
  }
}

/* Brand column spacing helpers */
.footer-column--brand {
  gap: 12px;
}

/* Brand column social icons styling keeps the label and icons cohesive */
.footer-column--brand .footer-social-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  width: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-column--brand .footer-social-icon span {
  flex: 1 0 100%;
}

.footer-column--brand .footer-social-icon a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  isolation: isolate;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.footer-column--brand .footer-social-icon a::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.6;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.footer-column--brand .footer-social-icon a:hover,
.footer-column--brand .footer-social-icon a:focus-visible {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255, 94, 20, 0.6);
  box-shadow: 0 18px 30px rgba(255, 94, 20, 0.35);
}

.footer-column--brand .footer-social-icon a:hover::after,
.footer-column--brand .footer-social-icon a:focus-visible::after {
  opacity: 1;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

.footer-contact-link {
  color: #fff;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #ff5e14;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-text p {
  color: #7e7e7e;
  line-height: 1.8;
}

.footer-social-icon span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: #f5f7fb;
}

.footer-social-icon a i {
  font-size: 1.2rem;
  line-height: 1;
  margin: 0;
  color: currentColor;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.google-bg {
  background: #dd4b39;
}

.footer-widget-heading h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: #ff5e14;
}

/* Footer navigation list resets for better grid control */
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
  list-style: none;
}

/* Navigation links get improved legibility inside the footer */
.footer-column--links .nav-link {
  color: #f3f4f6;
  opacity: 0.85;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-column--links .nav-link:hover,
.footer-column--links .nav-link:focus {
  color: #ff5e14;
  opacity: 1;
  transform: translateX(4px);
}

/* Grid layout for footer links keeps even spacing on any width */
.footer-column--links .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px 24px;
}

.subscribe-form {
  position: relative;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 20px;
  background: #2e2e2e;
  border: none;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 13px 20px;
  background: #ff5e14;
  border: none;
}

.subscribe-form button i {
  transform: rotate(-6deg);
  font-size: 20px;
}

.copyright-area {
  background: linear-gradient(180deg, #0b1224 0%, #0d152c 100%);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

@media (min-width: 768px) {
  .footer-menu {
    justify-content: flex-end;
  }
}

.footer-menu a {
  color: #cbd5e1;
  margin-left: 20px;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #ff7a18;
}

.copyright-text {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e9f3;
}

.map-link {
  color: inherit;
  /* يأخذ لون النص من العنصر الأساسي */
  text-decoration: none;
  /* إزالة الخط السفلي */
  cursor: pointer;
  /* يغير المؤشر ليظهر كنقر قابل للضغط */
}

.map-link:hover {
    text-decoration: underline;
    /* اختياري: إضافة خط سفلي عند مرور المؤشر */
}

@media (max-width: 576px) {
    .hero-section img {
        max-height: 200px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hero-buttons .btn-hero {
        width: 100%;
        max-width: 240px;
        font-size: 1rem;
        padding: 0.65rem 1rem;
    }

    .hero-buttons {
        margin-top: 10px;
        margin-bottom: 10px;
        gap: 0.6rem;
    }

    .hero-section {
        min-height: 340px;
        height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

/* Cookie info banner – shared style for restaurant landing page */
.cookie-info-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  display: none;
  padding: 12px 16px;
  background: #111827;
  color: #e5e7eb;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.35);
}

.cookie-info-banner--visible {
  display: block;
}

.cookie-info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-info-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-info-text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-info-text a:hover {
  color: #bfdbfe;
}

.cookie-info-button {
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.2);
  background: #f97316;
  color: #111827;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-info-button:hover {
  background: #fb923c;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-info-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-info-button {
    width: 100%;
    text-align: center;
  }
}
