

@font-face {
  font-family: "Neue Haas";
  src: url("fonts/NeueHaas-Regular.woff2") format("woff2"),
       url("fonts/NeueHaas-Regular.woff") format("woff"),
       url("fonts/NeueHaas-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Atyp TEST";
  src: url("fonts/AtypTEST-Bold.woff2") format("woff2"),
       url("fonts/AtypTEST-Bold.woff") format("woff"),
       url("fonts/AtypTEST-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Atyp TEST";
  src: url("fonts/AtypTEST-Italic.woff2") format("woff2"),
       url("fonts/AtypTEST-Italic.woff") format("woff"),
       url("fonts/AtypTEST-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}



/* Example for Regular and Bold weights */




@font-face {
  font-family: "Neue Haas";
  src: url("fonts/NeueHaas-Regular.woff2") format("woff2"),
       url("fonts/NeueHaas-Regular.woff") format("woff"),
       url("fonts/NeueHaas-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Neue Haas";
  src: url("fonts/NeueHaas-Bold.woff2") format("woff2"),
       url("fonts/NeueHaas-Bold.woff") format("woff"),
       url("fonts/NeueHaas-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Neue Haas";
  src: url("fonts/NeueHaas-Italic.woff2") format("woff2"),
       url("fonts/NeueHaas-Italic.woff") format("woff"),
       url("fonts/NeueHaas-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Neue Haas";
  src: url("fonts/NeueHaas-BoldItalic.woff2") format("woff2"),
       url("fonts/NeueHaas-BoldItalic.woff") format("woff"),
       url("fonts/NeueHaas-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}


h1 {
 font-family: 'Avenir Regular', sans-serif;}

h2 {
  font-family: "LyonArabic Regular";
}

h3 {
  font-family: "LyonArabic Light";
}

h4 {
  font-family: "LyonArabic Regular";
}
@font-face {
  font-family: "LyonArabic Bold";
  src: url("./fonts/LyonArabicDisplay-Bold-App.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "LyonArabic Light";
  src: url("./fonts/LyonArabicDisplay-Light-App.woff2") format("woff2");
  font-weight: 300;
}

@font-face {
  font-family: "LyonArabic Regular";
  src: url("./fonts/LyonArabicDisplay-Regular-App.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Atyp TEST";
  src: url("../fonts/AtypTEST-Regular.woff2") format("woff2"),
       url("../fonts/AtypTEST-Regular.woff") format("woff"),
       url("../fonts/AtypTEST-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}


*{
   font-family: "Salma Arabic";
   font-weight: 400;
}
/* Banner sections */
.bannerSection {
  display: flex;
  width:100%;
  
  flex-wrap: wrap;
  align-items: center;
  margin: 0; 
  padding: 0;
}

/* First banner: image right, text left */
.bannerSection.bannerRight { flex-direction: row-reverse; }

/* Second banner: image left, text right */
.bannerSection.bannerLeft { flex-direction: row; }

/* Banner Slider */
.bannerSlider {
  position: relative;
  width: 100%;
  height:100vh;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0;
  perspective: 1px; /* for pseudo-parallax feel */
}

/* Each image in slider */
.bannerSlider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slide 9s infinite;
  transform: translateZ(-1px) scale(2); /* pseudo-parallax */
}

/* stagger image slides */
.bannerSlider img:nth-child(1) { animation-delay: 0s; }
.bannerSlider img:nth-child(2) { animation-delay: 3s; }
.bannerSlider img:nth-child(3) { animation-delay: 6s; }

/* Slide animation */
@keyframes slide {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

/* Banner Text */
.bannerText {
  flex: 1;
  width: 50%;
  padding: 20px;
}

.bannerText h4 {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  text-align: right;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 600;

}

.hr-red {
  width: 50px;
  border: 2px solid #b92b4f;
  margin-bottom: 20px;
}

/* ========== Responsive Styles ========== */

/* Tablets / small laptops (≤1024px) */
@media (max-width: 1024px) {
  .bannerSlider {
    height: 400px;
  }

  .bannerText h4 {
    font-size: 16px;
font-family: "IBM Plex Sans Arabic", sans-serif;  font-weight: 600;

  }
}

/* Tablets portrait (≤820px) */
@media (max-width: 820px) {
    .video-container {
    height: 95vh; /* Slightly smaller height */
  }

  .left-image {
    width: 120px;
    bottom: 40px;
    left: 25px;
  }
  .bannerSection {
    flex-direction: column !important; /* stack text + image */
  }

  .bannerSlider,
  .bannerText {
    width: 100%;
  }

  .bannerSlider {
    height: 350px;
  }

  .bannerText {
    padding: 15px;
    text-align: center;
  }
}

/* Smaller tablets (≤768px) */
@media (max-width: 768px) {
  .bannerSlider {
    height: 300px;
  }

  .bannerText h4 {
    font-size: 15px;
    line-height: 1.5;
     font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 600;
  }
}

/* Phones (≤375px) */
@media (max-width: 375px) {
  .bannerSlider {
    height: 220px;
  }

  .bannerText {
    padding: 10px;
  }

  .bannerText h4 {
    font-size: 12px;
font-family: "IBM Plex Sans Arabic", sans-serif;  font-weight: 600;
  }

  .hr-red {
    width: 30px;
    border-width: 1.5px;
  }
}

/* Laptops (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .bannerSection {
   width:100%;
   padding: 0;
   margin: 0;
  

}

  .bannerSlider {
    height: 420px; /* smaller than desktop */
  }

  .bannerText {
    padding: 30px;
  }

  .bannerText h4 {
    font-size: 17px;
    text-align: right; /* or center if you prefer */
   font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 600;
  }
}
