/* ==================== CSS Variables ==================== */
:root {
  --primary-color: #677b5a;
  --secondary-color: #9d4227;
  --bg-white: #ffffff;
  --bg-1: #f4f3f1;
  --bg-2: #c56d53;
  --bg-3: #fcfcfc;
  --bg-4: #f4f3f1;
  --bg-5: #bdd29a;
  
  --text-title: #202020;
  --text-body: #505050;
  
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ==================== Global Styles ==================== */
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.6;
  background-color: var(--bg-white);
  padding-top: 90px;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-title {
  font-family: var(--font-title);
  color: var(--text-title);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

h1 { font-size: 40px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }

.max-w-1800 {
  max-width: 1800px;
}

section {
  overflow: hidden;
}

.section-padding {
  padding: 80px 0;
}

/* Section Backgrounds */
.bg-1 { background-color: var(--bg-1); }
.bg-3 { background-color: var(--bg-3); }
.bg-4 { background-color: var(--bg-4); }

/* ==================== Header & Navigation ==================== */

.site-header {
  height: 90px;
  background-color: var(--bg-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.site-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
}

.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  background: transparent;
  padding: 0;
  cursor: pointer;
  height: 46px;
  transition: border-color 0.3s ease;
}

.menu-toggle-btn:hover {
  border-color: #999;
}

.menu-icon-wrapper {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-right: 1px solid #dcdcdc;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 16px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-title);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle-btn.active .menu-icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-btn.active .menu-icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-toggle-btn .menu-text {
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-title);
  text-transform: uppercase;
}

.header-logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-logo {
  max-height: 55px;
  width: auto;
  /* transition: transform 0.3s ease; */
}

.header-logo:hover {
  /* transform: scale(1.04); */
}

.header-logo-text {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-title);
  text-decoration: none;
  margin-top: 5px;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.btn-book-stay {
  border: 1px solid #dcdcdc;
  background: transparent;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-title);
  text-transform: uppercase;
  text-decoration: none;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 300px;
  transition: border-color 0.3s ease;
}

.btn-book-stay::before {
  content: attr(data-hover);
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: 200ms opacity, 500ms transform;
  perspective: 300px;
  opacity: 0;
  transform: rotateX(90deg) translateZ(20px);
  border: 1px solid var(--secondary-color);
}

.btn-book-stay:hover {
  border-color: transparent;
}

.btn-book-stay:hover::before, .btn-book-stay:active::before {
  opacity: 1;
  transform: rotateX(0deg);
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid #dcdcdc;
  height: 46px;
  background: transparent;
  position: relative;
  overflow: hidden;
  width: 92px;
}

.lang-switcher::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.lang-switcher:has(.lang-btn:nth-child(1).active)::before {
  transform: translateX(0);
}

.lang-switcher:has(.lang-btn:nth-child(2).active)::before {
  transform: translateX(100%);
}

.lang-switcher:has(.lang-btn:nth-child(1):hover)::before {
  transform: translateX(0);
}

.lang-switcher:has(.lang-btn:nth-child(2):hover)::before {
  transform: translateX(100%);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-title);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.lang-btn:first-child {
  border-right: 1px solid #dcdcdc;
}

.lang-switcher:has(.lang-btn:nth-child(1).active) .lang-btn:nth-child(1),
.lang-switcher:has(.lang-btn:nth-child(2).active) .lang-btn:nth-child(2) {
  color: var(--bg-white);
}

.lang-switcher:has(.lang-btn:nth-child(1):hover) .lang-btn:nth-child(1),
.lang-switcher:has(.lang-btn:nth-child(2):hover) .lang-btn:nth-child(2) {
  color: var(--bg-white);
}

.lang-switcher:has(.lang-btn:nth-child(1):hover) .lang-btn:nth-child(2) {
  color: var(--text-title);
}

.lang-switcher:has(.lang-btn:nth-child(2):hover) .lang-btn:nth-child(1) {
  color: var(--text-title);
}

.header-center {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f4f4f4;
  z-index: 999;
  padding-top: 130px;
  padding-bottom: 50px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  align-items: center;
}

