@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Ranchers&display=swap');

:root {
  --accent: #906A3A; /* dark brown */
  --highlight: #EfDEBB; /* light cream */
  --bg: #ffffff; /* white background */
  --text: #111111; /* default text color */
}
html {
scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   scroll-snap-type: y mandatory; /* snap po vertikali */
  overflow-y: scroll;           /* omogućava scroll */
  height: 100vh;                /* visina ekrana */
  padding: 0;
}


/* Page content */
.page-content {
  padding-bottom: 120px; /* space for bubble nav */
  padding-bottom: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* NAVBAR SECTION */
.navbar-section {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 1000;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.navbar-section.nav-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-14px);
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.4rem;
  background: rgba(236, 223, 192, 0.6);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(145, 105, 59, 0.25);
}

/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;      /* bolje za krug, punjenje bez deformacije */
  border-radius: 50%;     /* čini sliku savršeno kružnom */
  border: 1px solid #906A3A; /* tanka bordo/tamna ivica oko loga */
  transition: transform 0.3s ease; /* opcionalno, za hover efekat */
}

/* Hover efekat (malo uvećanje loga) */
.nav-logo:hover {
  transform: scale(1.1);
}


.nav-title {
  font-weight: 600;
  color: #91693B;
  white-space: nowrap;
}

/* CENTER (desktop only) */
.nav-center {
  display: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #91693B;
  font-weight: 500;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 2px;
  background: #91693B;
  border-radius: 999px;
}

/* RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-book-btn {
  display: none;
  background: #91693B;
  color: #ECDFC0;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(145,105,59,0.3);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 105, 59, 0.35);
  background: rgba(255, 247, 229, 0.55);
}

.lang-btn {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #7b5a31;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.34rem 0.58rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.lang-btn.is-active {
  background: #91693B;
  color: #ECDFC0;
}

.lang-switch--mobile {
  margin: 0.2rem 0 0.4rem;
  align-self: center;
}

.lang-switch--desktop {
  display: none;
}

/* MOBILE MENU BUTTON */
.nav-menu-btn {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #91693B;
  cursor: pointer;
}

/* MOBILE NAV MODAL */
/* OVERLAY */
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.mobile-sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* SIDEBAR */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 80%;
  max-width: 320px;
  background: rgba(236, 223, 192, 0.95);
  backdrop-filter: blur(18px);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: right 0.35s ease;
  z-index: 1600;
}

.mobile-sidebar.active {
  right: 0;
}

/* CLOSE */
.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  color: #91693B;
}

/* LINKS */
.mobile-nav-link {
  text-decoration: none;
  color: #91693B;
  font-weight: 500;
  font-size: 1.1rem;
}

.mobile-nav-link.book {
  background: #91693B;
  color: #ECDFC0;
  padding: 0.8rem;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(145,105,59,0.25);
}

/* DESKTOP CLEANUP */
@media (min-width: 1024px) {
  .mobile-sidebar,
  .mobile-sidebar-overlay,
  .nav-menu-btn {
    display: none;
  }
}


.mobile-nav-content {
  background: #ECDFC0;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 85%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.close-mobile-nav {
  background: none;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  color: #91693B;
}

.mobile-nav-link {
  text-decoration: none;
  color: #91693B;
  font-weight: 500;
}

.mobile-nav-link.book {
  background: #91693B;
  color: #ECDFC0;
  padding: 0.7rem;
  border-radius: 999px;
}

/* DESKTOP */
@media (min-width: 1024px) {
  .nav-center {
    display: flex;
  }

  .nav-book-btn {
    display: inline-block;
  }

  .lang-switch--desktop {
    display: inline-flex;
  }

  .nav-menu-btn {
    display: none;
  }
}


.modal-content {
  background: var(--bg);
  color: var(--text);
  border-radius: 1.5rem;
}

.modal-header {
  border-bottom: none;
}

/* First? section */

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    154deg,
    rgb(144, 106, 58) 0%,
    rgba(239, 222, 187, 1) 100%
  );
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 640px;
  color: #3b2a18;
}

.hero-image img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}


/* EYEBROW TEXT */
.hero-eyebrow {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.hero-eyebrow strong {
  color: var(--accent);

  
}


/* MAIN TITLE */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1.4rem;

}

