/* ========== FONT FACE ========== */
@font-face {
  font-family: 'Page Serif';
  src: url('PageSerif.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ========== CSS VARIABLES ========== */
:root {
  --navy: #0A1D37;
  --canary: #FFE000;
  --gold: #EFBF04;
  --white: #ffffff;
  --grey-light: #999;
  --grey-border: #d0d0d0;
  --bg-cream: #FAFAF7;
  --font-heading: 'Page Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', sans-serif;
  --radius-pill: 50px;
  --radius-card: 20px;
  --shadow-card: 0 8px 30px rgba(10,29,55,.10);
  --shadow-float: 0 12px 40px rgba(10,29,55,.12);
  --transition: .3s ease;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* ========== BACKGROUND GRADIENT ========== */
.glow {
  position: fixed;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 55vw; height: 55vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at center, rgba(255,224,0,.5) 0%, rgba(239,191,4,.3) 35%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

/* ========== HEADER ========== */
header {
  position: relative; z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.logo-group { display: flex; align-items: center; }
.logo-desktop { height: 42px; width: auto; display: block; }
.logo-mobile { height: 40px; width: auto; display: none; }
header nav { display: flex; gap: 2rem; }
header nav a {
  text-decoration: none; color: var(--navy);
  font-size: .9rem; font-weight: 500;
  transition: opacity .2s;
  cursor: pointer;
}
header nav a:hover { opacity: .6; }
header nav a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.header-right { display: flex; align-items: center; gap: 1rem; }
.btn-bookings {
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: .6rem 1.4rem; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: background .25s, transform .15s;
  font-family: var(--font-body);
}
.btn-bookings:hover { background: #122c52; transform: translateY(-1px); }

/* ========== HAMBURGER ========== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 200;
  background: none; border: none;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { transform: rotate(-45deg); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,29,55,.97);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 4%;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 160;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.mobile-close svg {
  width: 28px;
  height: 28px;
}
.mobile-close:hover {
  color: var(--gold);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  transition: color .2s;
  cursor: pointer;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); }

/* ========== PAGE SECTIONS ========== */
.page { display: none; position: relative; z-index: 5; flex: 1; width: 100%; }
.page.active { display: block; }
.page-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4%;
  width: 100%;
}

/* ========== HOME PAGE ========== */
#page-home .home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 200px);
}
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.eyebrow { font-size: .95rem; font-weight: 500; margin-bottom: 1rem; letter-spacing: .5px; }
.eyebrow::before { content: '— '; }
h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--navy);
}
.email-wrapper {
  display: flex; align-items: center;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-pill);
  padding: .35rem .35rem .35rem 1.5rem;
  max-width: 500px;
  transition: border-color .3s;
}
.email-wrapper:focus-within { border-color: var(--navy); }
.email-wrapper input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: .95rem; font-family: var(--font-body); color: var(--navy);
  min-width: 0;
}
.email-wrapper input::placeholder { color: #aaa; }
#notify-btn {
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: .75rem 1.6rem; font-size: .9rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  font-family: var(--font-body);
  transition: background .3s, transform .15s;
}
#notify-btn:hover { background: #122c52; transform: translateY(-1px); }
.disclaimer { font-size: .78rem; color: var(--grey-light); margin-top: .8rem; }

/* Visuals */
.visuals {
  position: relative; width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 0;
}
.hero-image-card {
  position: relative; width: 100%; max-width: 480px;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-float); background: var(--white);
  animation: float-hero 5s ease-in-out infinite;
}
.hero-image-card img { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10,29,55,.75) 0%, transparent 100%);
  color: var(--white);
}
.hero-image-overlay h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: .3rem; }
.hero-image-overlay p { font-size: .8rem; opacity: .85; margin-bottom: .8rem; }
.hero-image-overlay .btn-book {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: var(--radius-pill);
  padding: .55rem 1.4rem; font-size: .82rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background .25s, transform .15s;
}
.hero-image-overlay .btn-book:hover { background: var(--canary); transform: translateY(-1px); }

