/* =============================================
   Seascape 501 — Custom Overrides
   ============================================= */

/* CSS Variables */
:root {
  --primary:       #083454;
  --primary-light: #0d4a73;
  --teal:          #9DC8C7;
  --teal-dark:     #7ab0af;
  --white:         #ffffff;
  --gray-light:    #f7f9fc;
  --shadow-sm:     0 2px 8px rgba(8, 52, 84, 0.08);
  --shadow-md:     0 6px 22px rgba(8, 52, 84, 0.13);
  --radius:        10px;
  --transition:    0.25s ease;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  letter-spacing: -0.01em;
}

/* ---- Top navigation bar ---- */
.site-navbar-top {
  background: var(--primary);
  padding: 6px 0;
  box-shadow: 0 2px 14px rgba(8, 52, 84, 0.35);
}
.site-navbar-top .navbar-brand img {
  height: 48px;
  border-radius: 4px;
}
.site-navbar-top .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.8rem !important;
  transition: color var(--transition);
}
.site-navbar-top .nav-link:hover,
.site-navbar-top .nav-item.active > .nav-link {
  color: var(--teal) !important;
}
.site-navbar-top .dropdown-menu {
  background: var(--primary);
  border: none;
  border-top: 2px solid var(--teal);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  margin-top: 0;
  padding: 6px 0;
}
.site-navbar-top .dropdown-item {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  padding: 0.45rem 1.2rem;
  transition: color var(--transition), background var(--transition);
}
.site-navbar-top .dropdown-item:hover,
.site-navbar-top .dropdown-item:focus {
  background: rgba(157, 200, 199, 0.12);
  color: var(--teal);
}
.site-navbar-top .dropdown-header {
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem 0.3rem;
  transition: color var(--transition), background var(--transition);
}
.site-navbar-top .dropdown-header:hover,
.site-navbar-top .dropdown-header:focus {
  background: rgba(157, 200, 199, 0.12);
  color: var(--teal);
  text-decoration: none;
}
.site-navbar-top .dropdown-divider {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Ensure hero is a positioning context for the pinned bottom bar */
.site-hero { position: relative; }

/* Push hero content below fixed navbar */
.site-hero-inner {
  padding-top: 70px;
}

/* ---- Hero height: full on home, reduced on inner pages ---- */
body:not(.page-index) .site-hero {
  height: 60vh;
  min-height: 320px;
}
body:not(.page-index) .site-hero-inner {
  height: 60vh;
  min-height: 320px;
}

/* ---- Buttons ---- */
.btn-primary,
a.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 30px;
  padding: 0.55rem 1.6rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- Nav active: reset sub-menu items so only the top-level link is highlighted ---- */
.site-navbar nav .menu li.active .sub-menu li a:before {
  width: 0;
}

/* ---- Sub-menu (hamburger nav) ---- */
.menu .sub-menu {
  padding-left: 18px;
  margin-top: 4px;
  margin-bottom: 4px;
  border-left: 2px solid var(--teal);
}
.menu .sub-menu li a {
  font-size: 13.5px !important;
  opacity: 0.75;
  padding: 4px 0 !important;
  display: block;
  transition: opacity var(--transition), padding-left var(--transition);
}
.menu .sub-menu li a:hover {
  opacity: 1;
  padding-left: 6px !important;
}

/* ---- Section sub-nav (Around Larnaca etc.) ---- */
.section-subnav {
  background: var(--primary);
  padding: 10px 0;
  border-bottom: 2px solid var(--teal);
}
.section-subnav a {
  color: rgba(255, 255, 255, 0.72);
  margin-right: 18px;
  font-size: 13.5px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.section-subnav a:hover,
.section-subnav a.active {
  color: var(--teal);
}

/* ---- Info cards ---- */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
  transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.info-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* ---- Distance badge ---- */
.distance-badge {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--teal);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

/* ---- Section headings ---- */
.heading-section h2 {
  position: relative;
  padding-bottom: 14px;
}
.heading-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

/* ---- Testimonials ---- */
.testimony-wrap {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.testimony-wrap:hover {
  box-shadow: var(--shadow-md);
}

/* ---- Post / gallery cards ---- */
.post-entry {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.post-entry:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.post-entry .post-img img {
  transition: transform 0.4s ease;
}
.post-entry:hover .post-img img {
  transform: scale(1.04);
}

/* ---- Contact form ---- */
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(157, 200, 199, 0.35);
}

/* ── INDEX PAGE ──────────────────────────────────────────────────────────── */

/* ---- Hero ---- */
.section-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 28px;
  font-weight: 300;
}
.hero-ctas .btn {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}
.hero-chips {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-chips span {
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

/* ---- Features bar ---- */
.features-bar {
  background: var(--primary);
  padding: 22px 0;
}
.feature-item {
  padding: 8px 16px;
}
.feature-icon {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 6px;
}
.feature-item h5 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  font-family: "Mukta Mahee", arial, sans-serif;
}
.feature-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 0;
}

/* ---- Slider ---- */
.slider-section .home-slider .slider-item img {
  border-radius: var(--radius);
  height: 500px;
  width: 100%;
  object-fit: cover;
}

/* ---- Explore / Near Us grid ---- */
.explore-section {
  background: var(--gray-light);
}
.explore-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 240px;
}
.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.explore-card:hover img {
  transform: scale(1.06);
}
.explore-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(8, 52, 84, 0.78) 0%, transparent 65%);
  transition: background var(--transition);
}
.explore-card:hover .explore-card-overlay {
  background: linear-gradient(to top, rgba(8, 52, 84, 0.88) 0%, rgba(8, 52, 84, 0.2) 65%);
}
.explore-card-overlay span {
  color: #fff;
  font-size: 1.15rem;
  font-family: "Playfair Display", times, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---- Reviews ---- */
.reviews-section {
  background: #fff;
}
.review-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-stars {
  color: #f4a623;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.review-quote {
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--teal);
  font-family: Georgia, serif;
  margin-bottom: 14px;
  opacity: 0.55;
}
.review-card p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.review-author {
  font-weight: 700;
  color: var(--primary);
  margin-top: 18px;
  font-size: 0.92rem;
}
.review-source {
  font-size: 11.5px;
  color: var(--teal-dark);
  margin-top: 5px;
  letter-spacing: 0.03em;
}

