@font-face {
    font-family: "Beiruti-Regular";
    src: url(../css/font/Beiruti-Regular.ttf);
    font-style: normal;
}
@font-face {
    font-family: "Beiruti-Light";
    src: url(../css/font/Beiruti-Light.ttf);
    font-style: normal;
}
@font-face {
    font-family: "Beiruti-Medium";
    src: url(../css/font/Beiruti-Medium.ttf);
    font-style: normal;
}
@font-face {
	font-family: 'ElegantIcons';
	src:url('../css/font/ElegantIcons.eot');
	src:url('../css/font/ElegantIcons.eot?#iefix') format('embedded-opentype'),
		url('../css/font/ElegantIcons.woff') format('woff'),
		url('../css/font/ElegantIcons.ttf') format('truetype'),
		url('../css/font/ElegantIcons.svg#ElegantIcons') format('svg');
	font-weight: normal;
	font-style: normal;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'Beiruti-Regular';
}

body {
    font-family: 'Beiruti-Regular';
}

h1, h2{
    font-family: 'Beiruti-Light';
}
a {
    text-decoration: none;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}
header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: transparent;
    padding: 20px 17%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
    direction: ltr;
}

/* Sticky Header */
header.sticky {
    padding: 20px 17%;
    background-color: #000;
}

/* Left Section (Social Media) */
.h-left {
    display: flex;
    align-items: center;
}

.h-left a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    margin-right: 15px;
    transition: all .5s ease;
}

.h-left a:hover {
    color: #f5af3e;
    transform: translateY(-3px);
}

.logo img {
    width: 250px;  /* Adjust size as needed */
}

/* Right Section (Navbar) */
.menu {
    display: flex;
    padding-top: 20px;
    direction: rtl;
}

.navbar-menu {
    display: flex;
    gap: 46px;
    padding-top: 20px;
}

.navbar-menu li {
    list-style: none;
}

.navbar-menu li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all .3s;
    font-family: 'Beiruti-Medium';
}

.navbar-menu li a:hover {
    color: #f5af3e;
}
#menu-icon{
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    z-index: 101;
    display: none;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 900px;
    overflow: hidden;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.active-slide {
    opacity: 1;
}

img.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dots (Indicators) */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

.slide-title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    font-family: 'Beiruti-Medium';
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust darkness here */
    z-index: 0;
}

.main-content{
    padding: 8%;
    text-align: center;
    font-family: 'Beiruti-Light';
    background-image: url(../image/bg.png);
    background-position: center;
    background-size: cover;
}
.main-content p {
    font-size: 20px;
    margin-right: 25%;
    margin-left: 25%;
}