.header-center.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
      padding-top: 60px;
}

.menu-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu li {
  margin: 0;
  width: auto;
}

.main-menu a {
  position: relative;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: #505050; /* Fallback */
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  display: inline-block;
  padding: 5px 0;
  transition: color 0.4s ease;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .main-menu a {
    background: linear-gradient(to right, var(--primary-color) 50%, #505050 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease;
  }
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}

.main-menu a:hover {
  color: var(--primary-color); /* Fallback */
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .main-menu a:hover {
    background-position: 0 0;
  }
}

.main-menu a:hover::after {
  width: 100%;
}

.main-menu a.active {
  color: var(--primary-color); /* Fallback */
  font-weight: 600;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .main-menu a.active {
    background-position: 0 0;
  }
}

.main-menu a.active::after {
  width: 100%;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-lang-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-title);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.menu-lang-btn.active {
  color: var(--primary-color);
  font-weight: 700;
}

.menu-lang-btn:hover {
  color: var(--primary-color);
}

.menu-lang-sep {
  color: #ccc;
  font-size: 16px;
}

/* ==================== Hero Slider ==================== */
.hero-slider {
  height: calc(100vh - 90px);
  width: 100%;
}

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

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.14);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  color: var(--bg-white);
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.swiper-slide-active .hero-content h2 {
  opacity: 1;
  transform: translateY(0);
}



.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bg-white);
  opacity: 0.8;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #fff;
}

.hero-slider .swiper-pagination-bullet-active {
  width: 30px;
  background-color: var(--primary-color);
  opacity: 1;
}

