/* 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.60); /* تظليل رمادي داكن */
    z-index: 1;
}

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

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

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

/* 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;
}