@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




body {
  font-family: "Open",serif
}

h1,
h2,
h3 {
  font-family: "Oswald", serif;
  color: var(--dark-gray);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/* utility classes */
.container {
  max-width: 1200px;
  margin: auto;
}

.text-primary {
  color: var(--light-brown);
  margin: auto;
}

.heading {
  text-align: center;
}

.heading span {
  font-size: 18px;
}

.heading h2 {
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Header Start */
#header {
  position:;
  background-color: #050505;
  width: 100%;
  border-bottom: 1px solid #f1eded;
  z-index: 1000;
}

#header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  height: 90px;
}

#header .navbar .logo {
  width: 90px;
}


#header.scrolled {
  background-color: #111; /* لون جديد منين تسكرول */
  box-shadow: 0 2px 10px rgba(0,0,0,0.5); /* ظل صغير */
  transition: 0.3s;
}

#header .navbar ul {
  display: flex;
}

#header .navbar ul li a {
  color: beige;
  font-size: 28px;
  margin: 0 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#header .navbar ul li a:hover {
  color: cadetblue;
}
/* Header End */

/* Home start */
#home {
  background: url("./imgs/home-bg.png") center no-repeat;
  background-size: 100%;
  background-color: rgb(238, 236, 236);
 
  
  
}

#home .home-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
  gap: rem;
  align-items: center;

}

#home .home-content .content-text h3 {
  font-size: 24px;
  max-width: 6000px;
  color: #000;
}

#home .home-content .content-text h1 {
  font-size: 60px;
  margin: 20px 0;
  line-height: 1.3;
  color: #000;
}

#home .home-content .content-text p {
  font-size: 18px;
  line-height: 1.5;
}

#home .home-content .content-text .btn {
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--light-brown);
  color: #fff;
  padding: 15px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#home .home-content .content-text .btn:hover {
  background-color: var(--dark-gray);
}

#home .home-content .content-text .btn i {
  margin-left: 5px;
}

#home .home-content video {
  display: block;
  width: 100%;
}

#home .content-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* زر الحجز */
#home .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #080808, #070707);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 246, 246, 0.15);
}

/* responsive للشاشات الصغيرة */
@media (max-width: 768px) {
  #home .home-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #home .content-text {
    text-align: center;
  }
}
/* Home End */

/* About Start */
#About,
#Home,
#Services, 

#Contact,
#Footer .footer-top{
  padding: 6rem 0;
}

#About .Row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

#About .Row img {
  max-width: 700px;
  height: auto;
  border-radius: 10px;
}

#About .Row .about-content h2 {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 15px;
}

#About .Row .about-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

#About .Row .item {
  margin: 1.5rem 0;
}

#About .Row .item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}
/* About End */
/* Services Start */
#Services {
  background-color: var(--bg-secondary, #ebe8e8);
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

#Services.heading {
  text-align: center;
  margin-bottom: 3rem;
}

#Services .heading .text-primary {
  color: #0f0f0f; /* لون مميز */
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

#Services .heading h2 {
  font-size: 2rem;
  color: #080808;
}

/* Grid for items */
#Services .Row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Individual item card */
#Services.item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

#Services .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#Services .item img {
  width: 100%;
  height: auto;
  display: block;
}

#Services .details {
  padding: 1.5rem;
}

#Services .details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #222;
}

#Services .details p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  #Services .Row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #Services .Row {
    grid-template-columns: 1fr;
  }

  #Services .heading h2 {
    font-size: 1.75rem;
  }

  #Services .details h3 {
    font-size: 1.1rem;
  }

  #Services .details p {
    font-size: 0.9rem;
  }
  
}
/* Services End */

#Prices {
background-color: #686565;
  background-size: cover;
  padding: 100px 0;
}

#Prices .heading h2 {
  font-size: 52px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.price-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  gap: 30px;
  margin-bottom: 40px;
  transition: transform 0.3s;
}

.price-item:hover {
  transform: translateY(-5px);
}

.price-img img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* 🟢 عمود واحد منظم */
.price-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
/* ===== تنسيق "A PARTIR" فقط ===== */
.starting {
  font-size: 11px;
  font-weight: 500;
  color: #c9b49a; /* بيج أنيق */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 4px;
  opacity: 0.9;
  position: relative;
  top: -2px; /* ترفعها شوية فوق السعر */
}




.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-name {
  font-weight: 500;
}

.service-price {
  font-weight: bold;
  color: #d4ad64;
}