/* KALMAN HIGHLIGHT */
.hero-highlight {
  display: block;
  font-weight: 800; /* EXTRA BOLD */
  letter-spacing: 0.02em;
}

/* DESCRIPTION */
.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  opacity: 0.95;
}



/* MOBILE */

@media (max-width: 768px) {
  .hero-section {
    align-items: flex-start;
    min-height: 100svh;
    padding-top: calc(env(safe-area-inset-top, 0px) + 88px);
    padding-bottom: 1.5rem;
  }

  .hero-inner {
    flex-direction: column;
    text-align: left;
    width: 100%;
  }

  .hero-image img {
    max-height: 50vh;
  }
}



/* First? section */



/* Second? section */
.hero-apartment {
  background: var(--bg);
  color: var(--text);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-apartment .hero-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* subtle shadow */
  transition: transform 0.3s ease;
}

.hero-apartment .hero-img:hover {
  transform: scale(1.02);
}

.hero-apartment h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.hero-apartment p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-apartment .btn-hero {
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--highlight);
  border: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.hero-apartment .btn-hero:hover {
  background: var(--highlight);
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-apartment .hero-img {
    margin-bottom: 2rem;
  }
  
  .hero-apartment h1 {
    font-size: 1.7rem;
  }

  .hero-apartment p {
    font-size: 1rem;
  }
}

/* Second end ? section */

.third-section {
  padding-top: 2rem;    /* ranije je verovatno 4-5rem */
  padding-bottom: 2rem; /* smanjuje visinu sa dna */
  margin: 0;
  scroll-snap-align: start;
  min-height: 80vh; /* svaka sekcija zauzima bar visinu ekrana */
  gap: 10px;
  position: relative;
  background: #EFDFBB;
  background: radial-gradient(circle,rgba(239, 223, 187, 1) 0%, rgba(144, 106, 58, 1) 72%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.third-section .hero-content h1,
.third-section .hero-content p,
.third-section .hero-content .hero-eyebrow,
.third-section .hero-content .hero-description {
  margin-top: 0;
  margin-bottom: 1rem; /* manji razmak između linija */
  line-height: 1.4;    /* kompaktni redovi */
}

/* Ako želiš da ceo sadržaj bude još kompaktniji */
.third-section .hero-content {
  padding: 0;           /* uklanja dodatni padding container-a */
}

.third-section .hero-reserve-btn {
  display: block;
  margin-top: 1.7rem;
  margin-left: auto;
  margin-right: auto;
  min-width: 220px;
}

.hero-word-pop {
  display: inline-flex;
  color: var(--accent);
  white-space: nowrap;
}

.hero-word-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em);
  filter: blur(2px);
  transition:
    opacity 0.44s ease,
    transform 0.44s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.44s ease;
  transition-delay: var(--letter-delay, 0ms);
}

.hero-word-pop.is-visible .hero-word-letter {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* Second section */

.customer-care {
  background: #ffffff; /* keep white background */
  color: var(--text);
}
.customer-care h3 {
  margin-top: 1.5rem; /* prostor iznad naslova */
}

.customer-care .care-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.customer-care .care-img:hover {
  transform: scale(1.02);
}

.customer-care h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.reviews-title-accent {
  color: inherit;
}

.customer-care p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
}

.reviews {
  position: relative;
  overflow: hidden; 
  color: var(--accent);
}

.review-track {
  width: max-content;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;              /* omogućava swipe */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  animation: scrollReviews 25s linear infinite;
}
.review {
  min-width: 260px;
  height: 260px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Screenshot inside */
.review img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;         /* NO stretching */
  display: block;
  border: 2px solid #906A3A;
}

@media (max-width: 768px) {

  .reviews {
    overflow-x: auto;               /* omogućava swipe */
    -webkit-overflow-scrolling: touch;
  }

  .review-track {
    animation: none;                /* gasi auto scroll */
    gap: 1rem;
  }

  .review {
    min-width: 250px;
    scroll-snap-align: start;       /* snap efekat */
  }

  .review-track {
    scroll-snap-type: x mandatory;  /* zaključavanje na karticu */
  }

  /* opcionalno – sakriva scrollbar */
  .reviews::-webkit-scrollbar {
    display: none;
  }
}

.review-track:hover {
  animation-play-state: paused;
}
.review-track:active {
  animation-play-state: paused;
}
.review-track::-webkit-scrollbar {
  display: none;
}