.main-content h2{
    font-size: 60px;
}
.mid-background img{
    object-fit: cover;
    width: 100%;
    height: 550px;
    text-align: center;
}
.mid-background-2{
    background-image:linear-gradient(to right, rgba(0, 0, 0, 40%), rgba(0, 0, 0, 30%)), url(../image/haden-02.jpg);
    background-position: center;
    background-size: cover;
    height: 550px;
    width: 100%;
    text-align: center;
    padding: 15% 0% 6% 0%;
}
.mid-background-2 p{
    font-family: 'Beiruti-Medium';
    font-size: 40px;
    color: #fff;
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When element is in view, apply the fade-up effect */
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

a.box_contents{
    margin: 0 10px 45px 10px;
    display: block;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}
a.box_contents .wrapper{
    padding: 20px 40px 50px 60px;
    position: relative;
}
a.box_contents figure{
    position: relative;
    overflow: hidden;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
a.box_contents figure img{
    transition: all 1s cubic-bezier(0.25, 0.46, 0.35, 0.94);
}

a.box_contents h2 {
    font-family: "Beiruti-Medium";
    font-size: 35px;
    margin-bottom: 30px;
}
a.box_contents em {
font-style: normal;
font-weight: 600;
position: relative;
}
a.box_contents em:before {
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 10px;
    height: 2px;
    content: "";
    transition: width 500ms ease;
    background-color: #f5af3e;
}

a.box_contents:hover em:before {
width: 100%;
background-color: #333;
}

a.box_contents:hover img {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}

.home a.box_contents {
margin: 0 0 25px 0;
  }
.item a{
    text-decoration: none;
    color: #000;
}
.project-section{
    padding: 5em;
}
.title h2{
    font-size: 60px;
    text-align: center;
}
.our-services-box img{
    width: 80px;
}
footer{
    background-color: #000;
    padding:3em;
    color: #fff;
}
footer a{
    text-decoration: none;
    color: #fff;
}
.footer-logo img{
    width: 50%;
}
.social-links ul{
    display: flex;
    align-items: center;
}
.social-links li{
    padding: 10px;
    color: #fff;
    font-size: 18px;
}
.social-links a{
    text-decoration: none;
}
.video-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 5%;
}

.background-video {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    color: #fff;
    text-align: center;
}

.video-overlay h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 20px;
    max-width: 600px;
}
@media (max-width: 768px) {

    .logo {
        order: 3;  /* Moves the logo to the left */
        text-align: left;
    }
    .menu-toggle {
        display: block;
        font-size: 25px;
        color: #fff;
        cursor: pointer;
        order: 1;  /* Moves the toggle to the right */
    }
    .h-left{
        order: 2;
    }

    #menu-icon{
        display: block ;
    }
    header{
        padding: 8px 5%;
    }
    .navbar-menu{
        position: absolute !important;
        width: 100%;
        height: 0px;
        top: -100%;
        right: 0;
        padding:0;
        display: flex;
        flex-direction: column;
        background-color: #000;
        transition: all .50s ease-in-out !important;
        justify-content: initial !important;
    }
    header.sticky{
        padding: 8px 5%;
    }
    .navbar.open{
        top: 0;
        height: 100vh;
        padding: 40px 60px;
    }
    .h-right a{
        font-size: 15px;
    }
    .h-right a:first-child{
        margin-right: 10px;
    }
    .logo img{
        width: 140px;
    }

    .main-content h2{
        font-size: 50px;
        padding-bottom: 10px;
    }
    .main-content p{
        padding: 0;
        margin: 10%;
        font-size: 18px;
    }
    .mid-background img{
        height: 300px;
    }

    .slideshow-container{
        height: 500px;
    }
    .project-section{
        padding: 1em;
    }
    .title h2{
        font-size: 40px;
    }

    a.box_contents h2{
        font-size: 27px;
    }
    .mid-background-2 p{
        font-size: 18px;
    }
    .mid-background-2 .row{
        margin: 50% auto;
    }

}
.proj-page{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.395), rgba(0, 0, 0, 0.395)), url(../image/haden-06.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 700px;
    padding:16% 0% 10% 0%;
}
.proj-page h2{
    font-size: 60px;
    font-family: 'Beiruti-Medium';
    text-align: center;
    color: #fff;
}

body.project-page{
    background-color: #fbfbfb;
}
/* Room Listing Layout */
.room-listing {
    width: 70%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Room */
.room {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
    align-items: center;
}

/* Room Image */
.room img {
    width: 370px;
    height: 370px;
    object-fit: cover;
    border-radius: 5px;
}

/* Room Details */
.room-details {
    flex: 1;
    padding: 56px 50px;
    display: block;
    position: relative;
}


/* Star Ratings */
.stars {
    font-size: 18px;
    color: #f5af3e;
    margin-bottom: 10px;
}

/* Room Title */
.room-details h2 {
    font-size: 30px;
    margin: 0;
    font-family: 'Beiruti-Medium';
}

/* Description */
.room-details p {
    color: #666;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.5;
}

/* Price */
.price {
    font-size: 18px;
    margin: 10px 0;
}

.price span {
    color: gray;
    font-weight: bold;
}

/* Book Now Button */
.book-btn {
    display: inline-block;
    background: black;
    color: white;
    padding: 11px 34px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 23px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #f5af3e;
}
.learn-btn {
    display: inline-block;
    width: 200px; /* Adjust width as needed */
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #000; /* Change the color if needed */
    color: white;
   border-radius: 23px;
    text-decoration: none;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #f5af3e; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .room {
        flex-direction: column;
        text-align: center;
    }

    .room img {
        width: 100%;
        height: auto;
    }

    .book-btn {
        width: 100%;
    }
    .learn-btn{
      width: 100%;   
    }
    .room-details{
        padding: 28px 21px;
    }
    .proj-page{
        height: 550px;
    }
    .proj-page .row{
        margin: 50% auto;
    }
}

