/* Font is declared inline in HTML <head> for faster discovery */

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Moulin Light', sans-serif;
  color: white;
  overflow-x: hidden;
  background: #ede3d8;
}

/* Body text links */
.page-content a:not(.accom-cta a):not(.stay-card):not(.highlight-card):not(.explore-card):not(.guest-info-card):not(.gallery-item):not(.link-card):not(.resale-download-btn):not(.back-link):not(.availability-card-btn):not(.cancel-retry-link) {
  color: #1a1a2e;
  text-decoration: underline;
  text-decoration-color: rgba(26, 26, 46, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.page-content a:not(.accom-cta a):not(.stay-card):not(.highlight-card):not(.explore-card):not(.guest-info-card):not(.gallery-item):not(.link-card):not(.resale-download-btn):not(.back-link):not(.availability-card-btn):not(.cancel-retry-link):hover {
  text-decoration-color: #1a1a2e;
}

/* --------------------------- HERO SECTION --------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
}

/* Background layers with seamless looping crossfade (3 images) */
.hero-bg,
.hero-bg2,
.hero-bg3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg {
  background-image: url('../img/staticbg.jpg');
  animation: fadeBg1 24s infinite;
}

.hero-bg2 {
  background-image: url('../img/staticbg2.jpg');
  animation: fadeBg2 24s infinite;
}

.hero-bg3 {
  background-image: url('../img/staticbg3.jpg');
  animation: fadeBg3 24s infinite;
}

/* 24s cycle: bg1 → bg2 → bg3 → loop. Each image holds ~7s, with ~1s crossfades. */
@keyframes fadeBg1 {
  0%,   29%  { opacity: 1; }
  33%,  96%  { opacity: 0; }
  100%       { opacity: 1; }
}
@keyframes fadeBg2 {
  0%,   29%  { opacity: 0; }
  33%,  62%  { opacity: 1; }
  67%, 100%  { opacity: 0; }
}
@keyframes fadeBg3 {
  0%,   62%  { opacity: 0; }
  67%,  96%  { opacity: 1; }
  100%       { opacity: 0; }
}

/* ---------------------- SPECIAL OFFERS PANEL ---------------------- */

.special-offers-panel {
  position: absolute;
  left: 30px;
  top: 145px;
  z-index: 5;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 320px;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.special-offers-heading {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.special-offer-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.special-offer-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.special-offer-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
}

.special-offer-item h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 6px;
}

.special-offer-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* --------------------------- NAVIGATION --------------------------- */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(1 21 61 / 80%);
  z-index: 10;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-center {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-center img {
  max-height: 100px;
  width: auto;
  display: block;
}

.nav-item {
  position: relative;
}

/* RECTANGULAR BUTTON STYLE FOR NAV ITEMS (desktop) */
.nav-item > a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.nav-item > a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #112;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 200px;
  border-radius: 4px;
}

.dropdown-menu li {
  padding: 6px 20px;
  position: relative;
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  color: #ccc;
}

.nav-item:hover > .dropdown-menu {
  display: block;
}

/* Nested sub-menu (third level and deeper) — always flies out to the right */
.dropdown-menu .dropdown-submenu > .dropdown-menu {
  display: none;
  position: absolute;
  top: -10px;
  left: 100%;
  margin: 0;
  border-radius: 4px;
}

.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a::after {
  content: ' \25B8';
  font-size: 15px;
  margin-left: 4px;
  opacity: 0.9;
}

/* --------------------------- MOBILE NAV --------------------------- */

.nav-mobile {
  display: none;
  flex-direction: column;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.mobile-header .nav-center {
  margin: 0;
}

.mobile-header .nav-center img {
  max-height: 80px;
  width: auto;
  display: block;
}

.burger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger .line {
  width: 24px;
  height: 3px;
  background: white;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0, 0, 0, 0.9);
}

.mobile-menu.active {
  /* Fit within the viewport below the fixed header and scroll internally,
     so long menus (with expanded submenus) remain fully reachable. */
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #444;
}

.mobile-menu li a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.dropdown-menu-mobile {
  max-height: 0;
  overflow: hidden;
  background: #222;
  transition: max-height 0.3s ease;
}

.dropdown-mobile.active .dropdown-menu-mobile {
  max-height: 500px;
}

.dropdown-menu-mobile li a {
  padding-left: 35px;
  font-size: 0.9rem;
}

/* Nested mobile sub-menus (third level) */
.dropdown-menu-mobile .dropdown-mobile-sub {
  list-style: none;
}

.dropdown-menu-mobile .dropdown-mobile-sub > a {
  padding-left: 35px;
}

.dropdown-mobile-sub .dropdown-menu-mobile {
  background: #1a1a1a;
}

.dropdown-mobile-sub .dropdown-menu-mobile li a {
  padding-left: 50px;
  font-size: 0.85rem;
}

/* ---------------------- DOG FRIENDLY PAW ---------------------- */

.paw-float {
  position: fixed;
  bottom: 60px;
  right: 90px;
  z-index: 998;
  transition: transform 0.2s ease;
}

.paw-float:hover {
  transform: scale(1.05);
}

.paw-float img {
  height: 140px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .paw-float {
    display: none;
  }
}

/* --------------------------- CONTACT WIDGET ------------------- */

.contact-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-float-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a2e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-float-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.contact-float-toggle {
  color: #fff;
}

.contact-float-toggle svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.contact-float-toggle .contact-icon-close {
  display: none;
}

.contact-float.active .contact-float-toggle .contact-icon-open {
  display: none;
}

.contact-float.active .contact-float-toggle .contact-icon-close {
  display: block;
}

.contact-float-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.contact-float.active .contact-float-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 28px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.contact-float-btn:hover {
  transform: scale(1.05);
}

.contact-float-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-whatsapp {
  background: #25d366;
}

.contact-whatsapp svg {
  fill: #fff;
}

.contact-email {
  background: #1a1a2e;
}

.contact-phone {
  background: #2563eb;
}

@media (max-width: 768px) {
  .special-offers-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 132px;        /* always sit below the mobile header (logo + padding ~120px) */
    bottom: auto;
    max-width: none;
    width: auto;
    max-height: calc(100vh - 152px);  /* fit under the header, scroll internally if long */
    overflow-y: auto;
    padding: 14px 16px;
    z-index: 8;
  }

  .special-offers-heading {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .special-offer-item h3 {
    font-size: 0.9rem;
  }

  .special-offer-item p {
    font-size: 0.8rem;
  }

  .contact-float {
    bottom: 56px;
    right: 16px;
  }

  .contact-float-toggle {
    width: 50px;
    height: 50px;
  }

  .contact-float-toggle svg {
    width: 24px;
    height: 24px;
  }

  .contact-float-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .contact-float-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* --------------------------- FOOTER --------------------------- */

footer.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 10px 0;
  z-index: 9;
  font-size: 0.8rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-left .footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 1rem;
}

.footer-left .footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-left .footer-contact a:hover {
  text-decoration: underline;
}

.footer-left .footer-hours {
  color: #aaa;
  font-size: 0.75rem;
}

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

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-company {
  color: #666;
  font-size: 0.7rem;
}

/* Footer separator dot */
.footer-contact span.sep {
  color: #555;
}

/* --------------------------- PAGE CONTENT (inner pages) ----------- */

.page-banner {
  position: relative;
  height: 50vh;
  min-height: 300px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}

.page-banner-overlay h1 {
  margin: 0;
  font-size: 2.8rem;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
}

.page-content {
  background: #ede3d8;
  color: #333;
  padding: 17px 20px;
}

.page-content .content-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.page-content .intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #222;
}

/* Image grid for inner pages */
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.image-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

.image-feature {
  margin: 30px 0;
}

.image-feature img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

/* Accommodation highlights for about page */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.highlight-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.highlight-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}