/* ---- Booking CTA ---- */
.booking-cta-section {
  background: linear-gradient(135deg, #e6f3f3 0%, #f0f8f8 50%, #e8f0f7 100%);
  padding: 80px 0;
  text-align: center;
}
.booking-cta-section .section-eyebrow {
  color: var(--teal-dark);
}
.booking-cta-section h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
.booking-cta-section .lead {
  color: #6c7a8d;
  margin-bottom: 0;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer-section {
  background: linear-gradient(160deg, #062a44 0%, var(--primary) 60%, #0d4a6e 100%);
  padding: 70px 0 0;
}
.footer-top {
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  border-radius: 6px;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: "Playfair Display", times, serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13.5px;
  line-height: 1.75;
  margin-top: 14px;
}
.footer-book-btn {
  display: inline-block;
  border: 1px solid rgba(157, 200, 199, 0.45);
  color: var(--teal) !important;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12.5px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-book-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--primary) !important;
}
.footer-heading {
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-section .link a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  display: block;
  padding: 3px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-section .link a:hover {
  color: var(--teal);
  padding-left: 5px;
}
.footer-contact-item {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-item i {
  color: var(--teal);
  width: 18px;
  margin-right: 6px;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.62);
}
.footer-contact-item a:hover {
  color: var(--teal);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12.5px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Bootstrap drops the container padding below lg, which left the logo and
     menu toggle flush against the screen edges */
  .site-navbar-top > .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .site-navbar-top .navbar-collapse {
    padding: 8px 8px 14px;
  }
  .site-navbar-top .dropdown-menu {
    background: rgba(6, 42, 68, 0.95);
    border-top: none;
    border-left: 2px solid var(--teal);
    border-radius: 0;
    box-shadow: none;
  }
}

/* ── INNER PAGES ─────────────────────────────────────────────────────────── */

/* Cursor pointer on info-card links */
a .info-card {
  cursor: pointer;
}
.info-card h4 a {
  color: var(--primary);
  text-decoration: none;
}
.info-card h4 a:hover {
  color: var(--teal-dark);
}

/* Section h3 category headings */
.section h3,
section h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  border-left: 3px solid var(--teal);
  padding-left: 10px;
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: "Mukta Mahee", arial, sans-serif;
  font-weight: 600;
}

/* Hero bottom bar — chips + booking pills pinned to bottom of hero */
.hero-bottom-bar {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-bottom-bar .hero-chips { margin-top: 0; }
.hero-bottom-bar .hero-booking-links { margin-top: 0; }

/* Hero booking links (index + instructions) */
.hero-booking-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-book-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-book-link {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  padding: 5px 16px;
  font-size: 12.5px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.hero-book-link:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff !important;
  text-decoration: none;
}

/* Sidebar (Around Larnaca sub-pages) */
.larnaca-sidebar {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-heading {
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
  font-weight: 600;
}
.sidebar-links li {
  margin-bottom: 6px;
}
.sidebar-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
  padding: 2px 0;
}
.sidebar-links a i {
  color: var(--teal);
  font-size: 10px;
  margin-right: 6px;
}
.sidebar-links a:hover {
  color: var(--teal);
  padding-left: 4px;
}
.sidebar-book-label {
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  font-weight: 600;
}
.sidebar-book-btn {
  display: block;
  border: 1px solid rgba(157, 200, 199, 0.4);
  color: var(--teal) !important;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12.5px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.sidebar-book-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--primary) !important;
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero-ctas .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }
  .slider-section .home-slider .slider-item img {
    height: 260px;
  }
  .explore-card {
    height: 200px;
  }
  .feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 10px;
  }
  .features-bar .feature-item:last-child {
    border-bottom: none;
  }
  .booking-cta-section {
    padding: 60px 0;
  }
  .footer-brand-name {
    font-size: 1rem;
  }
}

