/* ====================================================
   1. Universal Reset & Variables
==================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
:root {
  --gold-gradient: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
  --background: linear-gradient(45deg, #ffffff, #e6e6e6);
  --text-color: #f0f0f0;
  --accent-color: #ffffff;
  --primary-font: 'Montserrat', sans-serif;
  --secondary-font: 'Montserrat', sans-serif;
}

/* ====================================================
   2. Global Base Styles
==================================================== */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  line-height: 1.6;
  overflow-x: hidden;
  background: #000;
}
body.nav-open {
  overflow: hidden !important;
}
/* Removed global forced black text rules to allow intended colors */
/* h2, h3, h4, h5, h6, p, li, span {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}
h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, li:hover, span:hover {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
} */

/* Fade in main content and offset for fixed header */
#main-content {
  padding-top: 60px; /* اضبط هذه القيمة حسب ارتفاع الهيدر الفعلي */
  animation: fadeIn 1.5s ease-in-out forwards;
  position: relative;
  z-index: 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ====================================================
   2a. Container Utility Class
==================================================== */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ====================================================
   Hero logo 
==================================================== */
/* Hero Banner */
.hero-banner {
  width: 100%;
  overflow: hidden;
  position: relative; /* ensure overlay is positioned relative to banner */
  /* Optional: set a min-height or viewport-height if desired:
     min-height: 300px;
     or height: 60vh;
  */
  /* إذا واجهت تغطية من الهيدر، يمكن إضافة margin-top مساوي لارتفاع الهيدر */
  /* margin-top: 60px; */
}
.hero-banner .hero-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}


/* ====================================================
   3. HERO Text
==================================================== */
/* Hero-text positioning and typewriter styles with desktop breakpoints */

/* Base (desktop) */
.hero-text {
  position: absolute;
  left: 50%;
  top: 80%; /* desktop: place text somewhat lower */
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

/* Typewriter text styles */
.hero-text .typewriter {
  font-size: 2.5rem;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  margin: 0 auto;
}
.hero-text .typewriter-sub {
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--primary-font);
  margin-top: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
.typewriter::after,
.typewriter-sub::after {
  content: '';
  display: inline-block;
  width: 1ch;
  margin-left: 2px;
  animation: blinkCursor 1s steps(1) infinite;
}
@keyframes blinkCursor {
  0%, 50% { background-color: #fff; }
  51%, 100% { background-color: transparent; }
}

/* Larger desktops */
@media (min-width: 1440px) {
  .hero-text {
    top: 70%; /* move a bit higher on large screens */
  }
  .hero-text .typewriter {
    font-size: 3rem;
  }
  .hero-text .typewriter-sub {
    font-size: 1.4rem;
  }
}
@media (min-width: 1920px) {
  .hero-text {
    top: 80%; /* even higher on very wide screens */
  }
  .hero-text .typewriter {
    font-size: 3.5rem;
  }
  .hero-text .typewriter-sub {
    font-size: 1.6rem;
  }
}

/* Tablet: shift text further down and allow wrap if needed */
@media (max-width: 1024px) {
  .hero-text {
    top: 80%;
    transform: translate(-50%, -50%);
  }
  .hero-text .typewriter {
    font-size: 2rem;
    white-space: normal;
    max-width: 90vw;
  }
  .hero-text .typewriter-sub {
    font-size: 1.1rem;
    white-space: normal;
    max-width: 90vw;
  }
}

/* Mobile: place even lower so it doesn't cover logo */
@media (max-width: 768px) {
  .hero-text {
    top: 85%;
    transform: translate(-50%, -50%);
  }
  .hero-text .typewriter {
    font-size: 1.6rem;
    white-space: normal;
    max-width: 90vw;
  }
  .hero-text .typewriter-sub {
    font-size: 1rem;
    white-space: normal;
    max-width: 90vw;
  }
}

/* ====================================================
   3. HERO GALLERY SECTION (FULLSCREEN ON DESKTOP)
==================================================== */
.hero-gallery {
  background-color: #000;
  margin: 40px auto;  /* تم تعديل الهامش العلوي ليكون أقرب للشعار */
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.hero-gallery .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  scroll-snap-align: start;
}
/* Thinner, sharper, denser glow */
.hero-gallery .image-wrapper {
  padding: 12px; /* Padding around image */
  background-color: transparent;
  border-radius: 12px;
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.6); /* Thinner, less spread */
}
.hero-gallery .image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 6;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: none;
}
.gallery-item-title {
  margin: 12px 0 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
.gallery-item-btn {
  position: relative;
  margin-top: 5%;
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.3rem;
  font-family: var(--primary-font);
  color: #fff;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}
.gallery-item-btn:hover {
  transform: scale(1.05);
  border-color: #ffffff;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.7);
}
.gallery-item-btn:hover::before {
  left: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    margin: 20px 0;
  }
  .hero-gallery .gallery-item {
    flex: 0 0 50%;
    margin-right: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    margin: 20px 0;
  }
  .hero-gallery .gallery-item {
    flex: 0 0 100%;
    margin-right: 10px;
  }
  /* إذا لم يكن الترتيب الخاص مطلوباً، احذف هذا: */
  /* .hero-gallery .gallery-item:nth-child(2) {
    order: -1;
  } */
}

/* ====================================================
   4. Food Highlight Section
==================================================== */
.food-highlight-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  text-align: center;
  color: white;
}
.food-highlight-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Barlow', sans-serif;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.food-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.food-item:hover {
  transform: translateY(-5px);
}
.food-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.food-item h3 {
  margin: 15px 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.food-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: white;
  background-color: #c62828;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.food-btn:hover {
  background-color: #e53935;
}
@media (max-width: 480px) {
  .food-highlight-title { font-size: 1.6rem; }
  .food-item h3 { font-size: 1rem; }
  .food-btn { font-size: 0.85rem; padding: 6px 14px; }
}

/* ====================================================
   5. Gallery Preview Section
==================================================== */
.gallery-preview {
  background-color: #121212;
  padding: 60px 20px;
  text-align: center;
  color: white;
}
.gallery-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Barlow', sans-serif;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
.gallery-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #c62828;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.gallery-btn:hover {
  background-color: #e53935;
}
@media (max-width: 480px) {
  .gallery-title { font-size: 1.6rem; }
  .gallery-btn  { font-size: 0.9rem; padding: 8px 16px; }
}

/* ====================================================
   6. Development Announcement Section
==================================================== */
.dev-announcement__container {
  text-align: center;
  padding: 60px 20px;
}
.dev-announcement__title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.dev-announcement__subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.dev-announcement__services {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.dev-announcement__service-item {
  margin: 8px 0;
  font-size: 1rem;
}
.dev-announcement__more {
  font-size: 0.9rem;
}
.dev-announcement__link {
  color: #c62828;
  text-decoration: none;
}
.dev-announcement__redirect {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* ====================================================
   7. Wing Image Section
==================================================== */
.wing {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}