.highlight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.highlight-card .card-body {
  padding: 18px;
}

.highlight-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #1a1a2e;
}

.highlight-card .card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: #1a1a2e;
  font-size: 0.78rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.highlight-card .card-cta::after {
  content: '\203A'; /* › */
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1;
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.highlight-card:hover .card-cta { color: #2d2d4e; }
.highlight-card:hover .card-cta::after { transform: translateX(4px); }

.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* -------------------- ACCOMMODATION PAGES -------------------- */

.accom-quick-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d6cdc3;
}

.accom-quick-info .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.accom-quick-info .info-label {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accom-quick-info .info-value {
  font-size: 1.3rem;
  color: #1a1a2e;
  font-weight: bold;
}

/* Room feature cards */
.room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.room-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-card .room-body {
  padding: 20px;
}

.room-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  color: #1a1a2e;
}

.room-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.room-card ul {
  margin: 8px 0 0 0;
  padding: 0 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

/* Photo gallery grid */
.accom-gallery {
  margin: 30px 0;
}

.accom-gallery h2 {
  margin-top: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  line-height: 0;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

/* Lightbox */
.accom-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

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

.accom-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}

.accom-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
}

.accom-lightbox-prev,
.accom-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 20px;
  z-index: 2001;
}

.accom-lightbox-prev { left: 10px; }
.accom-lightbox-next { right: 10px; }

/* Accommodation notice/info box */
.accom-notice {
  background: #fff;
  border-left: 4px solid #1a1a2e;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.accom-notice strong {
  color: #1a1a2e;
}