/* ── About Us page ──────────────────────────────────────────────────── */
.about-host-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.about-host-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 24px;
}
.about-host-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-host-person strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
.about-host-person span {
  font-size: 0.8rem;
  opacity: 0.65;
}
.about-host-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(157, 200, 199, 0.18);
  border: 2px solid rgba(157, 200, 199, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
}
.about-host-avatar.teal {
  background: rgba(157, 200, 199, 0.28);
  border-color: var(--teal);
}
.about-host-quote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--teal);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
.about-host-book {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-host-book .hero-book-label {
  flex-basis: 100%;
}
.about-host-book .hero-book-link {
  white-space: nowrap;
}

/* Values strip */
.about-values-strip {
  background: var(--gray-light);
  padding: 60px 0;
}
.about-value-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 14px;
}
.about-values-strip h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.about-values-strip p {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

/* ── Place section headers ──────────────────────────────────────────────── */
.place-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-left: none !important;
  padding-left: 0 !important;
  color: var(--primary);
  margin-bottom: 16px;
}
.place-section-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Distance chips (walk / car) ────────────────────────────────────────── */
.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 6px;
  margin-top: 8px;
}
.distance-badge.walk {
  background: rgba(157, 200, 199, 0.18);
  color: var(--primary);
  border: 1px solid rgba(157, 200, 199, 0.5);
}
.distance-badge.car {
  background: rgba(8, 52, 84, 0.06);
  color: var(--primary);
  border: 1px solid rgba(8, 52, 84, 0.15);
}
/* Fallback for old bare distance-badge (no modifier class) */
.distance-badge:not(.walk):not(.car) {
  background: rgba(8, 52, 84, 0.06);
  color: var(--primary);
  border: 1px solid rgba(8, 52, 84, 0.15);
}