@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}
.about-hero h1 { margin-bottom: 1rem; }
.about-hero .subtitle {
  font-size: 1.1rem; color: var(--grey-light);
  max-width: 700px; margin: 0 auto; line-height: 1.7;
}
.about-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(10,29,55,.08);
}
.about-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.about-section p {
  font-size: 1rem; line-height: 1.8;
  color: #333; max-width: 800px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.about-card {
  background: var(--white);
  border: 1px solid rgba(10,29,55,.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.about-card .card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--canary), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.about-card p {
  font-size: .9rem; line-height: 1.6;
  color: var(--grey-light);
}
.values-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.5rem;
}
.value-badge {
  background: var(--navy);
  color: var(--white);
  padding: .6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  transition: background .3s;
}
.value-badge:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ========== VENUES PAGE ========== */
.venue-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}
.venue-hero h1 { margin-bottom: 1rem; }
.venue-hero .subtitle {
  font-size: 1.1rem; color: var(--grey-light);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: start;
}
.venue-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.venue-info p {
  font-size: 1rem; line-height: 1.8; color: #444;
  margin-bottom: 1rem;
}
.venue-address-block {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  margin-top: 1rem;
}
.venue-address-block .addr-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem;
}
.venue-address-block .addr-item:last-child { margin-bottom: 0; }
.venue-address-block .addr-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.venue-address-block .addr-text strong {
  display: block; font-size: .85rem; margin-bottom: .2rem;
}
.venue-address-block .addr-text span {
  font-size: .9rem; color: #555;
}
.venue-address-block .addr-text a {
  color: var(--navy); text-decoration: underline;
}
.venue-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-cream);
}
.venue-map iframe {
  width: 100%; height: 450px; border: 0; display: block;
}

/* ========== ACCOMMODATIONS PAGE ========== */
.accom-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}
.accom-hero h1 { margin-bottom: 1rem; }
.accom-hero .subtitle {
  font-size: 1.1rem; color: var(--grey-light);
  max-width: 650px; margin: 0 auto; line-height: 1.7;
}
.accom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}
.accom-card {
  background: var(--white);
  border: 1px solid rgba(10,29,55,.08);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.accom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.accom-card .accom-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), #163058);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 1.5rem;
}
.accom-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.accom-card p { font-size: .88rem; color: var(--grey-light); line-height: 1.6; }
.accom-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(10,29,55,.08);
}
.accom-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: .75rem;
}
.accom-cta p { color: var(--grey-light); margin-bottom: 1.5rem; }

/* ========== CONTACT PAGE ========== */
.contact-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}
.contact-hero h1 { margin-bottom: 1rem; }
.contact-hero .subtitle {
  font-size: 1.1rem; color: var(--grey-light);
  max-width: 550px; margin: 0 auto; line-height: 1.7;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2rem 0 3rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: transform .3s;
}
.contact-card:hover { transform: translateX(4px); }
.contact-card .c-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-card h3 { font-size: .95rem; margin-bottom: .3rem; }
.contact-card p { font-size: .9rem; color: #555; }
.contact-card a { color: var(--navy); text-decoration: underline; }
.contact-form {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: 2rem;
}
.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--grey-border);
  border-radius: 12px;
  padding: .75rem 1rem;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  transition: border-color .3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius-pill);
  padding: .8rem 2rem; font-size: .95rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background .3s, transform .15s;
  width: 100%;
}
.btn-submit:hover { background: #122c52; transform: translateY(-1px); }

/* ========== COUNTDOWN TIMER ========== */
.countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  min-width: 72px;
  box-shadow: var(--shadow-card);
}
.countdown-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--canary);
  line-height: 1;
}
.countdown-label {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .35rem;
}

/* ========== BOOKING NOTICE (Home) ========== */
.booking-notice {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(239,191,4,.12), rgba(255,224,0,.08));
  border: 1px solid rgba(239,191,4,.3);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  max-width: 500px;
}
.booking-notice > i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-top: .15rem;
  flex-shrink: 0;
}
.booking-notice p {
  font-size: .88rem;
  line-height: 1.6;
  color: #333;
}
.booking-notice a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* ========== BOOKING BANNER (Contact) ========== */
.booking-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.booking-banner > i {
  font-size: 2rem;
  color: var(--canary);
  flex-shrink: 0;
}
.booking-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: .3rem;
}
.booking-banner p {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.5;
}

/* ========== REPRESENTATIVES ========== */
.reps-section {
  background: var(--bg-cream);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}