/* Book now CTA */
.accom-cta {
  text-align: center;
  padding: 30px 0 10px;
}

.accom-cta a {
  display: inline-block;
  padding: 16px 40px;
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Moulin Light', sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.accom-cta a:hover {
  background: #2d2d4e;
}

/* -------------------- STAY LANDING PAGE -------------------- */

.stay-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 30px 0;
}

.stay-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.stay-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}

.stay-card-img {
  flex-shrink: 0;
  width: 380px;
}

.stay-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stay-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stay-card-body h2 {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  color: #1a1a2e;
}

.stay-card-body p {
  margin: 0 0 14px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.stay-card-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.stay-card-details span {
  background: #f5f0eb;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #1a1a2e;
}

.stay-card-link {
  font-size: 1rem;
  color: #1a1a2e;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.stay-card:hover .stay-card-link {
  text-decoration: underline;
}

/* -------------------- GUEST INFORMATION PAGE -------------------- */

.guest-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.guest-info-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.guest-info-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}

.guest-info-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1;
}

.guest-info-card h2 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  color: #1a1a2e;
}

.guest-info-card p {
  margin: 0 0 16px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.guest-info-link {
  font-size: 0.95rem;
  color: #1a1a2e;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.guest-info-card:hover .guest-info-link {
  text-decoration: underline;
}

/* Siteplan page */
.siteplan-wrap {
  margin: 20px 0;
  text-align: center;
}

.siteplan-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* -------------------- EXPLORE / OUT & ABOUT -------------------- */

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.explore-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.explore-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}

.explore-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.explore-card .explore-card-body {
  padding: 20px;
}

.explore-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  color: #1a1a2e;
}

.explore-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* Attraction cards for sub-pages */
.attraction-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}

.attraction-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.attraction-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #1a1a2e;
}

.attraction-card .attraction-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.6;
}

.attraction-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.attraction-card a {
  color: #1a1a2e;
  font-weight: bold;
}

/* Walk table */
.walk-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.walk-table th,
.walk-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.walk-table th {
  background: #1a1a2e;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.walk-table td {
  font-size: 0.9rem;
  color: #555;
}

.walk-table tr:last-child td {
  border-bottom: none;
}

.walk-table a {
  color: #1a1a2e;
  font-weight: bold;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #1a1a2e;
  text-decoration: none;
  font-weight: bold;
}

.back-link:hover {
  text-decoration: underline;
}

/* Resales page */
.resale-downloads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.resale-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s ease;
}

.resale-download-btn:hover {
  background: #2d2d4e;
}

.resale-resources {
  margin-top: 36px;
}

.resale-resources h2 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(26, 26, 46, 0.15);
}

.resale-contact {
  margin-top: 36px;
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.resale-contact h2 {
  color: #1a1a2e;
  font-size: 1.3rem;
  margin: 0 0 12px 0;
}

.resale-contact p {
  margin: 0 0 8px 0;
}

/* Resale units table */
.resale-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.resale-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resale-filter-group label {
  font-size: 0.8rem;
  color: #888;
  font-weight: bold;
}

.resale-filter-group select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Moulin Light', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #fff;
  min-width: 160px;
}

.resale-filter-reset {
  padding: 8px 16px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Moulin Light', sans-serif;
  font-size: 0.85rem;
  color: #888;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.resale-filter-reset:hover {
  border-color: #1a1a2e;
  color: #1a1a2e;
}

.resale-count {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}

.resale-table-wrap {
  overflow-x: auto;
}

.resale-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.resale-table thead {
  background: #1a1a2e;
  color: #fff;
}

.resale-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: bold;
}

.resale-table td {
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #333;
  border-bottom: 1px solid #f0ebe5;
}

.resale-table tbody tr:hover {
  background: #faf7f4;
}

.resale-table tbody tr:last-child td {
  border-bottom: none;
}

/* Availability search */
.availability-planner-link {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

.availability-form {
  margin-bottom: 32px;
}

.availability-form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.availability-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}

.availability-field label {
  font-size: 0.8rem;
  color: #888;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.availability-field select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Moulin Light', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #fff;
}

.availability-field-btn {
  flex: 0 0 auto;
  min-width: auto;
}

.availability-search-btn {
  padding: 10px 32px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Moulin Light', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.availability-search-btn:hover {
  background: #2d2d4e;
}

.availability-results {
  margin-top: 8px;
}

.availability-results-heading {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(26, 26, 46, 0.15);
}

.availability-results-date {
  font-size: 0.95rem;
  color: #888;
  font-weight: normal;
  margin-left: 8px;
}

.availability-results-count {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.availability-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.availability-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.availability-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.availability-card-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #1a1a2e;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: bold;
}

