:root {
  --main-color: #e5be3d;
  --main-color-alt : #ffc400;
  --dark-color: #000;
  --white-color: #fff;
  --dark-alt-color: #333;
  --main-transition: 0.3s;
}
* {
  margin: 0;
  padding: 0;
  --webkit-box-sizing: border-box;
  --moz-box-sizing: border-box;
  box-sizing: border-box;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
strong{
  font-weight: normal;
}
@font-face {
  font-family:  "Playfair Display", serif;
  src: url(../Playfair/Playfair-Italic-VariableFont_opsz\,wdth\,wght.ttf);
}
body {
  font-family: "Playfair Display", sans-serif;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: var(--dark-color);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Start Components */
/* Start Grid systems  */
.grid-system-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.grid-system-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px , 1fr));
  gap: 30px;
}
/* End Grid systems  */
/* Start Colors  */
.gold {
  color: var(--main-color);
}
.golden{
  color: var(--main-color-alt);
}
.white {
  color: var(--white-color);
}
/* End Colors  */
/* Start buttons styling & animation */
.up {
  position: fixed;
  right: 5px;
  bottom: 10px;
  font-size: 22px;
  border: 1px solid var(--main-color);
  background-color: var(--dark-color);
  color: var(--main-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Playfair Display", sans-serif;
  z-index: 3;
  transition: var(--main-transition);
}
.second-btn{
  font-family: "Playfair Display", sans-serif;
  background: linear-gradient(125deg, #FFD700 0%, #FF8C00 200%);
  border: 2px solid var(--main-color-alt);
  color: var(--dark-color);
  padding: 11px 100px;
  transition: all 0.3s;
}
.main-btn {
  font-family: "Playfair Display", sans-serif;
  background-color: var(--main-color);
  color: white;
  border-color: var(--dark-color);
  text-decoration: none;
  padding: 0.6rem 1rem;
  transition: all 0.3s;
}
.details-btn{
  padding: 11px 100px;
  background: linear-gradient(125deg, #FFD700 0%, #FF8C00 200%);
  color: var(--dark-alt-color);
  font-size: 17px;
}
.buttons{
  display: flex;
  justify-content: space-between;
}
.details{
  display: flex;
  justify-content: center;
  width: 100%;
}
/*Start Popup Massage*/
        /* Popup Styles */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background: white;
            width: 95%;
            max-width: 500px;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 5px;
            border-bottom: 1.5px solid #ccc;
        }
        
        .popup-title {
            font-size: 1.5rem;
            color:  var(--dark-color);
            margin: 0;
        }
        
        .close-btn {
            background: none;
            border:none ;
            font-size: 1.5rem;
            cursor: pointer;
            color: red;
            transition: color 0.3s ease;
        }
        .dismiss-popup-btn{
          font-family: "Playfair Display", sans-serif;
          background-color: red;
          color: white;
          text-decoration: none;
          padding: 0.6rem 1rem;
          transition: all 0.3s;
        }
        
        .popup-body .content{
            background: #f0f1f3;
            padding: 14px;
            border-radius: 5px;
            margin-top: 15px;
            overflow: hidden;
        }
        .popup-body ul{
          margin-top: 10px; 
          line-height: 1.5;
          width: 100%;
        }
        .popup-footer {
            display: flex;
            justify-content: space-between;
        }
        
        
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
/*End Popup Massage*/

.book-now{
  animation: coloring 2s infinite; 
  opacity: 2;
}

/* Start styles of titles sections*/
.main-title {
  text-align: center;
  position: relative;
}
.main-title h2 {
  color: var(--main-color);
  letter-spacing: 3px;
}
.main-title p {
  font-style: italic;
  font-size: 25px;
  font-family: "Playfair Display", serif;
}
.main-title::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background-color: var(--dark-color);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
/* End styles of titles sections */
.image-size {/*Images size of sections*/
  width: 170px;
  height: 140px;
}

/* Start styles of contact us buttons */
.contact-btn{
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: 0.3s;
  border: 2px solid var(--dark-alt-color);
  padding: 10px 15px;
  width: 70%;
  margin: auto;
  border-radius: 20px;
  background-color: var(--dark-color);
}
@media (max-width: 768px){
  .contact-btn{
    width: 60%;
  }
}
.contact-btn svg {
  font-size: 25px;
}
/* End styles of contact us buttons */

/* End Components */
/* Start Navbar  */
.navbar {
  background-color: var(--dark-color);
}
.navbar .navbar-brand .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.navbar .navbar-brand .nav-container span,
.navbar .navbar-brand .nav-container span span {
  position: relative;
  font-size: 25px;
  top: 2px;
}
.navbar .navbar-brand .nav-container span span {
  top: 1px;
}
.navbar .navbar-nav .nav-link {
  color: white;
}
.navbar .navbar-toggler {
  color: var(--main-color);
  border-color: white;
  font-size: 25px;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
  color: var(--main-color);
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler[aria-expanded="true"] {
  border-color: var(--main-color);
}
/* End Navbar  */
/* Start Landing  */
.landing {
  min-height: calc(100vh - 73px);
  position: relative;
  z-index: 100;
}

.landing .content {
  z-index: 5;
}
.landing .mobile-image {
  display: none;
}
@media (max-width: 768px) {
  .landing .mobile-image {
    display: block;
  }
}
.landing .mobile-image,
.landing .landing-image {
  width: 100%;
  height: calc(100vh - 73px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.landing::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 2;
}
.landing p {
  font-style: italic;
  font-size: 25px;
  font-family: "Playfair Display", serif;
}

/* Start landing booking page  */
.landing .go-down{
    z-index: 3;
    color : var(--main-color);
    position :absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--main-transition);
}
.landing .go-down svg{
    animation: bouncing 1.3s infinite;
}
/* End landing booking page  */
/* start booking styling  */
.our-tours{
  background: repeating-linear-gradient(#fff,#f6f6f6,#999,#888,#777);
  position: relative;
  margin: 0;
  padding: 0;
}




/* End Our Tours  */
/* Start Options Section */
.jordan-tours{
    background: repeating-linear-gradient(#777,#666,#555,#444,#333);
}
.jordan-tours::after{
  background-color: var(--main-color);
}
/* End Options Section  */
/* Start Programs Section  */
.programs{
    background: repeating-linear-gradient(#333,#222,#111,#000);
}
.programs .main-title::after{
    background-color: var(--white-color);
}
.programs .card-text{
    padding: 30px 10px;
}
/* End Programs Section  */


/* End booking styling  */
/* End Landing  */
/* Start Services  */
.services .box {
  background-color: var(--dark-color);
  padding: 25px 20px;
  color: #ccc;
  border-radius: 20px;
  border: 2px solid var(--main-color);
  transition: all 0.3s;
}
@media (max-width: 768px){
  .services .box{
    width: 87%;
  }
  .services .container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.services .box svg,
.services .box img {
  border: 1px solid var(--main-color);
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s;
}
.services .box svg {
  font-size: 25px;
  color: var(--main-color-alt);
}
.services .box h3 {
  padding-top: 10px;
  color: var(--whit-color);
}
.services .box p {
  line-height: 2;
  font-family: "Playfair Display", sans-serif;
  font-size: 18px;
  text-align: center;
  overflow-wrap: break-word;
}
.services .box:hover {
  box-shadow: 0 2px 15px rgb(0 0 0 / 35%);
}
/* End Services  */

/* Start Booking Section  */
.booking {
  position: relative;
}
.booking .main-title::after {
  background-color: var(--white-color);
}
/*Start Card Style  */
.card-style {
  border: 3px solid var(--main-color);
  border-radius: 14px;
  background-color: white;
  position: relative;
  /* height: fit-content; */
}
.card-style .card-img-top{
    border-radius: 10px;

}
.card-style .card-title {
    position: relative;
    margin-top:5px;
}
.card-style .card-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 2px;
    background-color: var(--main-color);
    width: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-style .card-text {
  padding: 13px 15px;
  border-bottom: 1px solid var(--dark-alt-color);
  font-size: 22px;
}

.card-style .card-text p{
  margin-bottom: 5px;
}

.card-style .card-text .data{
    display: block;
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 17px;
}
.card-style .card-text .data svg{
    color: var(--main-color);
}
.card-style .card-text .price svg:last-of-type{
    font-size: 23px;
}
.card-style .card-text .price{
    font-size: 20px;
    font-family: "Open Sans",sans-serif;
}
.card-style button{
    display: block;
    width: fit-content;
    margin: 15px 7px;
    border-radius: 20px;
    border: none;
    outline: none;
}
.card-style a{
    display: block;
    width: fit-content;
    margin: 15px 7px;
    border-radius: 20px;
}
.label, .label2{
    position: absolute;
    writing-mode: vertical-lr;
    font-weight: bold;
    padding: 10px 10px 12px 10px;
    font-size: 18px;
    right: 20px;
    width: 40px;
    z-index: 2;
}

.label::before, .label2::before{
    content: "";
    position: absolute;
    bottom: -39px;
    right: 0px;
    border-width: 20px ;
    border-style: solid;
}
.label{
    background-color: var(--dark-color);
    color: var(--main-color);
}
.label2{
  background-color: var(--main-color);
  color: white;
}
.label::before{
  border-color: var(--dark-color) var(--dark-color) transparent var(--dark-color);
}
.label2::before{
  border-color: var(--main-color) transparent transparent transparent;
}
/* End Card Style  */
.booking .button {
  display: block;
  margin-top: 45px;
  position: relative;
  
}
.booking .button .link {
  border-radius: 15px;
  opacity: 2;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
.booking .button .link:hover{
  box-shadow: 0 2px 15px var(--main-color-alt);
}


.booking .button .link svg {
  color: var(--dark-color);
  position: absolute;
  transition: var(--main-transition);
  
}


.booking .button button.custom-btn{
  background-color: var(--main-color);
  border: 1.5px solid var(--main-color-alt);

}
.booking .button .link svg.left{
  top: 12px;
  right: 0px;
  animation: move-to-right 0.8s infinite ;

}
.booking .button .link svg.right{
  top: 12px;
  left: 0px;
  animation: move-to-left 0.8s infinite;
}

/* End Booking Section  */
/* Start About Section  */
.about .image {
  position: relative;
  left: -40px;
  border-radius: 20px;
  border: 2px solid var(--main-color);
}
.about .text img.Logo {
  display: none;
}
@media (min-width: 1200px) {
  .about .image img {
    width: 400px;
  }
  .about .our-accounts{
    right: 80px;
  }
}

@media (max-width: 768px) {
  .about .container {
    flex-direction: column;
  }
  .about .image {
    display: none;
  }
  .about .text img.Logo {
    display: block;
    position: absolute;
    top: -70px;
    left: -110px;
  }
  .about .text span.head {
    width: fit-content;
    left: -260px;
  }


}
@media (max-width: 540px) {
  .about .text span.head {
    left: -100px;
  }
}
@media (max-width: 360px) {
  .about .text span.head {
    left: -80px;
  }
}
.about .text {
  width: fit-content;
  font-family: "Open Sans", sans-serif;
}
.about .text span.head {
  position: relative;
  font-size: 20px;
  display: block;
  color: var(--main-color);
  margin: 10px auto 15px;
}
.about .text span.head::before,
.about .text span.head::after {
  content: "";
  position: absolute;
  left: 100px;
  height: 2px;
  background: var(--main-color);
  border-radius: 70px;
}
.about .text span.head::before {
  width: 60px;
  bottom: 6px;
}
.about .text span{
  position: relative;
}
.about .text span.head::after {
  width: 35px;
  bottom: 16px;
}
.about .text h2.header {
  margin-left: 5px;
  display: block;
  margin-bottom: 15px;
}
.about .text p {
  line-height: 1.8;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
.about .services{
  position: relative;
}
.about .text .services svg {
  color: var(--main-color);
}
.about .our-accounts{
  border-color: var(--main-color-alt);
  padding-top:15px;
  position: relative;
}
.about .our-accounts .tripadvisor img{
  width: 30px;
}
.about .our-accounts a{
  background-color: var(--main-color-alt);
  border-color: var(--dark-alt-color);
}
.about .our-accounts a svg{
  color: var(--dark-color);
}
/* End About Section  */

/* Start Contact Section  */
.contact {
  background-color: white;
  border-top: 1px solid black;
}
.contact .box {
  background-color: var(--dark-alt-color);
  width: fit-content;
  margin: 5rem auto;
  padding: 20px 10px 10px;
  text-align: center;
  color: #ccc;
  border-radius: 30px;
  font-size: 25px;
  font-style: italic;
}

.contact a span.text {
  color: #ccc;
}

.contact a svg {
  color: var(--main-color-alt);
}
/* Start Our Accounts Page Styling */
.our-accounts-page{
  background: repeating-linear-gradient(140deg,#333,#444,#666);
  height: 100vh;
}
.our-accounts-page .shadows{
  box-shadow: 0 2px 20px var(--main-color-alt);
}

.our-accounts-page .contact-btn img{
  width: 35px;
}
/* End Our Accounts Page Styling */
/* End Contact Section  */

/* Start Footer  */
.footer {
  background-color: #000;
  padding: 70px 0 0;
}
  .footer ol, ul{
    padding-left: 1rem;
  }

.footer .box h3 a{
  color: white;
  font-size: 40px;
  margin: 0 0 20px;
}
.footer .box h3 a{
    color: white;
}
.footer .box .social {
  display: flex;
  margin: 20px 0;
}
.footer .box .social li {
  margin-right: 10px;
}
.footer .box .social li a {
  display: inline-flex;
  background-color: var(--dark-alt-color);
  color: var(--dark-color);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: var(--main-transition);
}
.footer .box .social .trip img{
    width: 38px;
}
.footer .box .social .facebook:hover {
  background-color: #1877f2;
}
.footer .box .social .instagram:hover {
  background-color: #e1306c;
}
.footer .box .social .trip:hover {
  background-color: #00af87;
}
.footer .box .text {
  line-height: 1.8;
  color: #b9b9b9;
  text-align: center;
}
.footer .box .links li {
  padding: 15px 0;
  transition: var(--main-transition);
}
.footer .box .links li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.footer .box .links li:hover a {
  color: white;
  padding-left: 20px;
}
.footer .box .links li a {
  color: #b9b9b9;
  transition: all 0.4s;
}
.footer .box .links li a::before {
  font-family: "Font Awesome 6 Free";
  content: "\F101";
  font-weight: bold;
  margin-right: 10px;
  color: var(--main-color);
}
.footer .box .links li a:hover {
    color: var(--main-color);
}
.footer .box .line {
  display: flex;
  align-items: center;
  color: #b9b9b9;
  margin-bottom: 30px;
}
.footer .box .line a{
    margin-left: 10px;
}
.footer .box .line svg{
  font-size: 23px;
  color: var(--main-color);
  margin-right: 10px;
}
.footer .box .line .info {
  line-height: 1.7;
  flex: 1;
}
.footer .box .line a{
  display: block;
  color: white;
}
.footer .copyright {
  padding: 25px 0;
  text-align: center;
  color: white;
  margin: 50px 0 0;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer .box .social {
    justify-content: center;
    margin: 20px;
  }
  .footer .box .line {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .footer .box .line svg:not(:last-child) {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .footer .box .line svg:last-of-type{
    margin-bottom: 5px;
    margin-right: 0;
  }
  .footer .box .links li {
    border-bottom: 1px solid #eee;
  }

.footer ol, ul{
    padding-left: 0rem;
  }
    .footer .box .line a{
    margin-left: 0px;
}
}
/* End Footer  */


/* Start Animation  */
@keyframes coloring{

  50%{
    background-color: var(--dark-color);
    color: var(--main-color-alt);
  }

    70%{
        background-color: var(--main-color);
        color: var(--white-color);
        }

}

@keyframes move-to-right {

  50%{
    right: 0.8px;
  }
  70%{
    right: 10px;
  }
}
@keyframes move-to-left{

  50%{
    left: 0.8px;
  }
  70%{
    left: 10px;
  }
}

@keyframes bouncing {
    0% , 10% , 20%, 50% , 80% , 100%{
        transform: translateY(0);
    }
    40%, 60%{
        transform: translateY(-20px);
    }
}

/* End Animation  */
