/* general rools */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    direction: rtl;
}
body { 
    font-family: 'Tajawal', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.8;
}

/* ------------------------------
   الألوان الأساسية 
------------------------------ */
:root {
    --main-color: #045e93;   /* اللون الأساسي */
    --white: #ffffff;
    --dark: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; 
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--main-color);
}

p {
    font-size: 16px;
    color: #444;
}
/* ------------------------------
   الأزرار العامة
------------------------------ */
.btn {
    background-color: var(--main-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: .3s;
}
.btn:hover {
    background-color: #03486e;
}

section {
    padding: 60px 0;
}
/* header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;    
} */
header .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
}
/* ------------------------------
   قسم البانر الرئيسي (Hero)
------------------------------ */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero .content {
    max-width: 550px;
}
/* end rools  */



/* ------------------------------
   HEADER
------------------------------ */

header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    text-align: right; 
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: .3s;
}

.main-nav ul li a:hover {
    color: var(--main-color);
}

/* زر احجز الآن في القائمة */
.main-nav .btn {
    padding: 8px 18px;
    border-radius: 6px;
    color: #fff;
}

/* ==========================
   Hamburger Icon
========================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 3px;
}

/* ==========================
   Mobile Menu Panel
========================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* مخفية */
    width: 70%;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding: 25px;
    transition: 0.4s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0; 
}

.mobile-menu .close-menu {
    font-size: 35px;
    color: var(--main-color);
    cursor: pointer;
    margin-bottom: 20px;
    text-align: left;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* ==========================
   Responsive Rules
========================== */
@media (max-width: 768px) {
    .main-nav {
        display: none; 
    }

    .hamburger {
        display: flex; 
    }

    .logo {
        text-align: right;
        font-size: 20px;
    }
}


/* ========================= */
/* Hero Section              */
/* ========================= */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/cover1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    direction: rtl;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeIn 1.6s ease;
    color: #fff;
}
.hero p.slog {
    font-size: 36px;
    color: #fff;
}

.hero-btn {
    background: #045e93;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    animation: fadeInUp 1.2s ease;
}

.hero-btn:hover {
    background: #02486f;
}

/* responsive */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 28px;
    }
}

/* ========================= */
/* about Section          */
/* ========================= */

.about-us {
  padding: 90px 0;
  background: #f9fbfd;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-text {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  font-size: 17px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.about-features i {
  color: #045e93;
  margin-left: 10px;
  font-size: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-features li {
    justify-content: center;
  }
}
/* ========================= */
/* about Section رؤيتنا    */
/* ========================= */
.vision-mission {
  padding: 90px 0;
  background: #ffffff;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.vision-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: .35s ease;
}

.vision-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vision-box i {
  font-size: 44px;
  color: #045e93;
  margin-bottom: 18px;
}

.vision-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.vision-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 992px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= */
/* Features Section          */
/* ========================= */

.features {
    padding: 80px 0;
    background: #ffffff;
    direction: rtl;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #045e93;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 25px;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.feature-box img {
    width: 70px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #045e93;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}


/* ========================= */
/* Rooms Section             */
/* ========================= */

.rooms {
    padding: 80px 0;
    background: #f7f9fc;
    direction: rtl;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
    text-align: center;
    padding-bottom: 25px;
}

.room-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.room-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #045e93;
}

.room-box p {
    font-size: 16px;
    color: #444;
    padding: 0 20px;
    line-height: 1.7;
}

.price {
    display: inline-block;
    margin-top: 15px;
    background: #045e93;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 700;
}

/* responsive */
@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================= */
/* Services Section          */
/* ========================= */

.services {
    padding: 80px 0;
    background: #ffffff;
    direction: rtl;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: #f7f7f7;
    padding: 30px 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.service-box img {
    width: 60px;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 20px;
    color: #045e93;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 5px;
}

/* responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================= */
/* Gallery Section           */
/* ========================= */
.gallery {
    padding: 80px 0;
    background: #f7f9fc;
    direction: rtl;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* عملائنا المميزون  */
.clients {
  padding: 80px 0;
  background: #f9fbfd;
  text-align: center;
}

.clients .section-desc {
  max-width: 650px;
  margin: 15px auto 45px;
  font-size: 18px;
  color: #555;
}

.clients-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.client-box {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: .35s ease;
  width: 260px;
}

.client-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.client-box img {
  max-width: 160px;
  height: auto;
  margin-bottom: 15px;
}

.client-box h4 {
  font-size: 18px;
  color: #045e93;
}
@media (max-width: 600px) {
  .clients-grid {
    gap: 25px;
  }

  .client-box {
    width: 100%;
    max-width: 280px;
  }
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    width: 80%;
    max-width: 900px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}


/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 220px;
    }
}





.location {
  padding: 70px 0;
  background: #f9f9f9;
  text-align: center;
}

.location .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.location .location-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.location .map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.location iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .location .section-title {
    font-size: 26px;
  }

  .location .location-desc {
    font-size: 16px;
  }

  .location .map-wrapper {
    height: 350px;
  }
}





.contact-booking {
  padding: 90px 0;
  background: #ffffff url('../img/pattern.png'); /* خفيفة جداً */
  background-size: contain;
  background-repeat: repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.contact-info li i {
  color: #045e93;
  font-size: 20px;
  margin-left: 10px;
}

.booking-form input,
.booking-form select {
  padding: 14px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  font-size: 17px;
}

.btn-book {
  background: #045e93;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: .3s;
}
.btn-book:hover {
  background: #03466e;
}

/* زر واتساب ثابت */
.whatsapp-fixed {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #25D366;
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 0 10px #0002;
  z-index: 9999;
}

/* Toast */
.toast {
  position: fixed;
  top: 30px;
  right: -300px;
  background: #045e93;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 17px;
  transition: .5s ease;
  z-index: 999999;
}
.toast.show {
  right: 30px;
}

/* Responsive */
@media(max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}




.hotel-footer {
  background: #03466e;
  color: #fff;
  padding: 70px 0 20px;
  position: relative;
  background-image: url('../img/pattern.png');
  background-size: contain;
  background-repeat: repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 15px;
}

.footer-logo p {
  opacity: 0.9;
  line-height: 1.8;
  font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: .9;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover {
  color: #dceaf7;
  padding-right: 5px;
}

.footer-contact i {
  color: #00aaff;
  font-size: 18px;
  margin-left: 8px;
}

.footer-social a {
  display: inline-block;
  margin-left: 10px;
  background: #fff;
  color: #045e93;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  transition: .3s;
}

.footer-social a:hover {
  background: #dceaf7;
  color: #023451;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #ffffff33;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  opacity: .8;
  font-size: 14px;
}
@media(max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul li,
  .footer-contact ul li {
    justify-content: center;
  }

  .footer-social a {
    margin: 8px;
  }
}


