:root {
  --gold: #867051;
  --light-gold: #BD9B71;
  --black: #20252D;
  --style-font: 'Cormorant Garamond', serif;
}

::selection {
  color: var(--bs-black);
  background-color: #BD9B71;
}

::-webkit-scrollbar {
  width: 15px;
}  

::-webkit-scrollbar-track {
  background-color: var(--bs-white);
}
 
::-webkit-scrollbar-thumb {
  background: var(--light-gold); 
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', serif;
}

.gold-head {
  color: var(--gold);
  font-family: var(--style-font);
}

.black-bg {
  background-color: var(--black);
 
  color: var(--bs-gray-400);
}

p {
  line-height: 30px;
  text-align: justify;
}

.img-hover {
  transition: .2s ease-in;
}

.img-hover:hover {
  transform: scale(.8);
}

.hidden1 {
  transform: scale(0);
  opacity: 0;
  filter: blur(20px);
  transition: .8s ease-in;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.hidden2 {
  transform: translateX(-100%);
  transition: 1s ease-in-out;
  filter: blur(10px);
}

.show2 {
  transform: translateX(0);
  filter: blur(0);
}

.hidden3 {
  transform: translateX(100%);
  transition: 1s ease-in-out;
  filter: blur(10px);
}

.show3 {
  transform: translateX(0);
  filter: blur(0);
}

.hidden4 {
  opacity: 0;
  transition: .5s ease-in-out;
  filter: blur(20px);
}

.show4 {
  opacity: 1;
  filter: blur(0);
}

.hidden5 {
  transform: translateY(-100%);
  transition: .8s ease-in-out;
  filter: blur(10px);
}

.show5 {
  transform: translateY(0);
  filter: blur(0);
}

.hidden6{
  transform: translate(0);
}

.show6 {
  animation: slide-img 1s linear forwards;
}

@keyframes slide-img {
  0% {
      transform: translateX(var(--trX, 0)) translateY(var(--trY, -100%));
  }

  100% {
      transform: translate(0);
  }
}

.container {
  overflow: hidden;
}

header .navbar {
  background-color: var(--bs-light)
}

header .navbar .navbar-nav li .nav-link {
  display: block;
  width: fit-content;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

header .navbar .navbar-nav li .nav-link:hover {
  color: var(--gold);
  opacity: .8;
}

header .navbar ul li .nav-link.active {
  color: var(--gold);
}

header .navbar .link-btn {
  margin-left: auto;
  margin-right: auto;
}

.container .link-btn, .link-btn {
  text-decoration: none;
  padding: .4rem 1rem;
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: .2s ease-in-out;
  display: block;
  width: fit-content;
  text-transform: uppercase;
}

.link-btn:hover {
  background-color: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.container .link-btn-reverse, .link-btn-reverse {
  padding: .3rem .8rem;
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.link-btn-reverse:hover {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.container .navbar .link-btn {
  padding: .6rem 1.3rem;
}

.main-bg {
  height: 70vh;
}

.c1 {
  background: url("images/UW7A5032-1920w.webp") rgba(0,0,0,.9);
  background-size: cover;
  background-position: center;
  background-blend-mode: lighten;
  height: 100%;
}

.c2 {
  background: url("images/UW7A4949-1920w.webp") rgba(0, 0, 0, 0.52);
  background-size: cover;
  background-position: center;
  background-blend-mode: lighten;
  height: 100%;
}

.c3 {
  background: url(images/259960477.jpg) rgba(0,0,0,.9);
  background-size: cover;
  background-position: center 70%;
  background-blend-mode: lighten;
  height: 100%;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

.carousel-caption h1, .carousel-caption h2, .carousel-caption .h5 {
  letter-spacing: 10px;
  font-weight: 600;
  font-family: var(--style-font);
  color: white;
}

.carousel-control-prev-icon {
  background-image: url(assets/left-arrow-backup-2-svgrepo-com.svg);
}

.carousel-control-next-icon {
  background-image: url(assets/right-arrow-backup-2-svgrepo-com.svg);
}

.carousel-indicators [data-bs-target] {
  background-color: white;
}

.gall-div {
  border-top:1px solid var(--gold);
  border-bottom:1px solid var(--gold);
}

.gall-div span {
  color: var(--gold);
}

.home-about > div > div {
  color: var(--gold);
}

.home-about i {
  font-size: 1.4rem;
  margin-right: .7rem;
}

.home-about img, .home-rooms img {
  height: 30vh;
}

.social-links i {
  color: var(--bs-white);
  background-color: var(--light-gold);
  padding: .5rem;
  border-radius: 3px;
  transition: .1s;
}

.social-links i:hover {
  opacity: .8;
}

.breakfast img {
  height: 30vh;
}

.quotes section {
  padding: 1.5rem;
  border: 1px solid #8F795A;
  width: 100%;
}

.quotes h6 {
  color: #8F795A;
  margin: 0;
}

.jumbotron {
  background: url(images/263832840.jpg), rgba(255, 255, 255, .2);
  background-size: cover;
  background-position: center;
  background-blend-mode: lighten;
  background-attachment: fixed;
  min-height: 50vh;
}

.jumbotron h2 {
  color: #020101BA;
  letter-spacing: 10px;
}


.facilities section {
  color: var(--light-gold);
  border-bottom: 1px solid var(--light-gold);
  padding: 2rem;
  transition: .2s ease-in-out;
}

.facilities section:hover {
  background-color: var(--light-gold);
  color: var(--bs-white);
}

.facilities section:hover svg {
  fill: var(--bs-white);
}

.facilities svg {
  min-width: 40px;
  max-width: 40px;
  min-height: 40px;
  max-height: 40px;
  margin-bottom: 1rem;
  fill: var(--light-gold);
  transition: .2s ease-in-out;
}

.home-gallery > div img {
  height: 30vh;
  width: 100%;
  object-fit: cover;
}

.home-gallery .first-col img:nth-child(2){
  --trY: 100%;
}

.home-gallery .second-col img:nth-child(1){
  --trX: 100%
}

.home-gallery .second-col img:nth-child(2){
  --trY: 100%;
  --trX: 100%
}

.testimonials > img {
  height: 40vh;
  object-fit: contain;
}

footer {
  color: #fff;
  background-color: var(--bs-dark);
}

footer p {
  text-align: inherit;
}

footer .info-section i {
  width: 16px;
}

footer .col-lg-2 img {
  display: block;
  width: 50%;
  margin: 2rem auto 0;
}

footer .container .row a {
  color: #fff;
  text-decoration: none;
  transition: .1s;
}

footer .container .row .col-lg-3  a:hover {
  border-bottom: 1px solid #fff;
}

footer .container .row ul {
  margin: 0 auto;
}

footer .container .row ul li{
  display: flex;
  align-items: center;
  transition: .2s ease-in-out;
}

footer .container .row ul li:hover {
  transform: translateX(10px);
}

footer .container .row ul .nav-item .nav-link {
  color: #fff;
  padding: 0 .4rem;
  text-align: center;
  border-bottom: transparent;
}

footer .container .row ul .nav-item .nav-link.active, footer .container .row ul .nav-item .nav-link:hover{
  color: var(--light-gold);
}

footer iframe {
  display: block;
  width: 80%;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.im-img {
  width: 35%;
}

/*Rooms Styles*/

.bg-images {
  background:  rgba(0, 0, 0, 0.8);
  background-position: center;
  background-size: cover;

  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bg-images section {
  margin-top: 10vh;
}

.bg-images section h1{
  font-weight: 600;
  font-family: var(--style-font);
  letter-spacing: 3px;
}

img.zoom {
  width: 100%;
  height: 45vh;
  display: block;
  margin: 0 auto;
  border-radius:5px;
  object-fit:cover;
  transition: all .3s ease-in-out;
}

.transition {
  -webkit-transform: scale(1.1); 
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
  
.modal-header {   
  border-bottom: none;
}
 
.modal-title {
  color:#000;
}

.modal-footer{
display:none;  
}

/*About Styles*/

.about img, .about-restaurant img  {
  height: 30vh;
  object-fit: cover;
  max-width: 100%;
  margin-bottom: 1rem;
}

.review-bg {
  background: url(images/286100169.jpg) rgba(0, 0, 0, .5);
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  background-attachment: fixed;
}

.review-slider .slide{
  min-height: fit-content;
  position: relative;
  overflow: hidden;
  padding: 2rem 4rem;
}

.reviews > section {
  width: 100%;
  text-align: center;
}

.reviews img, .review-slider img {
  width: 50px;
  height: 50px;
  margin-bottom: .8rem;
}

.show-mobile .swiper-wrapper .swiper-slide section p {
  text-align: center;
}

.hidden-mobile {
  display: none;
}

.reviews i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.swiper-arrow {
  color: var(--light-gold); 
  font-size: medium;
  padding: 2rem 1.8rem 2rem;
  transition: .1s;
}

.swiper-arrow:hover {
  background-color: rgba(255, 255, 255, .4);
}

.swiper-button-prev { 
  transform: translateX(-10px);
}

.swiper-button-next {
  transform: translateX(10px);
  padding-left: 2rem;
}

/*Contact Styles*/

.contact section p {
  text-align: center;
}

.contact section a {
  text-decoration: none;
  color: inherit;
  transition: .1s;
  border-bottom: 1px solid transparent;
}

.contact section a:hover {
  border-color: var(--bs-secondary);
}
@media only screen and (min-width: 768px) {

  .home-about > div, .home-rooms section{
      width: 55%;
  }

  .home-about img, .home-rooms img {
      width: 40%;
      height: auto;
  }

  .social-links > div {
      width: 50%;
  }

  .breakfast section {
      width: 50%;
  }

  .breakfast img {
      width: 45%;
      height: auto;
  }

  .quotes section {
      width: 50%;
  }

  .restaurant img {
      width: 45%;
      height: 40vh;
      object-fit: cover;
  }

  .restaurant div {
      width: 50%;
  }

  .pool > div {
      width: 50%;
  }
  
  .pool section {
      width: 50%;
  }  
  
  .facilities section:nth-child(1) {
      border: 1px solid var(--light-gold);
  }

  .facilities section:nth-child(2), .facilities section:nth-child(3) {
      border-top: 1px solid var(--light-gold);
      border-right: 1px solid var(--light-gold);
  }

  .facilities section:nth-child(4) {
      border-left: 1px solid var(--light-gold);
      border-right: 1px solid var(--light-gold);
  }
  
  .facilities section:nth-child(5), .facilities section:nth-child(6) {
      border-right: 1px solid var(--light-gold);
  }

  .home-gallery > section {
      width: 35%;
  }

  .home-gallery > div:nth-child(2) {
      width: 35%;
      height: 72vh;
  }

  .home-gallery > div:nth-child(3) {
      width: 30%;
      height: 72vh;
  }

  .home-gallery .wide-pic {
      height: 40vh;
  }

  .home-gallery > div:nth-child(3) .wide-pic {
      height: 25vh;
  }

  .home-gallery > div:nth-child(3) .small-pic {
      height: 45vh;
  }

  .testimonials > section {
      width: 20%;
      height: 100%;
  }

  .testimonials > img, .testimonials > div{
      width: 33%;
  }

  .testimonials > img {
      height: 50vh;
  }
  
  footer .col-lg-2 img {
      margin-top: 5rem;
  }

  footer .container .row ul {
      margin: 0;
  }

  footer .container .row ul .nav-item .nav-link {
      width: fit-content;
      text-align: center;
  }

  /*Rooms Styles*/

  .room section {
      width: 20%;
  }

  .room img {
      height: 40vh;
      width: 40%;
  }

  /*About Styles*/

  .about div {
      width: 49%;
  }

  .about img {
      width: 25%;
  }

  .about-restaurant img {
      width: 45%;
      height: 50vh;
  }

  .about-restaurant div {
      width: 50%;
  }

  .reviews > section {
      width: 45%;
      display: flex;
      flex-direction: column;
  }

  .reviews > section div {
      margin-top: auto;
  }

  .hidden-mobile {
      display: block;
  }

  .show-mobile {
      display: none;
  }

  /*Contact Styles*/

  .contact section {
      width: 33%;
  }
}

@media only screen and (min-width: 992px) {

  header .navbar .link-btn {
      margin: 0;
      margin-left: auto;
  } 

  footer iframe {
      margin-right: 0;
      width: 100%;
  }

  footer .row p {
      font-size: 1.1rem;
  }

  .im-img {
      width: 28%;
  }
}

.we-help-section {
  padding: 1rem 0;
}

.we-help-section .imgs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr);
  grid-template-columns: repeat(27, 1fr);
  position: relative;
}

.we-help-section .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1;
}

.we-help-section .imgs-grid .grid {
  position: relative;
}

.we-help-section .imgs-grid .grid img {
  border-radius: 20px;
  max-width: 100%;
}

.we-help-section .imgs-grid .grid.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27;
}

.we-help-section .imgs-grid .grid.grid-2 {
  -ms-grid-column: 19;
  -ms-grid-column-span: 27;
  grid-column: 19 / span 27;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  padding-left: 20px;
}

.we-help-section .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: 20px;
}

.custom-list {
  width: 100%;
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #3b5d50;
  position: absolute;
  left: 0;
  top: 8px;
}

.imageroom {
  border-radius: 20px;
}
@media (max-width: 767px) {
 
  .imageroom {
    display: none;
  }
}

.footer-icons {
  width: 2rem;
  height: 2.1875rem;
  margin: 0.1rem;
  line-height: 2rem;
  font-size: .875rem;
  display: inline-block;
  
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.footer-icons:hover {
  transform: translateY(-10px);
  background-color: var(--spa-secondary);
}


.fade-down {
  
	animation: 3.5s fadeDown  ;
}
@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translate3d(0,-20%,0);
	}
}


.blog-content {

  align-items: center;
  justify-content: center;
text-align: center;
  box-shadow: 0 .125rem .25rem rgb(34 30 31 / 10%);
}


.Facilites-Section{
  padding: 120px 0;
}
.img-fac{
    
  background: url('/images/259960477.jpg') rgba(0, 0, 0, 0.301) ;
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  padding: 100px 0 150px 0;
  /* background: -webkit-linear-gradient(bottom, transparent, #000) !important;
  background: linear-gradient(to top, transparent, #000) !important; */
}
.Facilites-Section .box{
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
background-color: white;
margin-top: 25px;
}
.Facilites-Section .box img{
 margin: 10px 10px;
 width: 60px;
}
.Facilites-Section .box h3{
  font-family: Cinzel !important; 
  font-size: 25px !important;
  font-weight: 400;
}
.Facilites-Section .box:hover {
  background-color: #20252D;
  color: white;
}
.Facilites-Section .box .img-f2{
  display: none;
}
.Facilites-Section .box:hover .img-f1{
  display: none !important;
}
.Facilites-Section .box:hover .img-f2{
  display:inline !important;
}
.Facilites-Section .box.active{
  background-color: #20252D;
  color: white;
}
.Facilites-Section .box:hover h3{
  color: white;
}
.Facilites-Section .box.active h3{
  color: white;
}
@media only screen and (max-width: 1199px){
  .Facilites-Section .box{
      padding: 5px 10px !important;
  }
} 





/* Vetëm për këtë seksion */
@media (max-width: 600px) {
  .spa-menu-buttons {
    flex-direction: column;
    align-items: center;
  }
}