body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
     background-color: black;
    
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}


.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10; 
}

.logo {
    color: white;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo span {
    color: #e74c3c;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color:white;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}


.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* ظل خفيف يوضح النص */
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


.intro-section {
    background-color: #0d0d0d; 
    color:white;
    padding: 60px 20%;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d1d1;
    font-weight: 300;
}


.Menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px;
  background-color: #121418;
  font-family: sans-serif;
}

.menu-card {
  background-color: #1f232b;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.menu-card .image-box {
  background-color:white;
  border-radius: 12px;
  padding: 10px;
  height: 180px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.menu-card .image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.menu-card h3 {
  color: white;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
}

.menu-card p {
  color: #a0a6b5;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0 0 15px 0;
}


.menu-card .price {
  color: gold;
  font-size: 1.1rem;
  font-weight: bold;
}


.menu-card:hover {
  transform: translateY(-5px);
  border-color:gold;
  box-shadow: 0px 0px 22px rgba(212, 175, 55, 0.45);
}

.intro-section .sub-title{
     display: inline-block;
     color: gold;
     font-size: 0.8rem;
     font-weight: bold;
     letter-spacing: 3px;
     text-transform: uppercaseo;
}


.menu-card .image-box {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.menu-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #aa820a);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: gold;
  border: 2px solid gold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}


.btn-book-now {
  background: linear-gradient(135deg, gold, #aa820a);
  color: black;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}


.booking-dialog {
  background: black;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 35px 30px;
  width: 90%;
  max-width: 460px;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9),
              0 0 30px rgba(212, 175, 55, 0.15);
  
 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}


.booking-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.booking-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}


.booking-dialog > form > button.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #a0a6b5;
  font-size: 2rem;
  cursor: pointer;
}

.booking-dialog > form > button.close-modal-btn:hover {
  color: gold;
}


.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-badge {
  color: gold;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.modal-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 8px 0 5px 0;
  font-size: 1.8rem;
}

.modal-header p {
  color: #a0a6b5;
  font-size: 0.85rem;
  margin: 0;
}

.booking-form .form-group {
  margin-bottom: 15px;
}

.booking-form .form-row {
  display: flex;
  gap: 12px;
}

.booking-form .form-row .form-group {
  flex: 1;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: gold;
  background: rgba(255, 255, 255, 0.08);
}

.btn-submit-booking {
  width: 100%;
  background: linear-gradient(135deg, #d4af37, #aa820a);
  color: #0d0f12;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
}

.features-section {
  padding: 50px 20px;
  background-color: #0d0f12;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.features-section .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: gold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #a0a6b5;
  font-size: 0.9rem;
  line-height: 1.5;
}



.reviews-section {
  padding: 80px 20px;
  background: #121418;
}

.reviews-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .sub-title {
  color: gold;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 3px;
  display: block;
}

.section-title h2 {
  color: white;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  margin-top: 5px;
}

.reviews-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.review-card {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: gold;
}

.stars {
  color: gold;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-card p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.reviewer-name {
  color: gold;
  font-weight: bold;
  font-size: 0.9rem;
}

.site-footer {
  background-color: #0b0c0e;
  color: #a0a6b5;
  padding-top: 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  color: gold; 
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 1px;
}

.footer-logo {
  color: white;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.footer-logo span {
  color: gold;
  display: block;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.footer-about {
  line-height: 1.6;
  font-size: 0.9rem;
}


.footer-hours, .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-hours span {
  color: white;
  display: block;
  font-weight: bold;
}

.footer-contact {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0a6b5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color:gold;
}


.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: #6c727f;
}


.chat-container, .chat-box {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%); /* بتسنتر الشات في النص بالمللي */
  width: 92vw;
  max-width: 350px;
  height: 45dvh; /* بتخلي الارتفاع مرن ويتطابق مع مساحة الموبايل الحقيقية لما الكيبورد يفتح */
  max-height: 420px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  overflow: hidden;
}


.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.chat-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}


@media (max-width: 480px) {
  .chat-container, .chat-box {
    bottom: 10px;
    right: 10px;
    width: 95vw;
    height: 60dvh;
  }
}