.reps-section > h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.reps-section > h3 i { color: var(--gold); }
.rep-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(10,29,55,.06);
}
.rep-card:last-child { margin-bottom: 0; }
.rep-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .6rem;
  color: var(--navy);
}
.rep-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.rep-contacts a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--navy);
  background: rgba(10,29,55,.05);
  padding: .4rem .8rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  transition: background .25s, color .25s;
}
.rep-contacts a:hover {
  background: var(--navy);
  color: var(--white);
}
.rep-contacts a .fa-whatsapp {
  color: #25D366;
}
.rep-contacts a:hover .fa-whatsapp {
  color: var(--white);
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(10,29,55,.08);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question i {
  transition: transform .3s ease;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 1.25rem;
  font-size: .95rem;
  line-height: 1.7;
  color: #444;
}
.faq-answer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* ========== FONT AWESOME ICON SIZING ========== */
.about-card .card-icon i,
.accom-card .accom-icon i {
  font-size: 1.3rem;
  color: var(--navy);
}
.accom-card .accom-icon i {
  color: var(--gold);
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(10,29,55,0.2);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  pointer-events: none;
}
.toast.show {
  bottom: 30px;
  opacity: 1;
}
.toast-icon {
  color: var(--canary);
  font-size: 1.25rem;
}
.toast.error .toast-icon {
  color: #ff6b6b;
}

/* ========== FOOTER ========== */
footer {
  position: relative; z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.social-icons { display: flex; gap: .75rem; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--navy);
  transition: background .25s, color .25s;
}
.social-icons a:hover { background: var(--navy); color: var(--white); }
.social-icons a svg { width: 15px; height: 15px; fill: currentColor; }
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-links a {
  text-decoration: none; color: var(--navy);
  font-size: .85rem; font-weight: 500;
  position: relative; cursor: pointer;
}
.footer-links a.underlined::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 1.5px; background: var(--navy);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  #page-home .home-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .email-wrapper { margin: 0 auto; }
  header nav { display: none; }
  .hamburger { display: flex; }
  .logo-desktop { display: none; }
  .logo-mobile { display: block; }
  .visuals { padding: 1rem 0; }
  .hero-image-card { max-width: 380px; }
  footer { flex-direction: column; gap: 1rem; }
  .glow { width: 80vw; height: 80vw; top: 40%; right: -15%; }
  .venue-details { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .countdown { justify-content: center; }
  .booking-notice { margin-left: auto; margin-right: auto; }
  .booking-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  header { padding: 1rem 5%; }
  .page-inner { padding: 1.5rem 5%; }
  footer { padding: 1.25rem 5%; }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-image-card { max-width: 320px; }
  .email-wrapper { padding: .3rem .3rem .3rem 1rem; }
  #notify-btn { padding: .65rem 1.1rem; font-size: .82rem; }
  .glow { width: 90vw; height: 90vw; top: 30%; right: -20%; }
  .about-grid { grid-template-columns: 1fr; }
  .venue-map iframe { height: 300px; }
  .accom-grid { grid-template-columns: 1fr; }
  .countdown { gap: .6rem; }
  .countdown-item { min-width: 60px; padding: .75rem .8rem; }
  .countdown-number { font-size: 1.5rem; }
  .countdown-label { font-size: .6rem; }
  .rep-contacts { flex-direction: column; }
  .booking-banner { padding: 1.25rem; }
}

/* ========== FLOATING LANGUAGE SELECTOR ========== */
.lang-floating-widget {
  position: fixed;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0.5rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 4px 4px 20px rgba(10,29,55,0.08), inset 1px 1px 2px rgba(255,255,255,0.6);
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.6);
  border-left: none;
}
/* Tooltip for the floating widget */
.lang-floating-widget::before {
  content: "Choose display language";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: var(--font-body);
}
.lang-floating-widget:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(5px);
}
/* Little arrow for tooltip */
.lang-floating-widget::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  border-width: 6px;
  border-style: solid;
  border-color: transparent var(--navy) transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
.lang-floating-widget:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-1px);
}
.lang-floating-widget .lang-flag {
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  filter: grayscale(30%);
  user-select: none;
  line-height: 1;
}
.lang-floating-widget .lang-flag:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}
/* Hide Google Translate top banner & tooltip */
body { top: 0 !important; }
.skiptranslate iframe { display: none !important; }
#goog-gt-tt { display: none !important; }

/* Mobile Floating Language Selector */
@media (max-width: 768px) {
  .lang-floating-widget {
    top: auto;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    border-radius: 50px;
    border-left: 1px solid rgba(255,255,255,0.6);
    padding: 0.6rem 1.2rem;
    gap: 1.5rem;
    box-shadow: 0 8px 30px rgba(10,29,55,0.15), inset 1px 1px 2px rgba(255,255,255,0.6);
  }
  .lang-floating-widget::before,
  .lang-floating-widget::after {
    display: none;
  }
}
