


@font-face {
  font-family: 'Lexend';
  src: url('/media/fonts/Lexend/Lexend-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manufacturing Consent';
  src: url('/media/fonts/Manufacturing_Consent/ManufacturingConsent-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  
  --color-bg: rgb(0, 0, 0);
  --color-text: #ffffff;
  --color-text-dim: #dddddd;
  --color-accent: rgb(0, 255, 0);
  --color-accent-dim: rgb(0, 200, 0);
  --color-overlay: rgba(0, 0, 0, 0.4);
  --color-glass: rgba(255, 255, 255, 0.1);

  
  --font-primary: "Lexend", sans-serif;
  --font-secondary: "Manufacturing Consent", sans-serif;

  
  --shadow-glow: 0px 0px 8px rgba(255, 255, 255, 0.8);
  --shadow-glow-accent: 0px 0px 8px rgba(0, 255, 0, 0.8);
  --shadow-box: 0px 0px 20px 10px rgba(0, 0, 0, 0.3);
  --backdrop-blur: blur(2px) grayscale(1);

  
  --z-negative: -1;
  --z-background: 0;
  --z-content: 2;
  --z-ui: 10;
  --z-nav: 1000;
  --z-overlay: 1001;
  --z-modal: 1002;
  --z-max: 1003;

  
  --villa-padding: calc(2vw + 15px);
}



* {
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  padding: 5px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  letter-spacing: 1px;
  overflow-x: hidden;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}



h1, h2, h3, h4, div {
  color: var(--color-text);
}

h1 {
  z-index: 50;
  font-size: 5rem;
  font-weight: 100;
  text-shadow: 0 0 10px black;
  user-select: none;
}

h2 {
  margin: 30px 25px;
  font-size: 2rem;
  font-weight: 300;
  text-shadow: 0 0 10px black;
}

h2.black {
  color: black;
}

h3 {
  font-size: 1.5rem;
  font-weight: 200;
}

h4, div {
  font-size: 1.4rem;
  font-weight: 200;
}

strong {
  font-weight: 400;
}

hr {
  margin: 40px 60px;
}

.qa, .basic-header {
  color: black;
  font-size: calc(0.4vw + 14px);
  font-weight: 400;
  margin-top: 0;
  text-shadow: none;
  font-family: var(--font-primary);
}

.info {
  color: inherit;
  text-decoration: none;
}




.nav-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 90px;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.nav-menu-container.nav-menu-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.nav-menu-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-negative);
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay);
  box-shadow: var(--shadow-box);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
}

.nav-menu-logo {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 20px 0;
  color: var(--color-text);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}

.nav-menu-item,
.nav-menu-booking {
  position: relative;
  padding: 20px 0;
  font-size: calc(0.1vw + 1.1rem);
  font-weight: 200;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: font-size 0.3s ease-in-out;
}

.nav-menu-item {
  color: var(--color-text);
  text-shadow: var(--shadow-glow);
}

.nav-menu-booking {
  color: var(--color-accent);
  text-shadow: var(--shadow-glow-accent);
}

.nav-menu-item:hover,
.nav-menu-booking:hover {
  font-size: calc(0.1vw + 1.2rem);
}

.nav-menu-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px; 
}

.nav-menu-spacer {
  margin: 0;
  pointer-events: none;
}


.nav-submenu-container {
  position: absolute;
  top: 77px;
  left: 50%;
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  padding: 10px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.3);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-menu-item:hover .nav-submenu-container {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-submenu-item {
  width: 100%;
  padding: 12px 20px;
  color: var(--color-text);
  font-size: calc(0.2vw + 0.8rem);
  font-weight: 300;
  letter-spacing: 5px;
  text-decoration: none;
  text-shadow: var(--shadow-glow);
  user-select: none;
  transition: font-size 0.3s ease-in-out, background-color 0.3s ease;
}

.nav-submenu-item:hover {
  font-size: calc(0.2vw + 0.9rem);
  background-color: var(--color-glass);
}


.nav-menu-container-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-modal);
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  padding: 80px 0 40px 0;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px) grayscale(1);
  -webkit-backdrop-filter: blur(4px) grayscale(1);
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.nav-menu-item-mobile,
.nav-menu-subitem-mobile,
.nav-menu-subitem-description-mobile {
  z-index: var(--z-modal);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: font-size 0.3s ease-in-out;
}

.nav-menu-item-mobile {
  margin: 10px;
  color: var(--color-accent);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: var(--shadow-glow-accent);
}

.nav-menu-subitem-mobile {
  margin-top: 15px;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-shadow: var(--shadow-glow);
}

.nav-menu-subitem-description-mobile {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 6px;
  text-shadow: var(--shadow-glow);
}