/* Animation */
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* adjust depending on number of reviews */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .customer-care .care-img {
    margin-bottom: 2rem;
  }
  .customer-care h2 {
    font-size: 1.5rem;
  }
  .customer-care p {
    font-size: 1rem;
  }

  .review {
    min-width: 250px;
    margin-right: 1rem;
  }
}



/* Second section */



.amenities {
  background: #ffffff;
  gap: 10px;
  padding-bottom: 1rem;
}

.amenities h2 {
  color: #91693B;
  margin-bottom: 0.5rem;
}

.amenities-sub {
  color: black;
  margin-bottom: 2.5rem;
}

.amenities-sub strong{
  color: var(--accent);
  font-weight: 700;
}

.amenities-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.amenity-card {
  color: white;
  position: relative;
  width: 280px;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}




.amenity-card img {
  width: 100%;
  height: 280px;
  object-fit: cover; /* default za mobilni */
  transition: all 0.5s ease;
  filter: brightness(0.9);
}

/* Span preko slike */
.amenity-overlay span {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Kad se hover ili klikne kartica, span nestane */
.amenity-card:hover .amenity-overlay span,
.amenity-card:active .amenity-overlay span {
  opacity: 0;
   /* opcionalno da malo “padne” */
}




/* Desktop verzija */
@media (min-width: 992px) {
  .amenity-card img {
    object-fit: cover; /* slike popunjavaju celu karticu */
  }
}

/* Dark overlay */
.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
  transition: opacity 0.4s ease;
}

/* Hover efekat */
.amenity-card:hover img {
  filter: blur(0px) brightness(1);
  transform: scale(1.05);
}

.amenity-card:hover::after {
  opacity: 0;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

.amenity-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  background: rgba(0,0,0,0.35);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .amenity-card {
    width: 100%;
    max-width: 340px;
  }
}



.amenity-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.amenity-modal.active {
  display: flex;
}

.modal-content {
  background: rgba(255,255,255,0.9);
  padding: 1rem;
  border-radius: 1rem;
  max-width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  display: grid;
  gap: 1rem;
}

.modal-content img {
  width: 100%;
  border-radius: 0.8rem;
}

.close {
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
}


/* MODAL */
/* MODAL BACKDROP */
.amenity-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.amenity-modal.active {
  display: flex;
}

/* MODAL CONTAINER */
.modal-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #ECDFC0;
  font-size: 2rem;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  padding: 0.2rem 0.6rem;
}

/* CAROUSEL */
.modal-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.modal-slide {
  min-width: 100%;
  height: 100%;
}

.modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* NAV BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #ECDFC0;
  font-size: 2.2rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

/* MOBILE SAFE AREA */
@media (max-width: 768px) {
  .modal-close {
    top: env(safe-area-inset-top);
    right: env(safe-area-inset-right);
  }

  .carousel-btn.prev { left: 12px; }
  .carousel-btn.next { right: 12px; }
}


.modal-close,
.modal-prev,
.modal-next {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.75rem;
  color: white; /* icon color */
  cursor: pointer;
}

.modal-prev:hover,
.modal-next:hover,
.modal-close:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .modal-close,
  .modal-prev,
  .modal-next {
    padding: 1rem;
    font-size: 1.5rem;
  }
}


.modal-close,
.modal-prev,
.modal-next {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}


.modal-close:hover,
.modal-prev:hover,
.modal-next:hover,
.modal-close:focus,
.modal-prev:focus,
.modal-next:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
}

/* Mobile stays exactly the same */
.amenity-card {
  width: 100%;
  max-width: 280px; /* your current mobile size */
}