@media (max-width: 575px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    top: auto;
    bottom: 30px;
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 991px) {
  .site-header {
    height: 80px;
  }
  
  .header-logo {
    max-height: 38px;
  }

  .btn-book-stay {
    display: none;
  }

  .menu-toggle-btn .menu-text {
    display: none;
  }

  .menu-toggle-btn {
    border: none;
  }

  .menu-toggle-btn .menu-icon-wrapper {
    border-right: none;
    padding: 0 10px;
  }

  .lang-switcher {
    display: none;
  }

  .header-logo-link {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .header-left {
    flex: 0 0 auto;
  }

  .header-right {
    flex: 0 0 auto;
  }

  .site-header .container-fluid {
    justify-content: space-between;
  }
  
  .header-center {
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .hero-slider .swiper-pagination {
    display: none;
  }

  .hero-slider {
    height: 450px;
  }
}


/* ==================== Gallery Section ==================== */
.gallery-header h3 {
    font-family: var(--font-title);
    font-size: 36px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 16px;
}

.gallery-item:last-child {
    margin-bottom: 0;
}

.gallery-small {
    aspect-ratio: 3/2;
}



.gallery-item .overlay {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(46, 90, 71, 0.6);
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item .overlay::after {
    content: '\e8ff';
    font-family: 'Material Symbols Outlined';
    color: white;
    font-size: 48px;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==================== Footer ==================== */
.site-footer {
    background-color: #e6eceb;
}

.bg-footer {
    background-color: #e6eceb;
}

.section-padding-footer {
    padding: 60px 0 10px;
}

.footer-simple-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-simple-links li {
    margin-bottom: 8px;
}

.footer-simple-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: var(--font-body);
}

.footer-simple-links a:hover {
    color: var(--primary-color);
}

.footer-square-logo {
    width: 304px;
  
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #3b5998;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
    margin-left: 8px;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a[aria-label="Instagram"] {
    background: #e1306c;
}

.social-links a[aria-label="LinkedIn"] {
    background: #0077b5;
}

.footer-bottom-simple {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 18px;
    font-size: 13px;
    font-family: var(--font-body);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-title);
    margin-bottom: 16px;
}

.footer-contact-text {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.footer-contact-link,
.contact-link {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover,
.contact-link:hover {
    color: var(--text-accent);
}

.footer-address {
    margin-bottom: 16px;
}

.footer-bottom-text {
    font-size: 13px;
    color: var(--text-body);
    font-family: var(--font-body);
}

/* ==================== Buttons ==================== */
.gallery-button-wrapper {
    margin-top: 60px;
}

.button {
  width: 220px;
  height: 60px;
  margin: 0 auto;
  perspective: 1800px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.button .qube {
  position: relative;
  height: 46px;
  width: 100%;
  /*perspective: 1800px;*/
  /*transform-style: preserve-3d;*/
}

.button .qube .front, .button .qube .back {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateX(-90deg);
  transition: transform 0.3s ease;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  color: var(--bg-white);
  line-height: 46px;
  text-align: center;
}

.button .qube .front {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button .qube .front::before {
  /* content: ""; */
  display: block;
  z-index: -1;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
  width: 100%; height: 100%;
}

.button .qube .front::after {
  background: #FFF;
  /* content: ""; */
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 1;
}

.button .qube .back {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);  
  transform: rotateX(0deg) translateZ(60px);
}

.button .qube:hover .front {
  transform: rotateX(0deg) translateZ(30px);
}

.button .qube:hover .back {
  transform: rotateX(90deg) translateZ(30px);
}

.button:active .front {
  border-radius: 0;
  background-color: transparent;
  color: var(--bg-white);
}

.button:active .front::before {
  background-color: var(--secondary-color);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.button:active .front::after {
  left: 120%;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}


/* ==================== About Section ==================== */
.about-block-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-title);
  letter-spacing: 1.5px;
  margin-top: 30px;
}

.about-block-text {
  font-family: var(--font-body);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
}

.about-caption {
  font-family: var(--font-body);
  font-style: italic;
  color: #777;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

.about-img-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.about-img-wrapper img {
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.btn-outline-reason {
  border: 1px solid #a6a6a6;
  background: transparent;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-body);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline-reason:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}


.feature-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-right: 18px;
  flex-shrink: 0;
}

/* ==================== Utility Components ==================== */
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #ccc7bb;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}
.m-backtotop.active {
  bottom: 50px;
  opacity: 1;
	z-index: 1000;
}
.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
	color: #fff;
}
.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 9px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
  color: #fff;
}
.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 50px;
  cursor: pointer;
  background: #677b5a;;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 1000;
}
.fab-container:hover {
    height: 100%;
}
.fab-container:hover .sub-button:nth-child(2) {
    transform: translateY(-60px);
}
.fab-container:hover .sub-button:nth-child(3) {
    transform: translateY(-120px);
}
.fab-container:hover .sub-button:nth-child(4) {
    transform: translateY(-180px);
}
.fab-container:hover .sub-button:nth-child(5) {
    transform: translateY(-240px);
}
.fab-container:hover .sub-button:nth-child(6) {
    transform: translateY(-300px);
}
.fab-container .fab {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: #9d4227;
    border-radius: 50%;
    z-index: 2;
}

.fab-container .fab .fab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.fab-container .fab .fab-content .material-symbols-outlined {
    color: #ffffff;
    font-size: 38px;
    font-weight: 200;
}
.fab-container .sub-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 8px;
    right: 6px;
    height: 50px;
    width: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.fab-container .sub-button:hover {
    cursor: pointer;
}
.fab-container .sub-button .material-symbols-outlined {
    color: #666666;
    padding-top: 6px;
    font-size: 25px;
}
.fab-container .sub-button a {
    text-decoration: none;
}

@media (max-width:767px) {
	.fab-container {
		display: none;
	}
}

/* ==================== Section Specific Styles ==================== */

/* About Section */
.about-title {
  font-size: 38px;
  color: var(--text-title);
  letter-spacing: 1px;
}

.about-image {
  object-fit: cover;
  aspect-ratio: 16/11;
}

/* Room Meta Icons */
.icon-size-lg { font-size: 30px !important; }
.icon-size-xl { font-size: 31px !important; }

/* Location Section */
.location-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-color);
}

.location-section-title {
  margin-bottom: 0;
}

.map-wrapper {
  height: 500px;
  width: 100%;
  overflow: hidden;
}

.map-iframe {
  border: 0;
}

