:root {
  --title-color: #222222;
  --text-color: #545454;
  --bg-color: #efeded;
  --line-color: #d7d2c8;
  --shadow: 0 10px 30px rgba(34, 34, 34, 0.08);
}

/* font-family: "Roboto Slab", serif; // 100 & 900 */
/* font-family: "Open Sans", sans-serif; // 300 - 800 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #efeded;
  background: var(--bg-color);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  color: var(--title-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

small {
  font-size: 0.85rem;
  color: #7a7a7a;
}

button {
  font-family: "Open Sans", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 22%);
  /* background: #f7f5e9; */
  background: #fcfcfc;
  /* background: rgba(244, 241, 236, 0.98);
  border-bottom: 1px solid var(--line-color);
   box-shadow: var(--shadow);
  backdrop-filter: blur(6px); */
  
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 32px;
  gap: 24px;
}

.burger {
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 6px;
  cursor: pointer;
  justify-self: start;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.burger-icon span {
  width: 26px;
  height: 2px;
  background: var(--title-color);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.burger-text {
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--title-color);
}

.menu-open .burger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .burger-icon span:nth-child(2) {
  opacity: 0;
}

.menu-open .burger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-logo {
  font-size: 1.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--title-color);
  justify-self: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.btn-book {
  border: 1px solid #9b9b9b;
  padding: 10px 20px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-color);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-book:hover {
  /* background: #c9b896; */
  background: #968e83;
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
}

.lang-switch a {
  border: 1px solid #9b9b9b;
  padding: 10px 12px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  background: transparent;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.lang-switch a.active,
.lang-switch a:hover {
  /* background: #c9b896; */
  background: #968e83;
  color: #fff;
  border: 1px solid #9b9b9b;
}

.lang-switch-mobile {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
}

.lang-switch-mobile a {
  border: 1px solid #555;
  padding: 12px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  background: transparent;
  color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 0;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-switch-mobile a.active,
.lang-switch-mobile a:hover {
  background: #c9b896;
  color: #fff;
  
}

.hero-section {
  height: calc(100vh - 75px);
  width: 100%;
  background: var(--bg-color);
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide {
  height: 100%;
  width: 100%;
}

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

.hero-swiper .swiper-pagination {
  bottom: 16px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #eadcc8;
  opacity: 1;
  /* border: 1px solid rgba(34, 34, 34, 0.5); */
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #c9b896;
  border-color: #c9b896;
}

.espa-link {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 10;
  display: none;
  transition: opacity 0.3s ease;
}

.espa-link:hover {
  opacity: 0.85;
}

.espa-logo {
  max-width: 350px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .espa-link {
    display: block;
  }
}

.pyrgos-link {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  display: none;
  transition: opacity 0.3s ease;
}

.pyrgos-link:hover {
  opacity: 0.85;
}

.pyrgos-logo {
  max-width: 350px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .pyrgos-link {
    display: block;
  }
}

.intro-section {
  padding: 80px 45px 96px;
  background: #efeded;
}

.intro-title {
  color: var(--title-color);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.3;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 0;
}

.intro-image {
  width: 100%;
}

.pr-90 {
 padding-right: 90px;
}

.stay-section {
    width: 100%;
    padding: 40px 60px 90px 60px;
    background: #efeded;
    position: relative;
    z-index: 2;
}

.stay-container {
    margin: 0 auto;
}

.stay-header {
    /* text-align: center;
    max-width: 900px; 
    margin: 0 auto 60px; */
    margin: 0 auto 24px;
}

.stay-title {
    font-family: 'Open Sans', sans-serif;
    color: var(--title-color);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    line-height: 1.3;

}
    .stay-subtitle {
    max-width: 648px;
    font-size: 1rem;
    font-weight: 600;
}
   .stay-description {
    font-size: 16px;
    color: #545454;
    line-height: 1.65;
    letter-spacing: 0.01em;
    margin: 0;
}
.stay-card {
    background: #fff;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stay-card:hover {
    transform: translateY(-5px);
}

.stay-image {
    width: 100%;
    height: 418px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.stay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.stay-card:hover .stay-image img {
    transform: scale(1.01);
}

.stay-info {
    padding: 0 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.stay-room-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.stay-room-size {
    font-size: 14px;
    color: #545454;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.stay-link {
    font-size: 14px;
    color: #545454;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    position: relative;
    padding-left: 28px;
    padding-bottom: 18px;
}

.stay-link::before {
    content: '→';
    position: absolute;
    font-size: 18px;
    left: 0;
    bottom: 16px;
    transition: left 0.3s ease;
}

.stay-link:hover {
    color: #c9b896;
}

.stay-link:hover::before {
    left: 8px;
}

@media (max-width: 1370px) {
    .stay-room-title {
    font-size: 19px;
    }
}

@media (max-width: 1100px) {
  .btn-book {
    display: none !important;
  }
}

@media (max-width: 1024px) {
    .btn-book {
    padding: 10px 16px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 26px;
}
    .intro-section {
    padding: 80px 45px 80px;
    }
    .stay-section {
        padding: 50px 15px;
    }

    .stay-header {
        margin-bottom: 40px;
    }

    .stay-image {
        height: 350px;
    }
    .pr-90 {
      padding-right: 25px;
    }
}

@media (max-width: 768px) {
    .hero-swiper .swiper-pagination {
      bottom: 12px;
    }
    
    .stay-section {
        padding: 40px 20px;
    }

    .stay-header {
        margin-bottom: 40px;
    }

    .stay-title {
        margin-bottom: 20px;
    }

    .stay-image {
        height: 300px;
        margin-bottom: 20px;
    }

    .stay-room-title {
        font-size: 22px;
    }

    .stay-room-size {
        font-size: 13px;
    }

}

@media (max-width: 576px) {
    
h1 {
  font-size: 27px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 23px;
}
    
    
    .stay-section {
        padding: 24px 15px;
    }
    .stay-title {
        margin-bottom: 16px;
    }
    .stay-description {
        font-size: 16px;
    }

    .stay-image {
        height: 250px;
    }

    .stay-room-title {
        font-size: 20px;
    }
}


.why-choose-section {
  padding: 90px 45px 100px;
  background: #968e83;
}

.why-choose-content {
  margin-bottom: 80px;
}

.section-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-icon {
  width: 60px;
  height: auto;
  filter: brightness(0) invert(1);
}

.why-choose-title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.3;
      margin-bottom: 40px;
}

.reason-card {
  background: #fcfcfc;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon .material-symbols-outlined {
  font-size: 60px;
  color: #b1a17f;
  font-weight: 300;
}

.reason-title {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.how-to-book-content {
  margin-top: 80px;
}

.how-to-book-title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.booking-options {
  display: flex;
  gap: 0;
  /* background: #c9b896; */
  background: #968e83;
  overflow: hidden;
}

.booking-option {
  flex: 1;
  /* background: rgb(147 131 101 / 36%);
  background: rgb(150 142 131 / 63%);
  border-right: 4px solid #c9b896; */
  background: #fcfcfc;
  border-right: 4px solid #968e83;
  transition: all 0.3s ease;
}

.booking-option:last-child {
  border-right: none;
}

.booking-option:hover {
 /* background: #fff; */
  background: #fcfcfc;
}

.booking-option:hover .booking-option-title {
  color: var(--text-color);
    font-weight: 600;
}

.booking-option-content {
  padding: 35px 20px;
  text-align: center;
}

.booking-option-title {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 15px 70px;
  }
  
  .why-choose-content {
    margin-bottom: 60px;
  }
  
  .how-to-book-content {
    margin-top: 60px;
  }
  
  .why-choose-title {
    font-size: 24px;
  }
  
  .how-to-book-title {
    font-size: 24px;
  }
  
  .booking-options {
    flex-direction: column;
  }
  
  .booking-option {
    border-right: none;
    border-bottom: 1px solid #efeded;
  }
  
  .booking-option:last-child {
    border-bottom: none;
  }
}

@media (max-width: 575px) {
  .why-choose-section {
    padding: 50px 15px 60px;
  }
  
  .why-choose-title {
    font-size: 20px;
  }
  
  .how-to-book-title {
    font-size: 20px;
  }
  
  .reason-title {
    font-size: 16px;
  }
  
  .booking-option-title {
    font-size: 15px;
  }
}

/* Escape Section */
.escape-section {
  padding: 90px 45px 100px;
  background: #efeded;
}

.escape-title {
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.escape-subtitle {
  margin-bottom: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.escape-text-box {
  
}

.escape-text-box p {
  margin: 0;
}

.escape-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.escape-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.escape-image:hover img {
  transform: scale(1.05);
}

.escape-image-large {
  height: 100%;
  min-height: 500px;
}

.escape-image-small {
  height: 65%;
  min-height: 325px;
}

.escape-section .col-lg-3:first-child .escape-image {
  height: 65%;
  min-height: 325px;
}

.escape-section .col-lg-3:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .escape-section {
    padding: 60px 15px 70px;
  }
  
  .escape-title {
    font-size: 28px;
  }
  .escape-text-box p {
    text-align: center;
  }
  .escape-image-large {
    min-height: 350px;
    margin-top: 0;
  }
  
  .escape-image-small {
    min-height: 300px;
    margin-top: 0;
  }
	.escape-section .col-lg-3:first-child .escape-image {
		height: auto;

	}
	.escape-image-small {
    height: auto;
  
}
}

@media (max-width: 575px) {
  .escape-section {
    padding: 50px 15px 60px;
  }
  
  .escape-title {
    font-size: 24px;
  }
  .escape-text-box {
    padding: 0px;
  }
  
  .escape-image {
    height: 220px;
  }
  
  .escape-image-large {
    min-height: 280px;
  }
  
  .escape-image-small {
    min-height: 250px;
  }
}

.gallery-section {
  padding: 90px 45px 100px;
  background: #efeded;
}

.gallery-title {
  margin-bottom: 0;
  line-height: 1.2;
}

.gallery-section img {
  max-width: 100%;
  width: 100%;
}
#gallery-container .gallery-item {
  padding-left:7px!important;
  padding-right:7px!important;
  margin-bottom: 14px;
}
#gallery-container .boxes{
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#gallery-container .da-image{
  min-height: 100%;
  width: 100%;
}
#gallery-container .overlay{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: -100%;
  color: #fff;
    background-color: rgba(0,0,0,0.25);
  z-index: 10;
	padding-left:7px!important;
	padding-right:7px!important;
	background-clip: content-box;
}
#gallery-container .overlay a{
	display: block;
	width:100%;
	height:100%;
  background-image: url('../images/enlarge.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

.btn-gallery {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-color);
  border: 1px solid #9b9b9b;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c9b896;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-gallery:hover::before {
  left: 0;
}

.btn-gallery:hover {
  color: #fff;
  border: 1px solid #c9b896;
}

/* Location Section */
/* .location-section {
  background: #efeded;
}

.map-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) contrast(1.1);
}

.location-content {
  padding: 80px 60px;
  background-color: #efeded;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-subtitle {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 600;
}

.location-title {
  margin-bottom: 35px;
  line-height: 1.1;
}

.location-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 45px;
  max-width: 90%;
}

.btn-location {
  display: inline-block;
  padding: 12px 35px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-color);
  border: 1px solid #9b9b9b;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-location:hover {
  background: #c9b896;
  color: #fff;
}

@media (max-width: 991px) {
  .map-container {
    height: 400px;
  }
  .location-content {
    padding: 60px 27px;
  }
}

*/

.mani-section {
    padding: 80px 15px 0 15px;
    background-color: #efeded;
    
}

.mani-title {
    color: var(--title-color);
    margin-bottom: 0px;
}

.mani-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 10px;
}

.mani-carousel-container {
    margin-top: 40px;
    padding-left: calc((100% - 1550px) / 2);
    overflow: hidden;
}

@media (max-width: 1399px) {
    .mani-carousel-container {
        padding-left: calc((100% - 1140px) / 2);
    }
}

@media (max-width: 1199px) {
    .mani-carousel-container {
        padding-left: calc((100% - 960px) / 2);
    }
}

@media (max-width: 991px) {
    .mani-carousel-container {
        margin-top: 10px;
        padding-left: calc((100% - 720px) / 2);
    }
	.mani-section {
    padding: 40px 15px 0 15px;
    }
}

@media (max-width: 767px) {
    .mani-carousel-container {
        padding-left: calc((100% - 540px) / 2);
    }
    .mani-title {
    margin-bottom: 0px;
    }
}

@media (max-width: 575px) {
    .mani-carousel-container {
        padding-left: 12px;
		padding-right: 12px;
    }

    .burger-menu {
    border-right: none;
    }
}

.mani-carousel {
    margin-right: 0;
}

.mani-item {
    height: 500px;
    overflow: hidden;
}

.mani-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.mani-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mani-item:hover img {
    transform: scale(1.03);
}

.mani-motto {
    padding: 30px 27px;
    background: #efeded;
}

.motto-text {
    font-size: 1.7rem;
    font-weight: 400;
    font-style: italic;
    color: var(--title-color);
    line-height: 1.3;
    margin: 0;
    position: relative;
}

.motto-text::before {
    content: '"';
    font-size: 3.5rem;
    color: #c9b896;
    opacity: 0.8;
    position: absolute;
    top: -10px;
    left: 70px;
    font-family: Georgia, serif;
}

.motto-text::after {
    content: '"';
    font-size: 3.5rem;
    color: #c9b896;
    opacity: 0.8;
    position: absolute;
    bottom: -28px;
    right: 74px;
    font-family: Georgia, serif;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--title-color) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.owl-carousel .owl-nav button.owl-prev .material-symbols-outlined,
.owl-carousel .owl-nav button.owl-next .material-symbols-outlined {
    font-size: 44px;
    line-height: 1;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #c9b896 !important;
    color: #ffffff !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

/* Map Section Styles */
.map-section {
  padding: 60px;
  background-color: #efeded;
}

.map-info-content {
  padding: 40px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}

.map-description {
  color: var(--text-color);
  margin-bottom: 40px;
}

.distances-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.distance-item:last-child {
  border-bottom: none;
}

.distance-name {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.distance-value {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a39373;
}

.map-container-new {
  width: 100%;
  height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container-new iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer Section */
.site-footer {
  background: #968e83; 
  

  border-top: 1px solid #e0e0e0;
}

.footer-top {
  padding: 50px 45px;
  border-bottom: 1px solid #e0e0e06b;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.footer-contact-item .material-symbols-outlined {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  font-weight: 600;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 0;
  display: inline;
}

.footer-right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.footer-stay-connected {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-socials a .fa-facebook {
  background: #1877f2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a .fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a .fa-tripadvisor {
  background: #00af87;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a:hover {
  transform: translateY(-2px);
}

.footer-book-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c9b896;
  transition: left 0.4s ease;
  z-index: -1;
}

.footer-book-btn:hover::before {
  left: 0;
}

.footer-book-btn:hover {
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-final {
  padding: 15px 45px;
    /* background: #968e83; 
  background: #c9b896; */
  background: #968e83;  
}

.footer-copyright,
.footer-license,
.footer-credits {
  font-size: 0.85rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.footer-credits a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credits a:hover {
  font-weight: 600;
}

@media (max-width: 1024px) {
   .map-info-content  {
    padding: 30px;
   }
}

@media (max-width: 991px) {
  .map-section {
    padding: 60px 15px 70px;
  }

  .map-info-content {
    padding: 40px 30px;
  }

  .map-container-new {
    height: 450px;
  }

  .distance-name {
    font-size: 0.9rem;
  }

  .distance-value {
    font-size: 0.8rem;
  }

  .footer-top {
    padding: 40px 15px;
  }

  .footer-final {
    padding: 15px 15px;
  }
  
  .footer-right-content {
    align-items: center;
    margin-top: 30px;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  /* .footer-nav {
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  } 
  
  .footer-map-link {
    justify-content: center;
    margin-top: 20px;
  } */
  
  .footer-copyright,
  .footer-license,
  .footer-credits {
    text-align: center;
  }
}
@media (max-width: 1024px) {
    .map-description {
    margin-bottom: 20px;
   }
}
@media (max-width: 767px) {
  .motto-text {
    font-size: 1.3rem;
   }
  .motto-text::before {
    display: none;
   }
   .motto-text::after {
     display: none;
   }
  .map-section {
    padding: 50px 27px 60px;
  }

  .map-info-content {
    padding: 30px 20px;
  }

  .map-description {
    margin-bottom: 30px;
  }

  .map-container-new {
    height: 400px;
  }

  .distance-item {
    padding: 10px 0;
  }

  .distance-name {
    font-size: 0.9rem;
  }

  .distance-value {
    font-size: 0.9rem;
  }
	
	.footer-contact {
	 align-items: center;
	}
}

@media (max-width: 575px) {
	
	.mani-item {
    height: auto;
   
}
	
  .footer-top {
    padding: 30px 15px;
  }
  
  /* .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  } */
  
  .footer-logo {
    max-width: 150px;
  }
  
  .footer-copyright,
  .footer-license,
  .footer-credits {
    font-size: 0.8rem;
  }
	
}

/* Slide Menu Styles */
.slide-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: #f8f8f9;
  z-index: 1040;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slide-menu.active {
  transform: translateY(0);
}

.slide-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px;
}

.slide-menu-content > .row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-menu-logo a {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--title-color);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.slide-menu-logo a:hover {
  color: #c9b896;
}

.slide-menu-nav {
  position: relative;
}

.slide-menu-content .row .col-md-6:first-child .slide-menu-nav::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #d7d2c65c;
}

.slide-menu-nav ul {
  margin: 0;
  padding: 0;
  max-width: 400px;
}

.slide-menu-content .row .col-md-6:first-child .slide-menu-nav ul {
  margin-left: auto;
  margin-right: 10%;
}

.slide-menu-content .row .col-md-6:last-child .slide-menu-nav ul {
  margin-left: 10%;
  margin-right: auto;
}

.slide-menu-nav li {
  margin-bottom: 0;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #d7d2c88c;
}

.slide-menu-nav li:last-child {
  border-bottom: none;
}

.slide-menu-nav a {
  font-size: 1.5625rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-block;
}

.slide-menu-nav a:hover,
.slide-menu-nav a.active {
  color: #111;
  font-weight: 500;
}

.btn-slide-book {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: var(--title-color);
  border: 1px solid #9b9b9b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-slide-book:hover {
  background: #b6a582;
  color: #fff;
  border: 1px solid #b6a582;
}

.slide-menu-footer {
  margin-top: auto;
  padding: 26px 0 18px;
  /* background-color: #b6a582; */
  background-color: #968e83;
  border-top: none;
}

.slide-footer-section {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-footer-section .material-symbols-outlined {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 8px;
  background: #cdcdcd75;
  padding: 7px;
  border-radius: 50%;
}

.slide-footer-section p {
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}

.slide-footer-section a {
  color: #ffffff;
  transition: color 0.3s ease;
  text-decoration: none;
}

.slide-footer-section a:hover {
  letter-spacing: 0.4px;
}

/* Burger animation when menu is open */
body.menu-open {
  overflow: hidden;
  padding-right: 0 !important;
}

body.menu-open .site-header {
  position: fixed;
  width: 100%;
}

body.menu-open .burger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .burger-icon span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 767px) {
  .slide-menu-content .row .col-md-6:first-child .slide-menu-nav::after {
    display: none;
  }

  .slide-menu-content .row .col-md-6:first-child .slide-menu-nav ul,
  .slide-menu-content .row .col-md-6:last-child .slide-menu-nav ul {
    margin-left: auto;
    margin-right: auto;
  }
  .slide-menu-nav li {
    padding: 0.6rem 0;
  }

  .slide-menu-content .row .col-md-6:first-child .slide-menu-nav li:last-child {
    border-bottom: 1px solid #d7d2c88c;
  }

  .slide-menu-content {
    padding: 15px 15px 10px;
  }

  .row.justify-content-center.mb-5 {
    margin-bottom: 2rem !important;
  }

  .col-12.text-center.mt-5 {
    margin-top: 0rem !important;
  }
}

@media (max-width: 991px) {
  .slide-menu {
    top: 58px;
    height: calc(100vh - 58px);
  }

  .slide-menu-logo a {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }

  .slide-menu-nav a {
    font-size: 1.5rem;
  }

  .slide-menu-nav ul {
    max-width: 350px;
  }

  .slide-menu-nav li {
    padding: 0.5rem 0;
  }

  .slide-menu-content {
    padding: 25px 15px 15px;
  }

  .slide-footer-section p {
    font-size: 0.8rem;
  }

  .slide-footer-section .material-symbols-outlined {
    font-size: 18px;
  }

	 .lang-switch a {
   font-size:17px;
  }

  .intro-section {
    padding: 64px 15px 65px;
    overflow: hidden;
  }
	
	.stay-container {
		padding-left:12px;
		padding-right: 12px;
	}
	
	.stay-subtitle {
		
		font-size: 1rem;
		font-weight: 400;
	}
	
	.gallery-section {
		padding: 0px 5px 100px;

	}
	
	.noslider .gallery-section {
		padding: 64px 5px 100px;

	}

  .footer-top {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .header-inner {
    padding: 14px 20px;
  }

  .site-logo {
    letter-spacing: 0.2em;
    font-size: 1.1rem;
  }

  .btn-book {
    padding: 8px 16px;
    font-size: 0.86rem;
  }
	.hero-section {
		height:auto;
	}
}

@media (max-width: 767px) {
    .header-inner {
    grid-template-columns: 1fr  1fr;
  }
  .slide-menu-nav a {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .slide-menu {
    top: 30px;
    height: calc(100vh - 30px);
  }

  .slide-menu-logo a {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
  }

  .slide-menu-nav a {
    font-size: 1.05rem;
  }

  .slide-menu-nav ul {
    max-width: 280px;
  }

  .slide-menu-nav li {
    padding: 0.3rem 0;
  }

  .slide-menu-content {
    padding: 20px 15px 15px;
  }

  .btn-slide-book {
    padding: 10px 24px;
    font-size: 14px;
  }
	
.lang-switch-mobile a {
    font-size: 15px;
	}
	
  .slide-footer-section p {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  .slide-footer-section .material-symbols-outlined {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .site-logo {
    font-size: 1.0625rem;
    letter-spacing: 0.10em;
  }

  .header-actions {
    gap: 10px;
  }
	
	.lang-switch a {
        font-size: 16px;
    }

  .btn-book {
    padding: 8px 12px;
  }

  .lang-switch a {
    padding: 5px 9px;
  }

 
    .hero-swiper .swiper-pagination {
        bottom: 5px;
    }
  .intro-section {
        padding: 40px 15px 40px;
    }
   .mb-5-575 {
    margin-bottom: 8px !important;
    }
    .amenities-main-title {
     font-size: 27px;
    }
    .site-footer {
     padding: 50px 0 5px;
    }
    .footer-main {
     padding-bottom: 2px;
    }
    
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
    }
    
    .owl-carousel .owl-nav button.owl-prev .material-symbols-outlined,
    .owl-carousel .owl-nav button.owl-next .material-symbols-outlined {
        font-size: 30px;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
}
@media (max-width: 400px) {
  .site-logo {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 372px) {
  .site-logo {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}