/* Desktop & laptop ONLY */
@media (min-width: 1024px) {
  .amenities-grid {
    gap: 4rem;
  }

  .amenity-card {
    max-width: 460px;
  }

  .amenity-card img {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .amenity-card {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
}

/* TELEFON I REZERVISI */

/* -----------------------------
Reserve Section
----------------------------- */
.reserve-section {
  background: linear-gradient(
    135deg,
    var(--highlight) 0%,
    #f5ecd7 35%,
    var(--accent) 100%
  );
  overflow: hidden;
  padding: 4rem 1rem;
}

.reserve-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* iPhone mockup */
.phone-mockup {
  max-width: 260px;
  width: 100%;
}

.phone-mockup img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.mac-mockup {
  max-width: 720px;
  width: 100%;
} 


.mac-mockup img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
} 

@media (min-width: 1024px) {
  .reserve-section .mac-mockup {
    width: 90vw;
    max-width: 1400px;
  }
}




/* Rezerviši button */
.reserve-btn {
  display: inline-block;
  min-width: 280px;   /* ili 300px */
  text-align: center;
  background: #91693B;
  color: #ECDFC0;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(145,105,59,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(145,105,59,0.45);
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
Modal
----------------------------- */
.reserve-modal {
  position: fixed;
  inset: 0;
  background: rgba(45, 31, 14, 0.38);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.reserve-modal.active {
  display: flex;
  animation: fadeInModal 0.4s ease;
}

@keyframes fadeInModal {
  from {opacity: 0;}
  to {opacity: 1;}
}

.reserve-modal-content {
  background: rgba(236, 223, 192, 0.627);
  border: 1px solid rgba(145, 105, 59, 0.483);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 430px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  position: relative;
}

.reserve-modal-title {
  margin: 0.1rem 1.8rem 0.3rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #4a3117;
}

/* Close button */
.close-modal {
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  color: #91693B;
  background: transparent;
  border: none;
}

/* Reserve options (buttons inside modal) */
.reserve-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: #91693B;
  color: #ECDFC0;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(145,105,59,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reserve-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(145,105,59,0.35);
}

.reserve-contact-link strong {
  font-size: 1rem;
  font-weight: 700;
  color: #fff8e8;
}

.reserve-contact-link span {
  font-size: 0.94rem;
  line-height: 1.2;
  color: #f8e9cd;
}

.reserve-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding-top: 0.3rem;
}

.reserve-social-link {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff4dd;
  background: #91693B;
  border: 1px solid rgba(145, 105, 59, 0.75);
  box-shadow: 0 8px 20px rgba(145, 105, 59, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reserve-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(145, 105, 59, 0.38);
}

.reserve-social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

/* -----------------------------
Responsive / Desktop
----------------------------- */
@media (min-width: 1024px) {
  .reserve-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
  }

  .phone-mockup {
    max-width: 320px;
  }
}


/* Modal option animation */
.reserve-option {
  opacity: 0;
  transform: translateY(20px);
  animation: optionIn 0.45s ease forwards;
}

/* Stagger delays */
.reserve-option:nth-child(2) { animation-delay: 0.05s; }
.reserve-option:nth-child(3) { animation-delay: 0.12s; }
.reserve-option:nth-child(4) { animation-delay: 0.19s; }
.reserve-option:nth-child(5) { animation-delay: 0.26s; }

@keyframes optionIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* FEATURES SECTION */
.features-section {
  background: #ffffff;
}

.features-title {
  color: #91693B;
  margin-bottom: 0.7rem;

}

.features-sub {
  color: #111111;
  margin-top: 0.35rem;
  margin-bottom: 1.2rem;
}

.features-pill {
  width: min(980px, 100%);
  margin: 0 auto 2.3rem;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 222, 187, 0.45);
  background: linear-gradient(140deg, #6f4f2a 0%, #8c6739 55%, #9d7644 100%);
  box-shadow: 0 12px 28px rgba(57, 35, 12, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  overflow: hidden;
}

.features-pill-item {
  min-width: 0;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--highlight);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: center;
}

.features-pill-item svg {
  width: 30px;
  height: 30px;
  color: var(--highlight);
  flex-shrink: 0;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.features-pill-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.features-pill-count {
  color: var(--highlight);
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  transition: transform 0.24s ease, filter 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .features-pill-item:hover svg,
  .features-pill-item:hover .features-pill-count {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 8px 14px rgba(239, 222, 187, 0.35));
  }
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

@media (max-width: 900px) {
  .features-pill {
    border-radius: 999px;
    padding: 0.55rem 0.7rem;
    margin-bottom: 1.7rem;
    justify-content: flex-start;
    gap: 0.7rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .features-pill::-webkit-scrollbar {
    display: none;
  }

  .features-pill-item {
    font-size: 0.8rem;
    min-width: max-content;
    flex: 0 0 auto;
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
  }
}

/* CARD */
.feature-card {
  background: #ede0c0;
  border-radius: 1.4rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(145, 105, 59, 0.15);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* ICON */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.feature-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
  flex-shrink: 0;
}

/* TITLE */
.feature-title {
  color: #91693B;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

/* TEXT */
.feature-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a4a32;
}

/* HOVER */
@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(145, 105, 59, 0.25);
    border-color: rgba(145, 105, 59, 0.35);
  }
}


/* CLICKABLE CARD */
.feature-card--clickable {
  cursor: pointer;
}

.feature-gallery-btn {
  margin-top: 1.2rem;
  background: #91693B;
  border: 1px solid #91693B;
  color: #ECDFC0;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-gallery-btn:hover {
  background: #ECDFC0;
  color: #91693B;
  border-color: #91693B;
}

/* MODAL */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-modal.active {
  display: flex;
}

/* CONTENT */
.gallery-modal-content {
  background: #f9f7f4;
  width: min(1200px, 92%);
  max-height: 85vh;
  border-radius: 1.4rem;
  padding: 2.9rem 2rem 2rem;
  overflow-y: auto;
  position: relative;
}

/* CLOSE */
.gallery-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(145, 105, 59, 0.28);
  border-radius: 999px;
  color: #91693B;
  cursor: pointer;
  z-index: 3;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10020;
  cursor: zoom-out;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-image {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  cursor: default;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-grid img:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    filter: saturate(1.06);
  }

  .gallery-close:hover {
    transform: scale(1.08);
  }

  .gallery-lightbox-close:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
  }
}