.nav-menu-separator-mobile {
  width: 250px;
  height: 1px;
  margin: 40px auto;
  background-color: var(--color-text);
  border: none;
  box-shadow: 0px 0px 7px 1px var(--color-text);
}

button.hamburger-menu,
button.exit-menu {
  z-index: var(--z-max);
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-menu {
  display: none;
  margin: 0;
}

.hamburger-menu div {
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: var(--color-text);
  border-radius: 5px;
  pointer-events: none;
}

.exit-menu {
  position: fixed;
  top: 25px;
  right: 30px;
  display: none;
  width: 30px;
  height: 30px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.exit-menu div {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
  border-radius: 2px;
  pointer-events: none;
}

.exit-menu div:first-child { transform: rotate(45deg); }
.exit-menu div:last-child { transform: rotate(-45deg); }


@media (max-width: 1000px), (hover: none) and (pointer: coarse) {
  .nav-menu-item,
  .nav-menu-booking,
  .nav-menu-spacer {
    display: none;
  }

  .nav-menu-container {
    justify-content: flex-start;
    padding-left: 5vw;
  }

  .hamburger-menu {
    position: absolute;
    right: 20px;
    display: block;
  }
}



section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: white;
  overflow-x: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.slides-container {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slides-container::-webkit-scrollbar {
  display: none;
}


.slide {
  position: relative;
  width: 100%;
  min-width: 100%;
  height: 100vh;
  margin: 0;
  background-color: black;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.long-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding-top: 90px;
  background-color: black;
  overflow: visible;
  clip-path: inset(0);
}

.slide.textured,
.long-slide.textured {
  background-image: url(/media/images/textures/fabric.webp);
  background-attachment: fixed;
}

.long-slide-content {
  position: relative;
  z-index: var(--z-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.long-slide-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1 !important;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  will-change: transform;
}


.slide-video,
.slide-image,
.slide-content,
.slide-text-static {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide-video,
.slide-image {
  z-index: -2;
  width: 100%;
  min-width: 100%;
  height: 100vh;
  min-height: 100vh;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

#hero-video {
  height: 120vh;
  min-height: 120vh;
}


.dimmer, 
.brighter {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-background);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dimmer { background-color: rgba(0, 0, 0, 0.5); }
.brighter { background-color: rgba(255, 255, 255, 0.9); }


.slide-content,
.slide-text-static {
  z-index: var(--z-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  will-change: transform;
}

.slide-text-static { pointer-events: none; }
.slide-content { pointer-events: auto; }

.slide-content-unjustified {
  position: absolute;
  top: 0;
  left: 0;
}

.slide-content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translate(-50%, -50%);
}


.slide-header {
  width: auto;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-secondary);
  text-align: center;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 1px transparent;
  user-select: none;
}

h1.slide-header { font-size: calc(2rem + 3vw); }
h2.slide-header { font-size: calc(1.8rem + 2vw); }

.subtitle {
  margin-top: 10px;
  display: block;
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: calc(1.2rem + 1vw);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 0;
}

.slide-thin-description {
  max-width: 700px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: calc(1rem + 0.4vw);
  line-height: 2lh;
  -webkit-text-stroke: none;
}

div.slide-description,
h3.slide-description {
  max-width: 800px;
  padding: 10px calc(5vw + 20px);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: calc(1rem + 0.4vw);
  text-align: center;
  -webkit-text-stroke: none;
}

h4.slide-description {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: calc(0.95rem + 0.4vw);
  text-align: center;
  -webkit-text-stroke: 1px white;
}

.slide-image-description {
  position: absolute;
  top: 50px;
  left: 50px;
}

.slide-note {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: calc(13px + 0.5vw);
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.slide-note:hover {
  transform: scale(1.05);
}


.nav-arrow {
  position: absolute;
  top: 50%;
  z-index: var(--z-ui);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0.8;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out, opacity 0.3s ease;
}

.nav-arrow:hover { 
  transform: translateY(-50%) scale(1.15); 
}

.nav-arrow.hidden { 
  opacity: 0; 
  pointer-events: none; 
}

.nav-arrow-left { left: 10px; }
.nav-arrow-right { right: 10px; }

.nav-arrow svg { 
  width: 15px; 
  height: 15px; 
  fill: black; 
}


.slide-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 5;
  padding: 15px;
  background-color: var(--color-text);
  color: black;
  font-size: calc(0.8rem + 0.2vw);
  font-weight: 200;
  letter-spacing: 3px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

.slide-button-2, 
.slide-button-inverted {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin: 20px;
  padding: 15px;
  background-color: var(--color-text);
  color: black;
  font-size: calc(0.8rem + 0.2vw);
  font-weight: 200;
  letter-spacing: 3px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

.slide-button-inverted {
  display: table;
  margin: 0 auto;
  left: auto;
  background-color: black;
  color: var(--color-text);
  transform: none;
}

.slide-button:hover,
.slide-button-2:hover {
  background-color: black;
  color: var(--color-text);
}

.slide-button-inverted:hover {
  background-color: var(--color-text);
  color: black;
}




.slide-review-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 80%;
  max-width: 900px;
  margin: 10px auto; 
}

.star-rating, .star-rating-2 {
  filter: drop-shadow(0 0 5px rgb(255, 215, 0));
  pointer-events: none;
}

.star-rating {
  position: absolute; 
  top: -25px;
  left: 50%;
  z-index: 11;
  transform: translateX(-50%);
  margin: 0;
}

.star-rating-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.slide-review-container {
  position: relative;
  display: block;
  width: 100%;
  max-height: 80vh; 
  padding-top: 50px; 
  padding-bottom: 15px;
  overflow: visible; 
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.slide-review {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  max-height: calc(80vh - 65px);
  padding-left: 10px; 
  padding-right: 10px;
  color: var(--color-text, white);
  font-family: var(--font-primary, "Lexend", sans-serif);
  font-size: calc(0.95rem + 0.4vw);
  font-style: italic;
  text-align: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30%); 
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-review.active {
  position: static; 
  z-index: 2;
  height: auto; 
  max-height: none;
  opacity: 1;
  overflow-y: visible;
  pointer-events: auto;
  transform: translateY(0); 
}

.slide-review.exit {
  position: absolute; 
  opacity: 0;
  transform: translateY(-30%); 
}

.review-arrow {
  position: absolute;
  z-index: 20; 
  flex-shrink: 0;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.review-header {
  text-align: center;
  color: black;
  font-size: calc(0.4vw + 16px);
  font-weight: 400;
  margin-top: 0;
  text-shadow: none;
  font-family: var(--font-primary);
}

.review-villa {
  text-align: left;
  color: #333;
  font-size: calc(0.36vw + 13px);
}

.review-arrow:hover {
  opacity: 1;
  transform: scale(1.1) translateY(-45%);
}

.review-arrow-left {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.review-arrow-right {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.review-arrow svg {
  width: 25px;
  height: 25px;
  fill: white;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
  .slide-review-wrapper {
    width: 95%;
    gap: 10px;
  }
  .slide-review-container {
    height: 160px;
  }
}


.list-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(30px + 3vw);
  width: 75%;
  max-width: 1400px;
  margin: 40px;
  user-select: none;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: var(--color-text);
  font-size: calc(0.9rem + 0.3vw);
  font-weight: 200;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.list-icon {
  width: 1.4em;
  height: 1.4em;
  fill: currentColor;
  pointer-events: none;
}


.black-container-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
  gap: 10px;
  width: 100%;
  min-height: 50vh;
  padding: 10px;
  overflow: hidden;
}

.black-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 150px;
  margin: 10px 10px;
  background-color: #e3e3e3;
  color: black;
  text-align: center;
  outline: 2px solid black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.black-container-title {
  margin: 15px;
  background: var(--grad, linear-gradient(to bottom right, #000, #AAA));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: calc(15px + 1.1vw);
  font-weight: bold;
  text-shadow: var(--glow, none);
}

.black-container-description {
  margin: 15px;
  color: black;
  font-size: calc(10px + 0.8vw);
}

.black-container-separator {
  width: 80%;
  height: 2px;
  background-color: black;
}

@media (max-width: 500px) {
  .black-container-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}


.split-box {
  display: flex;
  width: 100%;
  min-height: 300px;
}

.split-box.reverse {
  flex-direction: row-reverse;
}

.split-box-image {
  width: 60%;
  padding: 20px;
  object-fit: cover;
  border-radius: 30px;
}

.split-box-description {
  display: flex;
  align-items: center;
  width: 40%;
  padding: 20px;
  color: white;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .split-box,
  .split-box.reverse {
    flex-direction: column;
  }
  .split-box-image,
  .split-box-description {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 0;
  }
  .split-box-image {
    padding: 0;
  }
}



.villa-slide-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.villa-slide {
  margin: 0;
  padding: 30px;
  background-color: white;
}

.villa-header, .thin-villa-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 20px;
  background-color: black;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.villa-header {
  color: white;
  font-family: var(--font-secondary);
  font-size: calc(3vw + 30px);
  text-align: center;
  height: 50vh;
}

.thin-villa-image {
  height: 20vh;
}

.villa-header#orchid-villa {
  background-image: url("/media/images/banners/orchid-villa-banner.webp");
}

.villa-header#gardenia-villa {
  background-image: url("/media/images/banners/gardenia-villa-banner.webp");
}

.villa-header#bougainvillea-villa {
  background-image: url("/media/images/banners/bougainvillea-villa-banner.webp");
}

h2.villa-slide-header {
  margin: 20px;
  color: black;
  font-family: var(--font-secondary);
  font-size: calc(1.8vw + 25px);
  text-align: center;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.villa-slide-description {
  margin: 40px;
  color: rgb(50, 50, 50);
  font-size: calc(0.4vw + 12px);
  font-weight: 200;
  text-align: center;
}

.villa-image-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  margin: 0;
  padding: 20px;
  background-color: black;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  font-family: var(--font-secondary);
  font-size: calc(3vw + 30px);
  text-align: center;
}

.villa-image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--villa-padding);
  margin: var(--villa-padding) 0;
}

.villa-image-container.full {
  grid-template-columns: 1fr;
}

.villa-image-wrapper {
  height: 40vh;
  overflow: hidden;
}

.villa-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.villa-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 10vw 10px 10vw;
}

.villa-list-item {
  color: black;
  font-size: 15px;
}




section.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
  min-height: 100vh;
}

.footer-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  width: 100%;
  height: 100vh;
  padding: 50px;
  overflow: hidden;
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

.footer-container::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("/media/images/homepage/orchid-villa-drone-shot.webp");
  background-position: center;
  background-size: cover;
}

.footer-container > * {
  position: relative;
  z-index: var(--z-content);
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 20px;
  background-color: var(--color-glass);
  color: rgb(200, 255, 200);
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.footer-item-title {
  margin: 20px 0px;
  color: rgb(150, 255, 150);
  font-size: 20px;
  font-weight: 300;
  user-select: none;
}

.footer-item-description {
  width: 100%;
  max-width: 300px;
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 150;
  text-align: center;
  user-select: all;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin: 10px;
  border-radius: 5px;
  pointer-events: none;
}

.footer-booking-button {
  display: inline-block;
  margin: 10px auto;
  padding: 14px 28px;
  background-color: var(--color-accent-dim);
  color: var(--color-text);
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  line-height: normal;
  vertical-align: middle;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 200, 0, 0.7);
  cursor: pointer;
  transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-booking-button:hover {
  background-color: var(--color-accent);
  text-shadow: 0 0 8px white;
  box-shadow: 0 0 15px var(--color-accent);
  transform: scale(1.07);
}

@media (max-width: 1000px) {
  .footer-container {
    flex-direction: column;
    padding: 15px;
  }
  .footer-item {
    width: 90%;
    max-width: 400px;
    height: 33vh;
  }
  .footer-item:last-child {
    margin-bottom: 0;
  }
  .footer-item-title {
    margin: 0;
    font-size: 17px;
  }
  .footer-item-description {
    margin: 0;
    font-size: 14px;
  }
  .footer-logo {
    max-width: 15vh;
    max-height: 15vh;
  }
}


.thin-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  padding: 80px;
  background-color: rgb(20, 20, 20);
}

.thin-footer-wrapper {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.thin-footer-header {
  color: var(--color-text-dim);
  font-size: 20px;
  font-weight: 300;
}

.thin-footer-item {
  margin: 5px;
  color: var(--color-text-dim);
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  user-select: none;
}

.thin-footer-item a {
  display: flex;
  width: 100%;
  background: transparent;
}

.thin-footer-item a:link, 
.thin-footer-item a:visited {
  color: white;
  text-decoration: none;
}

.thin-footer-item a:hover {
  color: limegreen;
}



.map-container-large {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container-large::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.map-container-large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  user-select: none;
  z-index: var(--z-overlay);
  padding: 2vw;
}

#lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  z-index: var(--z-modal);
}


.popup {
  box-sizing: border-box;
  min-height: 250px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  border-radius: 10px;
  background-color: white;
  width: min(450px, calc(100vw - 40px));
  padding: 30px;
  z-index: var(--z-ui);
  color: black;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.popup-header {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: black;
  margin: 0;
}

.popup-description {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 200;
  color: black;
  margin-top: 20px;
  margin-bottom: 30px;
}

.popup-button {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: white;
  background-color: black;
  border-radius: 5px;
  padding: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  margin-top: 30px;
  margin-bottom: 10px;
}

.popup-button:hover {
  color: black;
  background-color: rgb(255, 255, 255);
}

.popup-exit {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  margin: 0;
  padding: 15px;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.popup-exit:hover {
  transform: rotate(90deg);
  cursor: pointer;
}


.qa-toc-list {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}

.qa-toc-list li {
  margin: 5px 0;
  color: black;
}

.qa-toc-list li a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.qa-toc-list li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
