: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);
}
.white {
  color: var(--white-color);
}
/* End Colors  */
/* Start buttons styling & animation */
button.up {
  position: fixed;
  right: 5px;
  bottom: 5px;
  border: 1px solid var(--main-color);
  background-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);
}
button.up:hover{
  background-color: var(--dark-color);
  color: var(--main-color);
}
.main-btn {
  font-family: "Playfair Display", sans-serif;
  background-color: var(--main-color);
  color: white;
  border-color: var(--dark-color);
  opacity: 0.6;
  text-decoration: none;
  padding: 0.6rem 1rem;
  transition: all 0.3s;
}
.main-btn:hover {
  opacity: 2;
}
.book-now{
  animation: coloring 3s infinite; 
  opacity: 2;
}
/* End buttons styling & animation */

/* 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;
}
.contact-btn a span.text {
  color: var(--dark-color);
}
.contact-btn:hover {
  background-color: black;
}
.contact-btn:hover span.text {
  color: var(--main-color);
}
.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: 767px) {
  .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;
}
/* 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;
}
.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", serif;
  
}
.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: 2px 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: -12px;
    height: 2px;
    background-color: var(--main-color);
    width: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-style .card-text p {
  padding: 13px 15px;
  border-bottom: 1px solid var(--dark-alt-color);
  font-size: 25px;
}

.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: 25px;
  padding-right: 25px;
}
.booking .button .link:hover{
  box-shadow: 0 2px 15px var(--main-color-alt);
}

.booking .button .link svg {
  color: var(--dark-alt-color);
  position: absolute;
  transition: var(--main-transition);
  
}
.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: 767px) {
  .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: -160px;
  }


}
@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: var(--dark-color);
}

.contact a span.whatsapp {
  color: #25d366;
}
.contact a span.email {
  color: var(--main-color-alt);
}
.contact a span.call {
  color: #ccc;
}
/* 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;
  }
}
/* End Animation  */