/* Responsive */
@media (max-width: 768px) {
  .price-item {
    flex-direction: column;
    text-align: center;
  }

  .price-img img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .service {
    font-size: 16px;
  }
}
/* ===== à partir de ===== */
:root {
  --a-partir-font-size: 10px; /* يمكنك تغييره بسهولة */
  --a-partir-color: #8F673A;  /* يمكنك تغييره بسهولة */
}

.service-price .starting {
  font-size: var(--a-partir-font-size); /* حجم متغير */
  margin-right: 10px; /* مسافة صغيرة قبل السعر */
  vertical-align: middle;
  color: var(--a-partir-color); /* لون متغير */
}


/* Book Now Button */
.book-now {
  margin-top: 40px;
}

.book-now .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #e91e63;
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.book-now .btn:hover {
  background: #c2185b;
}



#Reviews .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* تصغير الكروت */
  gap: 1.8rem;
  margin-top: 4rem;
}

#Reviews .row .item {
  background-color: #f9f9f9;
  text-align: center;
  padding: 20px 15px 30px; /* تصغير البادينغ */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

#Reviews .row .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

#Reviews .row .item img {
  width: 80px; /* تصغير الصورة */
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgb(254, 255, 240);
  margin: 0 auto;
  display: block;
  margin-top: -40px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

#Reviews .row .item h3 {
  margin: 12px 0 5px;
  font-size: 1rem;
  color: #333;
}

#Reviews .row .item .email {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 8px;
}

#Reviews .row .item .stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 8px;
}

#Reviews .row .item .text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  #Reviews .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #Reviews .row {
    grid-template-columns: 1fr;
  }
}

/* Location Start */
#location {
  background-color: var(--bg-color);
  padding: 60px 0;
}

#location .row {
  display: flex;
  flex-direction: column; /* باش يكونو عموديين */
  gap: 2rem; /* تباعد بين المعلومات والخريطة */
} 

#location .row .location-info { 
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#location .row .location-info h3 { 
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

#location .map iframe { 
  width: 100%;   
  height: 400px; /* طول مناسب */
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Location End */
/* Footer Start */
#footer {
  background: rgb(8, 8, 8);
  background-size: cover;
  color: #fcfbfb;
  padding-top: 40px;
  font-family: "Lexend Peta", sans-serif;
}

#footer .footer-top .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

#footer .footer-top .col h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

#footer .footer-top .col p {
  max-width: 400px;
  line-height: 1.6;
}

#footer .footer-top .col ul {
  list-style: none;
  padding: 0;
}

#footer .footer-top .col ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

#footer .footer-top .col ul li i {
  color: #8f673a;
}

#footer .footer-top .col ul li a {
  color: #f3f2f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-top .col ul li a:hover {
  color: #ffb6c1;
}

#footer .copyright {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}

#footer .copyright a {
  color: #ffb6c1;
  text-decoration: none;
}
/* Footer End  */
/* 🌍 تحسين العرض في جميع الشاشات */
html {
  scroll-behavior: smooth;
}

/* 📱 تعديل القائمة في الهاتف */
@media (max-width: 900px) {
  #header .navbar ul {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    text-align: center;
  }

  #header .navbar ul.show {
    display: flex;
  }

  #header .navbar ul li {
    margin: 15px 0;
  }

  #header .navbar ul li a {
    font-size: 20px;
  }

  /* نضيف زر صغير لفتح القائمة */
  #header .menu-toggle {
    display: block;
    font-size: 26px;
    color: white;
    cursor: pointer;
  }

  #header .navbar {
    padding: 0 20px;
  }
}

/* إخفاء الزر في الحواسيب */
#header .menu-toggle {
  display: none;
}

/* 📱 تحسين الصفحة الرئيسية */
@media (max-width: 768px) {
  #home {
    background-size: cover;
    padding: 40px 20px;
  }

  #home .home-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #home .home-content .content-text h1 {
    font-size: 36px;
  }

  #home .home-content .content-text h3 {
    font-size: 18px;
  }

  #home .home-content .content-text p {
    font-size: 16px;
  }

  #home video {
    width: 100%;
    border-radius: 10px;
  }
}

/* 📱 قسم About */
@media (max-width: 768px) {
  #About .Row {
    flex-direction: column;
    text-align: center;
  }

  #About .Row img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}

/* 📱 قسم Footer */
@media (max-width: 768px) {
  #footer .footer-top .row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #footer .footer-top .col ul li {
    justify-content: center;
  }
}
