@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* General Styles */
:root {
    --bg-primary: #0e1a60; /* لون الخلفية الأساسي */
    --color-primary: #0e1a60; /* لون النص الأساسي */
    --color-secondary: #4070f4; /* لون النص الثانوي */
    --color-light: #fff; /* لون النص الفاتح */
    --color-dark: #000; /* لون النص الداكن */
  }
  html{
    scroll-behavior: smooth;
  }
  
/* Header */
header {
  background: var(--bg-primary);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

nav {
  padding: 20px;
  transition: all 0.4s ease;
}

nav.sticky {
  padding: 15px 20px;
  background: var(--color-secondary);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
}

/* الشعار */
.logo a {
  font-weight: 500;
  font-size: 35px;
  color: var(--color-light);
  text-decoration: none;
}

/* الروابط */
.nav-links {
  display: flex;
  align-items: center;
  flex-direction: row; /* من اليسار إلى اليمين */
}

.nav-links li {
  list-style: none;
  margin: 0 10px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--color-light);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 4px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: var(--color-secondary);
}

/* زر الهامبرغر */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 6px;
  z-index: 1003;
}

/* زر الإغلاق داخل القائمة */
.nav-links .close {
  display: none;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1003;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%; /* إخفاء القائمة */
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 1001;
  }

  .nav-links.open {
    left: 0; /* إظهار القائمة */
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links .close {
    display: block;
  }

  .menu-btn {
    display: block;
  }

  /* إخفاء الروابط على الشاشات الصغيرة ما لم تكن في القائمة */
  .nav-links {
    flex-direction: column;
  }
}

  
 /* Hero Section */
.hero {
    background: linear-gradient(rgba(14, 12, 12, 0.5), rgba(39, 32, 32, 0.5)), url("../images/header.jpeg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
    padding-top: 80px; /* Adjust for fixed header */
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6; /* تحسين المسافة بين الأسطر */
  }
  
  .btn-primary {
    background: var(--color-secondary);
    color: var(--color-light);
    border: none;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: var(--bg-primary);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px; /* حجم أصغر للشاشات الصغيرة */
    }
  
    .hero-content p {
      font-size: 16px; /* حجم أصغر للشاشات الصغيرة */
      line-height: 1.5; /* تحسين المسافة بين الأسطر */
    }
  }
  
  .btn-primary {
    background: var(--color-secondary);
    color: var(--color-light);
    border: none;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: var(--bg-primary);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  }

/* Features Section */
.features-section {
    margin-top: -90px;
}

.bg1, .bg2, .bg3 {
    background: #2063b2;
}

.features-box h3, .features-box p {
    color: #FFF;
}

.features-box {
    padding: 40px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    max-width: 1200px; /* تحديد عرض أقصى */
    margin: 0 auto; /* مركز القسم في الصفحة */
}


.btn-primary {
    background-color: #2063b2;
    border-color: #2063b2;
}

.about-media {
    border: 10px solid #2063b2;
}

/* Services Section */
.section-title {
    margin-bottom: 60px;
}

.services-section {
    padding: 100px 0 50px;
    background: #efefef;
}

.services-box {
    background: #FFF;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.services-box h3 {
    margin: 15px 0 20px;
}

/* Booking Section */
.booking-section {
    background: url("../images/booking-bg.jpg") no-repeat;
    background-size: cover;
}

.form-control {
    height: 40px;
}

textarea {
    height: 214px !important;
}
/* Footer */
footer {
  background: #2063b2;
  padding: 100px 0;
  color: #FFF;
}

ul.footer-address li i {
  position: absolute;
  left: 0;
  top: 10px;
}

ul.footer-address li {
  position: relative;
  padding-left: 35px;
}

ul.footer-address li a {
  color: #FFF;
}

.footer-widget h3 {
  margin-bottom: 30px;
}

ul.footer-menu li a {
  color: #FFF;
  font-size: 16px;
  margin-bottom: 8px;
  display: inline-block;
}

.contact-section{
  padding: 5% 4px;
  background: linear-gradient(rgba(14, 12, 12, 0.5), rgba(39, 32, 32, 0.5)), url("../images/booking-bg.jpg");
}

/* Responsive Styles */
@media (max-width: 768px) {
  footer {
      padding: 40px 10px;
  }

  .section-title {
      font-size: 26px;
      margin-bottom: 30px;
  }

  .banner-text-wrap h1 {
      font-size: 39px;
  }

  .booking-section, .about-section, .services-section {
      padding: 40px 0;
  }

  /* تعديل حجم الخريطة لتناسب الشاشات الصغيرة */
  iframe {
      width: 100%; /* تأكد من أن الخريطة تأخذ العرض الكامل */
      height: 250px; /* يمكنك تعديل الارتفاع حسب الرغبة */
      border: none; /* إزالة الحدود من الخريطة */
  }
}

.BTN-UP{
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #194b83;
  bottom: 30px;
  right: 20px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 22px;
  display: none;
}
.BTN-UP:hover{
  color: #efefef;
}