.site-faq {
  padding: 5rem 1.5rem;
  background: #f9f7f4;
}

.site-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
}


.site-faq__container {
  max-width: 900px;
  margin: 0 auto;
}

.site-faq__title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #2b2b2b;
}

.site-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.site-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #2b2b2b;

}

.faq-location-question {
  color: #2b2b2b;
}

.site-faq__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.site-faq__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.site-faq__item.active .site-faq__answer {
  max-height: 420px;
  padding-bottom: 1.2rem;
}

.site-faq__item.active .site-faq__icon {
  transform: rotate(45deg);
}

.site-faq__answer .contact-footer-link-item {
  color: var(--accent);
  border-color: rgba(145, 105, 59, 0.35);
  background: rgba(145, 105, 59, 0.12);
}

.site-faq__answer .contact-footer-link-item svg {
  fill: currentColor;
}

/* MOBILE */
@media (max-width: 600px) {
  .site-faq__title {
    font-size: 1.8rem;
  }
}



.newsletter {
  background-color: var(--highlight);
  background: linear-gradient(
    45deg,
    var(--highlight) 0%,
    #f5ecd7 35%,
    var(--accent) 100%
  );
  padding: 80px 20px;
  text-align: center;
}

.footer-newsletter {
  background: transparent;
  padding: 0 20px 1rem;
}

.contact-footer-premium .footer-newsletter {
  background: transparent;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.footer-newsletter .newsletter-container {
  max-width: 760px;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--accent);
  letter-spacing: 1px;
}

.newsletter p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer-newsletter h2 {
  color: #fdf4e3;
}

.footer-newsletter p {
  color: rgba(253, 244, 227, 0.92);
}

#newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#newsletter-form input {
  padding: 14px 16px;
  width: 280px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.footer-newsletter #newsletter-form input {
  border-color: rgba(255, 247, 229, 0.55);
  background: rgba(255, 255, 255, 0.92);
}

#newsletter-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(144, 106, 58, 0.2);
}

.footer-newsletter #newsletter-form input:focus {
  border-color: rgba(255, 247, 229, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 247, 229, 0.28);
}

#newsletter-form button {
  padding: 14px 24px;
  background-color: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}

#newsletter-form button:hover {
  background-color: #7a5830;
}

.footer-newsletter #newsletter-form button {
  background: #f5e7cf;
  color: #5f401d;
}

.footer-newsletter #newsletter-form button:hover {
  background: #fff2da;
}

.newsletter-status {
  margin: 0.45rem 0 0;
  min-height: 0.8rem;
  font-size: 0.92rem;
  color: #fdf4e3;
}

.newsletter-status.is-error {
  color: #ffe0dd;
}

.contact-section {
  background: linear-gradient(
    160deg,
    #f7efdf 0%,
    #ffffff 52%,
    #ead7b4 100%
  );
  padding: 84px 20px 36px;
}

.contact-container {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(145, 105, 59, 0.22);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 12px 32px rgba(145, 105, 59, 0.12);
  backdrop-filter: blur(10px);
}

