/* Arabic Font */
@font-face {
    font-family: 'DINNextArabic';
    src: url('../fonts/din-next-lt-arabic-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* English Font */
@font-face {
    font-family: 'OkineSans';
    src: url('../fonts/MADE Okine Sans PERSONAL USE.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:lang(ar) {
    font-family: 'DINNextArabic', Arial, sans-serif;
}

:lang(en) {
    font-family: 'OkineSans', Arial, sans-serif;
}

:root {
  --primary-color: #2DA645;   
  --secondary-color: #1f2937; 
  --text-color: #374151;      
   --heading-color: #1f2937;  
  --paragraph-color: #6b7280; 
  --muted-color: #9ca3af;     
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Language Switch Buttons */
.language-switch {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.language-switch button {
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.language-switch button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Arabic', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    direction: rtl;
    text-align: right;
    padding-top: 80px;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}
  /*The Header starts here*/
.top-header {
    background-color:var(--primary-color);
    padding: 8px 0;
    font-size: 14px;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.info-left, .info-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

  .header {
    background-color: var(--primary-color);
    color: white;
    position: fixed;   
    top: 0;           
    left: 0;
    width: 100%;      
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.logo {
    width: 220px;  
    height: auto;
}

.logo img {
    width: 100%;    
    height: auto;
    object-fit: contain;
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: center; /* الروابط في الوسط */
    gap: 30px;
}

.navigation a {
    font-size: 18px;      
    font-weight: 600;      
    color: white;        
    text-decoration: none; 
    padding: 12px 18px;    
    transition: color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navigation a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #bbf7d0; 
    transform: translateY(-2px);
}
.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.nav-link.active {
    background-color: var(--primary-color);
}

    /* Hero Section*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/holidayinbakkahhotel.avif") no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(45, 166, 69, 0.7);
}

.blessed {
    color: #ffffff;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
  width: 100%;        
  max-width: 100%;    
  margin: 0;          
  padding: 40px 0;   
  background: #fff;  
}

.about-text {
  width: 100%;        
  margin: 0;
  text-align: right;  
  padding: 0 0px; 
}

.about-subtitle {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-text p {
  font-size: 18px;
  color: var(--paragraph-color);
  line-height: 1.9;
  margin-bottom: 15px;
}
.vision-mission {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-mission .box {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease-in-out;
}

.vision-mission .box-title {
  color: #2DA645; 
  font-weight: bold;
  margin-bottom: 10px;
  border-right: 3px solid #2DA645;
  padding-right: 10px;
}

.section-divider {
  width: 100%;
  line-height: 0;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}


    /* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
    color:  var(--heading-color);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: var(--paragraph-color);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  margin-bottom: 80px; /* مسافة بين المربعات والقسم اللي بعده */
}

.feature-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid #2DA645;
  text-align: center;
  transition: all 0.3s ease;
  
  /* التأثير المشع */
  box-shadow: 0 0 15px rgba(45, 166, 69, 0.3);
}

.feature-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 25px rgba(45, 166, 69, 0.6);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--paragraph-color);
    line-height: 1.6;
}

   
    /* Footer */
.footer-heading {
  font-size: 40px;      
  font-weight: bold;
  color: var(--primary-color);      
  margin-bottom: 20px;  
  text-align: center;     
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;           
  margin-top: 40px;  
  margin-bottom: 20px;   
  font-size: 18px;     
}
.contact-item i {
  font-size: 22px;     
  color: var(--primary-color); 
  line-height: 1.8;   }
.contact-item a {
  color: white;
  font-size: 18px;     
  font-weight: 600;
  text-decoration: none;
  line-height: 1.8;   
}

.contact-item a:hover {
  color: var(--primary-color);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #f3f4f7;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: var(--secondary-color);  
    color: white; 
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 100px;  
    height: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.footer-brand h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted-color);
}

.footer-copyright {
    text-align: center;
    color: var(--paragraph-color);
    font-size: 14px;
}

/* Responsive */
/*For Tablet*/
@media (max-width: 768px) {
   .hero-title {
       font-family: 'Lalezar', cursive;
   }
    .section-header h2 {
        font-size: 28px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/*For Mobile*/
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .feature-card h3 {
    font-size: 18px;
}

}
/* About Us */
:lang(en) .about-text {
  text-align: left;
}

/* Footer */
:lang(en) .footer-content {
  justify-items: start;   
}
.footer-section {
  text-align: center;   
}

.contact-item {
  justify-content: center;  
  flex-direction: row;      
  gap: 10px;               
}

#footer-mail {
  direction: ltr;           
  text-align: center;
  display: inline-block;
}

