/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lexend', sans-serif;
  color: #fff;
  background-color: #ffffff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { width: 100%; border-radius: 10px; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(17,17,17,0.9);
  border-bottom: 2px solid #d4af37; /* الخط الرقيق تحت الهيدر */
  z-index: 10;
}

header .logo img {
  height: 60px;
}

/* Navigation */
nav ul.nav-center {
  display: flex;
  justify-content: center; /* توسيط القائمة */
  gap: 40px;
  list-style: none;
}

nav ul.nav-center li a {
  color: #f5d77b;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul.nav-center li a:hover {
  color: #fff;
}

#home {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 120px; /* المسافة بين الفيديو والخط */
  box-sizing: border-box;
}
#home-video {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%); /* توسيط الفيديو أفقياً */
  width: 80%; /* تصغير من الجانبين */
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
  z-index: 0;
}

#home .content {
  position: relative;  
  top: 20%;
  z-index: 0;
  background: rgba(0,0,0,0.6);
  padding: 30px 40px;
  border-radius: 15px;
  animation: fadeIn 2s ease;
}

#home h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #f5d77b;
}

#home p {
  font-size: 1.2rem;
  margin: 15px 0;
}
#home a {
  display: inline-block;
  background: #f5d77b;
  color: #111;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

#home a:hover {
  background: #fff;
  color: #111;
  transform: scale(1.05);
}




/* ===== SERVICES ===== */
section { padding: 100px 60px; }

#services { background: #f5f3f3; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #0c0c0c;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service {
  background: #222;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.4s;
  animation: fadeUp 1s ease forwards;
}

.service:hover { transform: translateY(-10px); }

.service i {
  font-size: 2rem;
  color: #f3c846;
  margin-bottom: 15px;
}

/* ===== GALLERY ===== */
#gallery { background: #e7e5e5; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
/* ===== ABOUT SECTION ===== */
#about {
  background: #f0eded;
  color: #fff;
  padding: 80px 10%;
  font-family: 'Lexend', sans-serif;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.about-text h2 {
  color: #d47e37;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #242323;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive */
@media(max-width: 900px){
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }
}

#testimonials {
  background-color: #b1afaf;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Lexend', sans-serif;
}

#testimonials h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Grid for 4 cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #000;
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial .stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin: 5px 0;
}

.testimonial .comment {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.4;
}



/* contact Start */
#contact {
  background: #c9c6c6;
  color: #3b3a3a;
  padding: 80px 10%;
  font-family: 'Lexend', sans-serif;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-form h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-form p {
  margin-bottom: 20px;
  color: #0e0d0d;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #f0f3f0;
  color: #4e4d4d;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

#sendBtn {
  width: 100%;
  background: #d4af37;
  color: #111;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

#sendBtn:hover {
  background: #fff;
  color: #111;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* contact 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:first-child {
  padding-left: 80px; /* يبعد محتوى العمود الأيسر عن الحافة */
}


#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: all 0.3s ease;
}

#footer .footer-top .col ul li a:hover {
  color: #f5d77b;
  transform: translateX(5px);
}

#footer .copyright {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
  font-size: 0.9rem;
}

#footer .copyright a {
  color: #f5d77b;
  text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
  #footer .footer-top .row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #footer .footer-top .col p {
    max-width: 100%;
  }
}
/* Footer End */

.whatsapp-float:hover { transform: scale(1.1); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  header { flex-direction: column; padding: 10px 20px; }
  nav ul.nav-center { flex-wrap: wrap; justify-content: center; margin-top: 10px; }
  #about { flex-direction: column; }
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 2px 2px 5px #999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE / MOBILE ===== */
@media (max-width: 768px) {
  header { 
    flex-direction: column; 
    padding: 10px 20px; 
  }

  nav ul.nav-center { 
    flex-direction: column; 
    gap: 20px; 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease; 
  }

  nav ul.nav-center.nav-active { 
    max-height: 500px; 
  }

  .nav-toggle { 
    display: block; 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    font-size: 1.8rem; 
    color: #f5d77b; 
    cursor: pointer; 
    z-index: 1100;
  }

  /* Gallery responsive */
  .gallery-grid { 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  }

  /* Home video responsive */
  #home-video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 15px; 
  }
}

