body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  transition: 0.4s;
}

.hero-overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s;
}

.hero:hover .hero-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.hero:hover::before {
  background: rgba(0,0,0,0.45);
}

.hero-top-logo {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: white;
  padding: 8px;
  border-radius: 20px;
  z-index: 3;
}

h1 {
  font-size: 60px;
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  background: #e63946;
  color: #fff;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4757;
  transform: scale(1.05);
}

.btn.outline {
  background: transparent;
  border: 2px solid #e63946;
}

/* GRID */
.place-photos {
  padding: 80px 20px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}

.photos-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.4s;
}

.photos-grid img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 20px;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* SOCIAL */
footer {
  background: #000;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: right;
  flex-wrap: wrap;
}

.footer-right {
  max-width: 400px;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #e63946;
  padding-bottom: 3px;
  transition: 0.3s;
}

.map-link:hover {
  color: #e63946;
}

/* موبايل */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    margin-bottom: 20px;
  }
}



.social-icons {
  width: 100%;
  justify-content: center;
  display: flex;
  justify-content: center;   /* يخليهم في النص */
  align-items: center;
  gap: 20px;
  margin: 30px auto;         /* يوسّط البلوك نفسه */
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e63946;
  transform: scale(1.1);
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 40px;
  text-decoration: none;
  z-index: 1000;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-overlay-content {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  h1 {
    font-size: 40px;
  }

  .photos-grid img {
    height: 280px;
  }
}
.food-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 15px;
}

.food-bar a {
  text-decoration: none;
  color: #fff;
  background: #1a1a1a;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.food-bar a:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230,57,70,0.4);
}
.food-bar a.active {
  background: #e63946;
  border-color: #e63946;
}


  .dev-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.dev-whatsapp {
  width: 40px;
  height: 40px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
}

.dev-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37,211,102,0.6);
}
@media (max-width: 768px) {
  .dev-info {
    align-items: center;
  }
}