/* ── Reviews summary strip ──────────────────────────────────────────────── */
.reviews-summary-strip {
  background: var(--primary);
  padding: 50px 0;
}
.rating-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.rating-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  margin: 6px 0 4px;
}
.rating-stars {
  color: var(--teal);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ── Hero "Book your stay" label — make it visible ──────────────────────── */
.hero-book-label {
  color: var(--teal) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Notice banner (e.g. taxi drop-off) ─────────────────────────────────── */
.notice-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(157, 200, 199, 0.22);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.notice-banner-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.notice-banner a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
.notice-banner a:hover {
  color: var(--teal-dark);
}

/* ── Hero overlay: brand navy tint so text stays readable ───────────────── */
.site-hero.overlay:before {
  background: linear-gradient(
    180deg,
    rgba(8, 52, 84, 0.55) 0%,
    rgba(8, 52, 84, 0.68) 55%,
    rgba(8, 52, 84, 0.8) 100%
  );
}
.site-hero .heading,
.site-hero .hero-title,
.site-hero .sub-heading,
.site-hero .hero-sub,
.site-hero .section-eyebrow {
  text-shadow: 0 2px 12px rgba(4, 26, 42, 0.45);
}

/* ── "Book direct for a discount" pill — stands out from the platform links ── */
.hero-book-link.hero-book-direct {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--primary) !important;
  font-weight: 600;
}
.hero-book-link.hero-book-direct:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--primary) !important;
}

/* ── Centered outlined box (e.g. address + map links on Self Check-In) ──── */
.address-box {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.address-box p:last-child {
  margin-bottom: 0;
}

/* ── Apartment gallery ───────────────────────────────────────────────────── */
.gallery-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.gallery-chips a {
  border: 1px solid var(--teal);
  border-radius: 24px;
  padding: 5px 16px;
  font-size: 13px;
  color: var(--primary);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
}
.gallery-chips a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  text-decoration: none;
}
.gallery-anchor {
  scroll-margin-top: 90px; /* keep headings clear of the fixed navbar */
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--primary);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}
.gallery-modal-content {
  background: transparent;
  border: none;
  text-align: center;
}
.gallery-modal-content img {
  max-height: 82vh;
  border-radius: var(--radius);
  margin: 0 auto;
}
.gallery-modal-caption {
  color: var(--white);
  margin: 10px 0 0;
}
.gallery-modal-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: var(--white);
  opacity: 0.9;
  font-size: 2rem;
  text-shadow: none;
}
.gallery-modal-close:hover {
  color: var(--teal);
}
.gallery-modal-dialog {
  max-width: min(1100px, 94vw);
}

/* ── Hero sizing: grow with content (booking + review rows) instead of a
      fixed height, so nothing spills past the overlay on small screens ── */
.site-hero.overlay:before {
  height: auto;
  min-height: 0;
}
body.page-index .site-hero,
body.page-index .site-hero-inner {
  height: auto;
  min-height: 100vh;
}
body:not(.page-index) .site-hero,
body:not(.page-index) .site-hero-inner {
  height: auto;
  min-height: 60vh;
}
.site-hero-inner {
  padding-bottom: 48px;
}
.site-hero .sub-heading.mb-5 {
  margin-bottom: 1.5rem !important;
}
.site-hero .hero-booking-links + .hero-booking-links {
  margin-top: 10px;
}

/* ── Mobile: more breathing room between the navbar and the hero eyebrow ── */
@media (max-width: 767px) {
  .site-hero-inner {
    padding-top: 110px;
  }
}
