/* Reset and Base Styles */
body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar-brand {
  font-weight: bold;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 60vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: 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 .container {
  position: relative;
  z-index: 2;
}

/* شعار المطعم */
.hero-section img {
  max-height: 300px;
  margin-bottom: 24px;
}

/* نص الوصف */
.hero-section .lead {
  font-size: 1.3rem;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

/* ===== تنسيق جديد بحيث يحصل كل زر على نفس العرض ===== */
.hero-buttons {
  /* نجعلها حاوية flex حتى نستطيع توزيع الأزرار بأفق واحد */
  display: flex;
  justify-content: center; /* نُبقي الأزرار في منتصف السطر */
  align-items: center;
  margin-top: 20px; /* مسافة فوق الأزرار */
  margin-bottom: 20px; /* مسافة فوق الأزرار */
  gap: 0.75rem; /* مسافة ثابتة بين الزرين */
  flex-wrap: wrap; /* إذا ضاقت الشاشة يجتهد للعبء */
}

/* نجعل جميع الأزرار (btn) في هذه الحاوية تأخذ عرضًا ثابتًا */
.hero-buttons .btn {
  width: 220px; /* مثال: عرض ثابت 220px - اضبطه كما تريد */
  text-align: center; /* يتموضع النص والأيقونة في منتصف الزر */
  display: inline-flex; /* لنُركب الأيقونة والنص بجانب بعضهما */
  justify-content: center; /* توسيط محتوى الزر أفقياً */
  align-items: center; /* توسيط محتوى الزر عمودياً */
}

/* ––––– بقية الأنماط كما كانت سابقاً ––––– */

/* تنسيق زر فتح القائمة (الفاتح) */
.hero-buttons .btn-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1c1c1c;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem; /* هذه البادينغ لن يؤثر في العرض الثابت */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-buttons .btn-light:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* تنسيق زر الطلب المباشر (البرتقالي) */
.hero-buttons .btn-warning {
  background-color: #ff5e14;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-buttons .btn-warning:hover {
  background-color: #e65010;
  transform: translateY(-2px);
}

i {
  margin-right: 14px;
}

/* في الشاشات الصغيرة: تجعل الأزرار عمودية لكن تظل تأخذ نفس العرض */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-buttons .btn {
    width: 100%; /* في الموبايل: العرض يصبح 100% داخل الحاوية */
    max-width: 300px; /* يمكنك تقييده إن أردت */
  }
}

/* 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: #151414;
  color: #fff;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.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 {
  z-index: 2;
}
.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: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-social-icon a i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
}
.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-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #878787;
  text-decoration: none;
}
.footer-links a:hover {
  color: #ff5e14;
}
.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: #202020;
  padding: 20px 0;
}
.footer-menu a {
  color: #878787;
  margin-left: 20px;
  text-decoration: none;
}
.footer-menu a:hover {
  color: #ff5e14;
}

.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-section .lead {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .hero-buttons .btn {
    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: 55vh;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