.contact-form-card h2 {
  color: #6b4b26;
  margin-top: 0;
}

#contact-form {
  display: grid;
  gap: 0.7rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  border: 1px solid rgba(145, 105, 59, 0.35);
  border-radius: 0.55rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #8f6737;
  box-shadow: 0 0 0 3px rgba(145, 105, 59, 0.17);
}

#contact-form button {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  color: #fff4df;
  background: #8f6737;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(145, 105, 59, 0.28);
}

#contact-form button:hover {
  background: #7d592e;
}

.contact-form-status {
  min-height: 1.2rem;
  margin: 0.7rem 0 0;
  color: #5d4324;
  font-size: 0.92rem;
}

.contact-footer-premium {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 3rem 20px 2.1rem;
  border-top: 1px solid rgba(236, 223, 192, 0.26);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 45%),
    linear-gradient(140deg, #5b3d1e 0%, #7f5b30 45%, #ad8551 100%);
  box-shadow: inset 0 1px 0 rgba(255, 244, 222, 0.22);
}

.contact-footer-premium > .section-divider {
  max-width: 1150px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(to right, transparent, rgba(255, 247, 229, 0.72), transparent);
}

.contact-footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 1rem 1.2rem;
  align-items: start;
}

.contact-footer-head h2 {
  margin: 0;
  color: #fdf4e3;
}

.contact-footer-head p {
  margin: 0.4rem 0 0;
  color: rgba(253, 244, 227, 0.9);
}

.contact-footer-flow {
  display: grid;
  gap: 0.85rem;
  justify-items: end;
  align-content: start;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.contact-footer-head .contact-methods {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 247, 229, 0.28);
  color: #fff8eb;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  animation: contactBadgeFloat 2.8s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
}

.contact-method svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.contact-method--whatsapp {
  color: #d7ffe3;
  animation-delay: 0s;
}

.contact-method--viber {
  color: #f2d9ff;
  animation-delay: 0.22s;
}

.contact-method--sms {
  color: #ffeec5;
  animation-delay: 0.38s;
}

.contact-method--email {
  color: #d9ebff;
  animation-delay: 0.12s;
}

.contact-method:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(255, 249, 236, 0.24), 0 8px 18px rgba(35, 20, 7, 0.28);
}

@keyframes contactBadgeFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.contact-footer-links {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  margin-left: 0;
}

.contact-footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff9ef;
  text-decoration: none;
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 229, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  max-width: 100%;
  font-size: 0.9rem;
  line-height: 1.2;
}

.contact-footer-link-item svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  fill: currentColor;
}

.contact-footer-link-item span {
  white-space: nowrap;
}

.contact-footer-link-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(35, 20, 7, 0.28);
}

@media (max-width: 900px) {
  .footer-newsletter {
    padding-bottom: 0.9rem;
  }

  .contact-footer-premium > .section-divider {
    margin-bottom: 1rem;
  }

  .contact-footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-footer-flow {
    justify-items: start;
  }

  .contact-methods {
    justify-content: flex-start;
  }

  .contact-footer-head .contact-methods {
    margin-top: 0.65rem;
  }

  .contact-footer-links {
    justify-items: start;
  }

  .contact-footer-link-item span {
    white-space: normal;
  }
}





.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #906A3A, transparent);
  margin: 20px 0; 
}

/* --------------------------------
Dark Theme (logo toggle)
-------------------------------- */
body.theme-dark {
  --accent: #de5d46;
  --highlight: #f3f5f7;
  --hero-top-highlight: #de5d46;
  --bg: #0d0f12;
  --text: #eceff3;
  background: linear-gradient(180deg, #090a0c 0%, #101318 55%, #0e1116 100%);
  color: var(--text);
}

body.theme-dark .navbar {
  background: rgba(14, 17, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.48);
}

body.theme-dark .nav-logo {
  border-color: var(--accent);
}

body.theme-dark .nav-title,
body.theme-dark .nav-link,
body.theme-dark .nav-menu-btn,
body.theme-dark .mobile-nav-link,
body.theme-dark .lang-btn {
  color: #f3f5f7;
}

body.theme-dark .nav-link.active::after {
  background: var(--accent);
}

body.theme-dark .nav-book-btn,
body.theme-dark .lang-btn.is-active,
body.theme-dark .mobile-nav-link.book,
body.theme-dark .reserve-btn,
body.theme-dark .feature-gallery-btn,
body.theme-dark #newsletter-form button {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff6f3;
}