/* Header Logo Text */
.header-logo-text-hidden {
  display: none;
  font-size: 20px;
  color: var(--text-title);
  text-decoration: none;
}

.btn-discover-more {
    display: inline-block;
    border: 1px solid #d1d1d1;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-body);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discover-more:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* Location Cards */
.location-card {
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-img-wrap {
    width: 100%;
    overflow: hidden;
}

.location-img-wrap img {
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .location-img-wrap img {
    transform: scale(1.05);
}

.location-content {
    padding: 25px 20px;
    background-color: var(--bg-white);
}

.location-title {
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--text-title);
    margin-bottom: 8px;
    font-weight: 500;
}

.location-link {
    font-family: var(--font-body);
    font-size: 13px;
    color: #c56d53;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.location-link:hover {
    color: var(--text-title);
}

.swiper-button-prev-loc,
.swiper-button-next-loc {
    cursor: pointer;
    color: var(--text-title);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev-loc:hover,
.swiper-button-next-loc:hover {
    color: var(--primary-color);
}




/* Room Cards */
.section-title-with-line {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

/* .section-title-with-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
} */

.view-all-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-title);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--text-title);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}

.view-all-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.room-card {
  background: var(--bg-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  box-shadow: 0 5px 17px rgb(0 0 0 / 10%);
}

.room-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 25px;
}

.room-card-title {
  color: var(--text-title);
  font-size: 26px;
  margin-bottom: 20px;
  padding: 0 25px;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #656565;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  padding-bottom: 14px;
  margin-left: 25px;
  margin-right: 25px;
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-meta .material-symbols-outlined {
  font-size: 26px;
  font-weight: 200;
  color: #777;
}

.room-buttons {
  display: flex;
  gap: 15px;
  margin-top: auto;
  padding: 0 25px;
}

.btn-room-outline {
  position: relative;
  display: inline-block;
  border: 1px solid #a6a6a6;
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-room-outline::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; 
  height: 0%; width: 100%;
  background-color: #c56d53;
  transition: height 0.3s ease-out;
  z-index: 0;
}

.btn-room-outline:hover::before {
  height: 100%;
}

.btn-room-outline span {         
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: 0.2s;
  width: 152px;
}

.btn-room-outline:hover span {
  color: var(--bg-white);
  transition: 0.2s 0.1s;
}

.btn-room-solid {
  position: relative;
  display: inline-block;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease-out;
}

.btn-room-solid::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; 
  height: 100%; width: 100%;
  background-color: var(--primary-color);
  transition: height 0.3s ease-out;
  z-index: 0;
}

.btn-room-solid:hover {
  border-color: #a6a6a6;
}

.btn-room-solid:hover::before {
  height: 0%;
}

.btn-room-solid span {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: 0.2s 0.1s;
  width: 152px;
}

.btn-room-solid:hover span {
  color: var(--text-title);
  transition: 0.2s 0.1s;
}




/* ==================== Location Distances ==================== */
.location-distances {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.distance-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    padding: 15px 25px;
    background-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: default;
}

.distance-pill:hover {
    transform: translateY(2px) scale(0.99);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.distance-pill .location-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-title);
    letter-spacing: 1px;
}

.distance-pill .location-value {
    font-size: 15px;
}

.location-quote {
    border-left: 2px solid var(--secondary-color);
    padding-left: 20px;
    margin: 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
}

/* ==================== Reasons / Features Section ==================== */
.bg-gradient-light {
    background-color: var(--bg-4);
}

.reasons-title {
 
    line-height: 1.25;
    color: var(--text-title);
}

.reasons-desc {

    line-height: 1.7;
    color: var(--text-body);
}

.feature-title {
    font-family: var(--font-body);

    font-weight: 600;
    color: var(--text-title);
    margin-bottom: 5px;
}