.contact-page{
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.395), rgba(0, 0, 0, 0.395)), url(../image/haden-05.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 700px;
    padding:16% 0% 10% 0%;
}
.contact-page h2{
    font-size: 60px;
    font-family: 'Beiruti-Medium';
    text-align: center;
    color: #fff;
}
.contact-info{
    padding:60px;
    text-align: center;
}
.contact-info-item{
    direction: ltr;
}
.contact-info-item img{
    width: 40px;
}
.contact-info-item p{
    padding: 10px;
    font-size: 18px;
}
.contact-info-item a {
    text-decoration: none;
    color: #212529;
}
.contact-info-item .text{
    padding: 10px;
}
.contact-form{
    padding-bottom: 60px;
}
.form-container {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: auto;
}

.form-container h2 {
    text-align: center;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    direction: rtl;
}
input[type="checkbox"]{
    margin-left: 10px;
}
.text-message {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    direction: rtl;
}
.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}

button {
    width: 100%;
    padding: 10px;
    background: #181818;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

button:hover {
    background: #656565;
}
@media (max-width:768px){
    .form-container {
        padding: 40px;
        width: 90%;
    }
    .checkbox-container{
        font-size: 14px;
    }
    .contact-page{
        height: 550px;
    }
    .contact-page .row{
        margin: 50% auto;
    }
}


.grid-container {
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
}

.gallery-photo img{
    width: 100%;
}
.gallery-photo{
    padding: 0;
}
.gallery-photo {
    overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  }
  
  /* [2] Transition property for smooth transformation of images */
  .gallery-photo img {
    transition: transform .5s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .gallery-photo:hover img {
    transform: scale(1.2);
    filter: brightness(100%);
  }
@media (max-width: 767px){
    .grid-container{
        grid-template-columns: none;
    }
    .slide-title {
        font-size: 30px;
    }
    .gallery{
        padding-bottom: 20px;
    }
    .background-video{
        height: auto;
    }
}

a,
button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  /* background: none; */
}

.swiper-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.slider-section {
  margin: 0 auto;
  padding-block: 5rem;
}

.slider-column {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.swiper {
  &-button-next::after,
  &-button-prev::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 1rem;
    width: 2rem;
    height: 2rem;
    opacity: 0.75;
    border-radius: 50%;
    color: var(--white-100);
    background: var(--black-300);
  }
}

.ty-wrapper-1{
    width:100%;
    height:50vh;
    display: flex;
  flex-direction: column;
}

.ty-wrapper-2{
padding :50px;
text-align:center;
}

.ty-wrapper-1 h2{
font-family: 'Beiruti-Medium';
font-size:4em;
letter-spacing:3px;
color:#000 ;
margin:0;
margin-bottom:20px;
}
.ty-wrapper-2 p{
margin:0;
font-size:1.3em;
color:#aaa;
font-family: 'Beiruti-Regular';
letter-spacing:1px;
}
.go-home{
color:#fff;
background:#000;
border:none;
padding:10px 50px;
margin:30px 0;
border-radius:30px;
text-transform:capitalize;
box-shadow: 0 10px 16px 1px rgb(184, 184, 184);
}

@media (min-width:360px){
h1{
    font-size:4.5em;
}
.go-home{
    margin-bottom:20px;
}
}

@media (min-width:600px){
.content{
max-width:1000px;
margin:0 auto;
}
.ty-wrapper-1{
height: initial;
max-width:620px;
margin:20% auto;
margin-top:50px;
box-shadow: 4px 8px 40px 8px rgba(77, 77, 77, 0.2);
}

}

.about-page{
    background-image: url(../image/al-narjis-04.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 700px;
    padding: 16% 0% 10% 0%;
}
.about-page h2 {
    font-size: 60px;
    font-family: 'Beiruti-Medium';
    text-align: center;
    color: #fff;
}
.vision-content{
    text-align: right;
    padding: 8%;
    justify-content: center;
}
.vision-content img{
    width: 80%;
    box-shadow: #0000006b 1px 0px 8px 0px;
}
.vision-content p {
    font-size: 20px;
    line-height: 2em;
}
.vision-content h2{
    font-size: 40px;
}
.about-content{
    background-image: url(../image/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: right;
    padding: 8%;
    justify-content: center;
}
.about-content img{
    width: 80%;
    box-shadow: #0000006b 1px 0px 8px 0px;
}
.about-content p {
    font-size: 20px;
    line-height: 2em;
}
.about-content h2{
    font-size: 40px;
}
.inside-about.col-md-6{
    padding: 5% 0% 5% 10%;
}

.block-gallery{
    padding: 8%;
    text-align: center;
}

.gallery .gallery-item {
    height: auto;
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}
.gallery .gallery-item:hover:after {
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
-moz-transform: scale(5);
-ms-transform: scale(5);
-webkit-transform: scale(5);
transform: scale(10);
}
.gallery .gallery-item:hover:before {
filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
opacity: 1;
-moz-transform: scale(1) rotate(90deg);
-ms-transform: scale(1) rotate(90deg);
-webkit-transform: scale(1) rotate(90deg);
transform: scale(1) rotate(90deg);
}
.gallery .gallery-item:before {
-moz-transition: 0.5s ease;
-webkit-transition: 0.5s ease;
transition: 0.5s ease;
text-shadow: none;
-webkit-font-smoothing: antialiased;
font-family: 'ElegantIcons';
speak: none;
font-weight: normal;
font-variant: normal;
line-height: 1;
text-transform: none;
-moz-transform: scale(1.5) rotate(0deg);
-ms-transform: scale(1.5) rotate(0deg);
-webkit-transform: scale(1.5) rotate(0deg);
transform: scale(1.5) rotate(0deg);
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
content: "\P";
position: absolute;
font-size: 48px;
color: #fff;
height: 50px;
width: 50px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
z-index: 1;
}
.gallery .gallery-item:after {
-moz-transition: 0.5s ease;
-webkit-transition: 0.5s ease;
transition: 0.5s ease;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
position: absolute;
width: 100px;
height: 100px;
background-color: #000;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
content: "";
}
.gallery .gallery-item img {
max-width: 100%;
}

.hover-effect:hover span .hover-element {
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
.hover-effect:hover span .hover-element:nth-child(2) {
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
.hover-effect span {
position: relative;
overflow: hidden;
display: inline-block;
vertical-align: middle;
top: -1px;
}
.hover-effect span .hover-element {
-moz-transition: 0.5s ease;
-webkit-transition: 0.5s ease;
transition: 0.5s ease;
-moz-transform: translateY(0%);
-ms-transform: translateY(0%);
-webkit-transform: translateY(0%);
transform: translateY(0%);
position: relative;
overflow: hidden;
/*padding: 2px 0; */
}
.hover-effect span .hover-element:nth-child(2) {
-moz-transition: 0.5s ease;
-webkit-transition: 0.5s ease;
transition: 0.5s ease;
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
position: absolute;
top: 0;
left: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
.hover-effect span {
    top: 0;
}
}
.hover-effect.underline span .hover-element {
text-decoration: underline;
}

.project-title p{
    font-size: 25px;
}