.availability-card-body {
  padding: 16px 18px 20px;
}

.availability-card-body h3 {
  color: #1a1a2e;
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.availability-card-desc {
  color: #888;
  font-size: 0.85rem;
  margin: 0 0 4px;
}

.availability-card-week {
  color: #555;
  font-size: 0.85rem;
  margin: 0 0 14px;
}

.availability-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.availability-card-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #1a1a2e;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.availability-card-btn:hover {
  background: #2d2d4e;
}

.availability-card-btn-outline {
  background: transparent;
  color: #1a1a2e !important;
  border: 1px solid #1a1a2e;
}

.availability-card-btn-outline:hover {
  background: #1a1a2e;
  color: #fff !important;
}

.exchange-card-body {
  padding: 20px 22px;
}

.exchange-card-dates {
  color: #888;
  font-size: 0.85rem;
  margin: 0 0 14px;
}

.exchange-card-for {
  background: #f5f0eb;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.exchange-card-for strong {
  color: #1a1a2e;
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exchange-card-for p {
  margin: 0;
  color: #333;
  line-height: 1.5;
}

.availability-card-btn-disabled {
  background: #ccc;
  cursor: default;
  color: #888 !important;
}

.availability-card-btn-buy {
  background: #2e7d32;
}

.availability-card-btn-buy:hover {
  background: #1b5e20;
}

/* Members section */
.members-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.members-downloads {
  margin-top: 20px;
}

.members-downloads h2 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(26, 26, 46, 0.15);
}

.members-download-link {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}

.members-download-link:hover {
  background: #2d2d4e;
}

/* Members payment forms */
.members-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.members-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.members-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.members-form label {
  font-size: 0.85rem;
  color: #555;
  font-weight: bold;
}

.members-form label .required {
  color: #c0392b;
}

.members-form input[type="text"],
.members-form input[type="email"],
.members-form input[type="number"],
.members-form select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Moulin Light', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  background: #fff;
  transition: border-color 0.2s ease;
}

.members-form input:focus,
.members-form select:focus {
  outline: none;
  border-color: #1a1a2e;
}

.members-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  font-size: 0.9rem;
  cursor: pointer;
}

.members-form .checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 10px;
}

.members-submit {
  margin-top: 16px;
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
}

/* Gallery page (dedicated page with more columns) */
.gallery-page-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-page-grid img {
  height: 200px;
}

/* Links page */
.links-section {
  margin-bottom: 36px;
}

.links-section h2 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(26, 26, 46, 0.15);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.link-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(26, 26, 46, 0.08);
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.link-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  display: block;
}

.link-card-body {
  padding: 18px 22px 22px;
}

.link-card h3 {
  color: #1a1a2e;
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.link-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.link-card-url {
  display: inline-block;
  font-size: 0.8rem;
  color: #3a6b8c;
  font-weight: bold;
}

/* --------------------------- RESPONSIVE --------------------------- */

@media (max-width: 1180px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .footer-left .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .footer-left .footer-contact .sep {
    display: none;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .image-row {
    grid-template-columns: 1fr;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .page-banner {
    height: 35vh;
    min-height: 220px;
  }

  .page-banner-overlay {
    padding-top: 80px;
  }

  .page-banner-overlay h1 {
    font-size: 1.8rem;
    padding: 0 20px;
    text-align: center;
  }

  .page-content {
    padding: 30px 16px;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accom-quick-info {
    gap: 20px;
  }

  .stay-card {
    flex-direction: column;
  }

  .stay-card-img {
    width: 100%;
    height: 220px;
  }

  .stay-card-body {
    padding: 20px;
  }

  .guest-info-grid {
    grid-template-columns: 1fr;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .members-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-form .form-row {
    grid-template-columns: 1fr;
  }

  .members-form-wrap {
    padding: 20px 16px;
  }

  .resale-downloads {
    grid-template-columns: repeat(2, 1fr);
  }

  .resale-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .resale-filter-group select {
    min-width: 100%;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-page-grid img {
    height: 160px;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .availability-form-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .availability-field {
    min-width: 100%;
  }

  .availability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .walk-table {
    font-size: 0.8rem;
  }

  .walk-table th,
  .walk-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .page-banner-overlay h1 {
    font-size: 1.4rem;
  }

  .members-quick-links {
    grid-template-columns: 1fr;
  }

  .resale-downloads {
    grid-template-columns: 1fr;
  }

  .availability-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  footer.site-footer {
    font-size: 0.75rem;
  }

  .footer-left .footer-hours {
    font-size: 0.7rem;
  }

  .footer-links a {
    font-size: 0.7rem;
  }

  .footer-company {
    font-size: 0.65rem;
  }
}