.feature-text {

    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-icon-light {
    font-size: 30px;
    font-weight: 300;
    color: #8aa578;
}

/* ==================== Explore Athens Section ==================== */
.section-title-lg {
    font-size: 36px;
    line-height: 1.25;
    color: var(--text-title);
}

.explore-desc {

    line-height: 1.7;
    color: var(--text-body);
    max-width: 680px;
}

/* ==================== Icon Utilities ==================== */
.icon-align-middle {
    vertical-align: middle;
    font-size: 18px;
}

.icon-thin-large {
    font-size: 28px;
    font-weight: 200;
}

.icon-white-large {
    font-size: 24px;
    color: #fff;
}

/* ==================== Opening Popup ==================== */
.opening-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.opening-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.opening-popup-content {
    background-color: var(--bg-white);
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border-radius: 4px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.opening-popup-overlay.active .opening-popup-content {
    transform: translateY(0);
}

.opening-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--text-body);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.opening-popup-close:hover {
    color: var(--primary-color);
}

.opening-popup-text h3 {
    color: var(--primary-color);
    font-size: 28px;
    letter-spacing: 1px;
}

.opening-popup-text p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
}

.opening-popup-text .fw-bold {
    font-size: 18px;
    color: var(--text-title);
    margin-top: 20px;
}

/* ==================== Responsive ==================== */

/* Large desktops (≤1400px) */
@media (max-width: 1400px) {
    .footer-square-logo {
        width: 240px;
    }
}

/* Tablets landscape (≤1199px) */
@media (min-width: 992px) {
  .main-menu {
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-slider {
        height: calc(100vh - 80px);
    }

    .section-padding {
        padding: 60px 0;
    }

    .reasons-title {
        font-size: 28px;
    }

    .section-title-lg {
        font-size: 30px;
    }

    .about-title {
        font-size: 32px;
    }

    .btn-room-outline span,
    .btn-room-solid span {
        width: auto;
        padding: 10px 14px;
    }
}

/* Tablets portrait (≤991px) */
@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .about-title {
        font-size: 28px;
    }

    .reasons-title {
        font-size: 26px;
    }

    .section-title-lg {
        font-size: 26px;
    }

    .gallery-header h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .map-wrapper {
        height: 350px;
    }

    .footer-square-logo {
        width: 180px;
    }

    .distance-pill {
        padding: 12px 18px;
    }
}

/* Mobile landscape (≤767px) */
@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-padding-footer {
        padding: 40px 0 20px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-image {
        aspect-ratio: 4/3;
    }

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

    .room-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-room-outline span,
    .btn-room-solid span {
        width: 100%;
    }

    .reasons-title {
        font-size: 24px;
    }

    .section-title-lg {
        font-size: 24px;
    }

    .gallery-header h3 {
        font-size: 24px;
    }

    .map-wrapper {
        height: 280px;
    }

    .location-section-title {
        font-size: 26px;
    }

    .footer-square-logo {
        width: 160px;
    }
}

/* Mobile portrait (≤575px) */
@media (max-width: 575px) {
	
	.header-center {
        width: 100%;
        padding: 30px 10px;
    }
	
	.main-menu {
   gap:3px;
  }
	
	.main-menu a {
		font-size: 20px;
	}
    .hero-content h2 {
        font-size: 32px;
        letter-spacing: 0.5px;
    }

    .section-padding {
        padding: 35px 0;
    }

    .about-title {
        font-size: 22px;
    }

    .room-meta {
        font-size: 12px;
        gap: 10px;
    }

    .distance-pill {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 16px;
    }

    .distance-pill .location-value {
        font-weight: 600;
        color: var(--primary-color);
    }

    .gallery-header h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .footer-square-logo {
        width: 140px;
    }

    .section-title-lg {
        font-size: 22px;
    }

    .location-section-title {
        font-size: 22px;
    }

    .location-quote {
        font-size: 14px;
    }

    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
}

/* Floating Book Button */
.floating-book-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* background-color: #be965d; */
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    /* box-shadow: 0 4px 15px rgba(190, 150, 93, 0.4); */
    box-shadow: 0 4px 15px rgb(127 148 134 / 22%);
    z-index: 998;
    transition: all 0.3s ease;
}

.floating-book-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(190, 150, 93, 0.5);
}

@media (max-width: 768px) {
    .floating-book-btn {
        display: block;
    }
}