body.theme-dark .lang-switch {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

body.theme-dark .mobile-sidebar {
  background: rgba(11, 14, 18, 0.96);
}

body.theme-dark .mobile-sidebar-overlay {
  background: rgba(0, 0, 0, 0.66);
}

body.theme-dark .hero-section {
  background: linear-gradient(145deg, #07090c 0%, #12161d 55%, #222831 100%);
}

body.theme-dark .third-section {
  background: radial-gradient(circle, #0d1015 0%, #171c24 58%, #2a3038 100%);
}

body.theme-dark .reserve-section {
  background: linear-gradient(140deg, #090b0f 0%, #1a2029 55%, #2a3139 100%);
}

body.theme-dark .customer-care,
body.theme-dark .amenities,
body.theme-dark .features-section,
body.theme-dark .site-faq,
body.theme-dark .newsletter {
  background: linear-gradient(160deg, #0f1116 0%, #181d25 60%, #242b33 100%);
}

body.theme-dark .contact-footer-premium .footer-newsletter {
  background: transparent;
}

body.theme-dark .hero-title,
body.theme-dark .hero-description,
body.theme-dark .hero-eyebrow,
body.theme-dark .reviews-title,
body.theme-dark .amenities-sub,
body.theme-dark .features-sub,
body.theme-dark .feature-text,
body.theme-dark .site-faq__title,
body.theme-dark .site-faq__question,
body.theme-dark .site-faq__answer,
body.theme-dark .newsletter h2,
body.theme-dark .newsletter p {
  color: #edf1f5;
}

body.theme-dark .features-title,
body.theme-dark .feature-title,
body.theme-dark .hero-word-pop,
body.theme-dark .contact-footer-head h2 {
  color: var(--accent);
}

body.theme-dark .features-pill {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(140deg, #07090d 0%, #181d24 52%, #28313a 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

body.theme-dark .features-pill-item svg {
  color: #de5d46;
}

body.theme-dark .feature-card {
  background: #171b22;
  border-color: rgba(222, 93, 70, 0.32);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

body.theme-dark .feature-icon,
body.theme-dark .feature-icon svg {
  color: #ffffff;
}

body.theme-dark .gallery-modal-content {
  background: #131820;
}

body.theme-dark .gallery-close {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f2f5f8;
}

body.theme-dark .site-faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

body.theme-dark .reserve-modal-content {
  background: rgba(18, 22, 30, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

body.theme-dark .reserve-modal-title,
body.theme-dark .reserve-contact-link strong,
body.theme-dark .reserve-contact-link span {
  color: #f3f6f8;
}

body.theme-dark .reserve-option,
body.theme-dark .reserve-social-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff5f0;
}

body.theme-dark .newsletter #newsletter-form input {
  background: rgba(255, 255, 255, 0.94);
  color: #111;
}

body.theme-dark .contact-footer-premium {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, #090b0f 0%, #171d24 52%, #2a3139 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.theme-dark .contact-footer-premium > .section-divider {
  background: linear-gradient(to right, transparent, rgba(222, 93, 70, 0.85), transparent);
}

body.theme-dark .contact-footer-head p,
body.theme-dark .contact-footer-link-item,
body.theme-dark .contact-method {
  color: #ffece8;
}

body.theme-dark .contact-footer-link-item {
  border-color: rgba(222, 93, 70, 0.42);
  background: rgba(222, 93, 70, 0.16);
}

body.theme-dark .contact-method {
  border-color: rgba(222, 93, 70, 0.45);
  background: rgba(222, 93, 70, 0.18);
}

body.theme-dark .site-faq__answer .contact-footer-link-item {
  color: #de5d46;
  border-color: rgba(222, 93, 70, 0.45);
  background: rgba(222, 93, 70, 0.12);
}

body.theme-dark .section-divider {
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

body.theme-dark .site-faq__title {
  color: #de5d46;
}

body.theme-dark .reviews-title-accent {
  color: #de5d46;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  body.theme-dark .features-pill-item:hover svg,
  body.theme-dark .features-pill-item:hover .features-pill-count {
    filter: drop-shadow(0 8px 14px rgba(222, 93, 70, 0.35));
  }
}
