     /* =================  GLOBAL  ================= */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
  --primary-color: #ffd700;        /* ذهبى رئيسى */
  --dark-bg: #1a1a1a;              /* خلفية داكنة ثابتة */
  --text-light: #f2f2f2;           /* نص فاتح على الداكن */
  --text-muted: #999;              /* نص فرعى باهت */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* ========== NAVBAR ========== */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

#navbar img {
  width: 60px;
}

#navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

#navbar ul li a {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s, border-bottom 0.3s;
}

#navbar ul li a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* ========== HEADER / HERO ========== */
header {
  min-height: 100vh;
  background: url('photo/صورة واتساب بتاريخ 2025-06-15 في 16.38.02_1ec1b817.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

header * { position: relative; z-index: 10; }

header .contact {
  max-width: 700px;
  color: var(--text-light);
}

header .contact h1 {
  font-size: clamp(32px, 6vw, 58px);
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

header .contact p {
  margin-bottom: 35px;
  color: #e0e0e0;
}

.primary-text { color: var(--primary-color); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-primary {
  color: #000;
  background: var(--primary-color);
}

.btn-primary:hover {
  background: #ffe85c;
}

.btn-secondary {
  background: #333648;
  color: #fff;
  margin-top: 20px;
}

.btn-secondary:hover { background: var(--primary-color); color: #000; }

/* ========== ABOUT SECTION ========== */
#about {
  padding: 80px 0;
  background: url('./photo/background3.jpg') center/cover fixed;
}

#about .title,
#menu .title,
#offer .title { text-align: center; margin-bottom: 40px; }

#about .title h2,
#menu .title h2,
#offer .title h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #fff;
}

#about .title p,
#menu .title p,
#offer .title p { max-width: 800px; margin: 0 auto; color: var(--text-light); }

.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-contact .text { flex: 1 1 45%; color: var(--text-light); }

.about-contact .gallery {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

.about-contact .gallery img { border-radius: 10px; box-shadow: var(--shadow-sm); }

/* ========== OFFER SECTION ========== */
#offer {
  padding: 80px 0;
  background: url('./photo/background3.jpg') center/cover fixed;
  color: var(--text-light);
}

#offer .Offer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

#offer .Offer-items > div {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 15px;
  overflow: hidden;
  width: 280px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

#offer .Offer-items img { width: 100%; height: 180px; object-fit: cover; }

#offer .Offer-items h3 { margin: 15px 0 8px; font-size: 22px; color: var(--primary-color); }

#offer .Offer-items p { padding: 0 18px 18px; color: #e8e8e8; }

#offer .Offer-items span { color: var(--primary-color); font-weight: 700; margin-left: 6px; }

/* ========== MENU SECTION ========== */
.menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
}

.menu-column { flex: 1 1 300px; }

.menu-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
  align-items: center;
}

.menu-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; }

.menu-item h3 { font-size: 18px; color: #383848; margin-bottom: 5px; display: flex; justify-content: space-between; align-items: center; }

.menu-item p { color: #666; font-size: 14px; }

/* ========== GALLERY SECTION ========== */
#gallary {
  background: url('./photo/background3.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
}

#gallary h2 { text-align: center; font-size: 2.2rem; color: var(--text-light); margin-bottom: 30px; }

#gallary .img-gallary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

#gallary .img-gallary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

#gallary .img-gallary img:hover { opacity: 1; }

/* ========== CONTACT SECTION ========== */
#contact {
  padding: 80px 0 100px;
  background: var(--dark-bg);
  color: var(--text-light);
}

.contact-content { display: flex; justify-content: center; }

.contact-info {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
  max-width: 900px;
}

.contact-info > div { flex: 1 1 260px; min-width: 230px; }

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
  position: relative;
}

.contact-info h3::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 45px; height: 3px; background: var(--primary-color); border-radius: 2px;
}

.contact-info p { margin: 6px 0; color: #ccc; }

.contact-info p i { color: var(--primary-color); margin-right: 8px; }

.contact-info a { display: inline-block; font-size: 1.4rem; margin-right: 12px; color: #ddd; transition: color 0.3s, transform 0.3s; }

.contact-info a:hover { color: var(--primary-color); transform: translateY(-3px); }

@media (max-width: 768px) {
  #navbar ul { gap: 15px; }
  .contact-info { flex-direction: column; text-align: center; gap: 35px; }
  .contact-info h3::after { left: 50%; transform: translateX(-50%); }
}
