:root {
  --color-royal: #0a0a0c;
  --color-primary: #F5F1E8;
  --color-accent-gold: #C6A85B;
  --color-accent-darkgold: #b08d3f;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-calligraphy: 'Pinyon Script', cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-royal);
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-royal);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Typography */
.heading-royal {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.1;
}

.body-modern {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.font-calligraphy {
  font-family: var(--font-calligraphy);
  font-weight: 400;
  font-size: 1.5em;
}

.accent-gold {
  color: var(--color-accent-gold);
}

.gold-line {
  width: 60px;
  height: 1px;
  background-color: var(--color-accent-gold);
  opacity: 0.5;
  margin: 0.75rem 0;
}

.gold-line.center {
  margin: 1.5rem auto;
}

.subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: var(--color-accent-gold);
}

.subtitle.sm {
  font-size: 0.65rem;
  font-weight: 500;
}

.body-text {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 168, 91, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.nav-center {
  display: none;
  gap: 3rem;
}

@media (min-width: 768px) {
  .nav-center {
    display: flex;
  }
}

.nav-center a {
  color: rgba(245, 241, 232, 0.8);
  text-decoration: none;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-center a:hover {
  color: var(--color-accent-gold);
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transition: width 0.3s ease;
}

.nav-center a:hover::after {
  width: 100%;
}

.book-btn {
  background-color: rgba(198, 168, 91, 0.1);
  border: 1px solid rgba(198, 168, 91, 0.3);
  color: var(--color-accent-gold);
  padding: 0.75rem 2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-royal);
}

/* Hero Scroll Section */
.hero-scroll-container {
  height: 500vh;
  /* Will be driven by JS or left fixed to allow scrolling */
  position: relative;
}

.sticky-canvas-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s ease;
}

.canvas-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 0.2rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.main-title {
  font-size: 4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  margin-right: -0.3em; /* Counters the extra letter-spacing on the last letter for perfect visual centering */
}

@media (min-width: 768px) {
  .main-title {
    font-size: 6rem;
  }
}

#hero-text-2 h2 {
  font-size: 3rem;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  #hero-text-2 h2 {
    font-size: 4.5rem;
  }
}

/* Content Sections */
.content-sections {
  position: relative;
  z-index: 10;
  background-color: var(--color-primary);
  color: var(--color-royal);
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  margin-top: -3rem;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  padding-bottom: 0;
}

/* About Section */
.section-about {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(rgba(245, 241, 232, 0.65), rgba(245, 241, 232, 0.85)), url('/Gemini_Generated_Image_1eml4r1eml4r1eml.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}

.about-container .body-text {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  opacity: 0.85;
}

.about-container h2 {
  font-size: 3.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .about-container h2 {
    font-size: 5.5rem;
  }
}

/* Suites & Dining */
.section-suites,
.section-dining {
  padding: 6rem 2rem;
  background-color: var(--color-royal);
  color: var(--color-primary);
}

.section-dining {
  background-color: var(--color-primary);
  color: var(--color-royal);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header p.subtitle {
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 5.5rem;
  }
}

.section-header .gold-line.center {
  margin: 3rem auto 2rem auto;
  opacity: 0.3;
  width: 60px;
}

.header-desc {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.suite-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.suite-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.suite-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: calc(-6rem - 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(198, 168, 91, 0.25);
  background-color: transparent;
}

.suite-item:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: calc(-6rem - 3px);
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  z-index: 1;
}

.suite-item.reverse {
  --suite-order: 1;
}

@media (min-width: 768px) {
  .suite-item {
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
  }

  .suite-item.reverse {
    direction: rtl;
  }

  .suite-item.reverse .suite-image-wrapper,
  .suite-item.reverse .suite-details {
    direction: ltr;
  }

  .suite-item.reverse .suite-details {
    align-items: flex-end;
    text-align: right;
  }
}

.suite-image-wrapper {
  width: 100%;
  aspect-ratio: 1.33;
  border: 1px solid rgba(198, 168, 91, 0.5);
  padding: 5px;
  background: transparent;
}

.suite-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.suite-image-wrapper:hover .suite-image {
  transform: scale(1.03);
}

.suite-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.suite-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.suite-header .number {
  font-size: 2.2rem;
  margin: 0 0 0.8rem 0;
  opacity: 0.9;
  line-height: 1;
  font-style: italic;
}

.suite-header h3 {
  font-size: 2.6rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .suite-header h3 {
    font-size: 2.8rem;
  }
}

.suite-details .body-text {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 3.5rem 0;
}

.section-dining .suite-details .body-text {
  color: rgba(10, 10, 12, 0.65);
}

.dining-subtitle {
  margin-bottom: 0.8rem;
  letter-spacing: 0.15em;
}

.suite-item.reverse .suite-details .body-text {
  margin-left: auto;
  margin-right: 0;
}

.suite-meta-minimal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.suite-size {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.gold-line-inline {
  width: 50px;
  height: 1px;
  background-color: var(--color-accent-gold);
  opacity: 0.5;
}

.reserve-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.reserve-link:hover {
  opacity: 0.8;
}

.view-menu-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--color-accent-gold);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.view-menu-link:hover {
  opacity: 0.8;
}

.section-dining .suite-item::after,
.section-dining .suite-item::before {
  display: none;
}

/* Location Section */
.section-location {
  padding: 6rem 0 0 0;
  background-color: var(--color-primary);
  color: var(--color-royal);
}

.section-location .section-header {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.section-location .section-header h2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.section-location .section-header .font-calligraphy {
  font-size: 1.2em;
}

.section-location .section-header .gold-line.center {
  margin: 1.5rem auto 0 auto;
}

.map-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  margin-top: 2rem;
  border-top: 1px solid rgba(198, 168, 91, 0.2);
}

.map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: sepia(0.3) contrast(1.1);
  transform: scale(1.1);
  transition: transform 4s ease-out, filter 4s ease-out;
  will-change: transform;
}

.map-container:hover .map-bg {
  transform: scale(1.2);
  filter: sepia(0.1) contrast(1.15);
}

.map-overlays {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.map-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #3b1712; /* Dark red/brown */
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: -4px 4px 15px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10;
  border: 2px solid var(--color-accent-gold);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-container:hover .map-marker {
  transform: rotate(-45deg) translate(8px, -8px) scale(1.15);
}

.map-marker svg {
  transform: rotate(45deg);
  position: absolute;
  top: 50%; left: 50%;
  margin-top: -12px; margin-left: -12px;
}

.pin-label-box {
  background: rgba(245, 241, 232, 0.95);
  border: 1px solid rgba(198,168,91,0.4);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pin-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--color-royal);
  display: block;
}

.pin-subtitle {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: rgba(10,10,12,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
}

.pin-subtitle::before, .pin-subtitle::after {
  content: '';
  width: 25px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.3;
}

.map-info-left {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 280px;
}

.map-info-right {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  max-width: 250px;
}

.map-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(10,10,12,0.7);
  font-style: italic;
  margin: 0;
}

.map-info-left .subtitle {
  margin-bottom: 0.3rem;
  margin-top: 1.5rem;
}
.map-info-left .subtitle:first-child {
  margin-top: 0;
}

/* Footer */
.footer {
  position: relative;
  background-color: var(--color-royal);
  color: var(--color-primary);
  padding: 8rem 2rem 2rem 2rem;
  overflow: hidden;
  border-top: none;
}

.footer-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  font-family: var(--font-heading);
  font-size: 26vw;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  will-change: transform;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 2rem;
    justify-items: start;
    align-items: start;
  }
}

.footer-logo-col {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 100%;
}

.footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.footer-address-col {
  display: flex;
  flex-direction: column;
}

.footer-address-col .subtitle {
  margin-bottom: 1.5rem;
}

.footer-address {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.footer-contact {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent-gold);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.footer-social a {
  color: var(--color-accent-gold);
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Utility Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* Artistic Section Header Staggered Animation */
.section-header.fade-in-up {
  opacity: 1;
  transform: none;
  transition: none;
}

.section-header > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-header.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.section-header.visible > *:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.section-header.visible > *:nth-child(3) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.section-header.visible > *:nth-child(4) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

/* Artistic Menu Link Entrance and Hover Animation */
.view-menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
}

.suite-item .view-menu-link {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease, letter-spacing 0.5s ease, padding 0.5s ease;
}

.suite-item.visible .view-menu-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.view-menu-link::after {
  content: '⟶';
  position: absolute;
  right: -20px;
  opacity: 0;
  transition: all 0.5s ease;
}

.view-menu-link:hover {
  letter-spacing: 0.25em;
  padding-right: 25px;
  opacity: 1;
}

.view-menu-link:hover::after {
  opacity: 1;
  right: 0;
}

/* ========================================= */
/* Booking Modal "Royal Invitation"          */
/* ========================================= */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.booking-modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking-modal-content {
  position: relative;
  width: 90%;
  max-width: 680px;
  padding: 4rem 4rem 3rem 4rem;
  background-color: #fdf8e9;
  border-radius: 2px;
  border-top: 5px solid #cca462;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.booking-modal-content::after {
  content: '';
  position: absolute;
  top: 5px; left: 0; right: 0; bottom: 0;
  border: 1px solid #ffffff;
  margin: 10px;
  pointer-events: none;
}

.booking-modal-overlay.hidden .booking-modal-content {
  transform: scale(0.95) translateY(20px);
}

.booking-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.booking-close-btn:hover {
  opacity: 1;
}

.booking-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-form.minimalist {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  width: 100%;
}

.form-group, .mini-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.guests-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.form-group label, .mini-group label {
  font-size: 0.75rem;
  color: #cca462;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.flat-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(204, 164, 98, 0.3);
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #3b1712;
  outline: none;
  transition: border-color 0.3s ease;
}

.flat-input::placeholder {
  color: rgba(59, 23, 18, 0.4);
  font-style: italic;
}

.flat-input.italic-val {
  font-style: italic;
  font-weight: 500;
}

.flat-input:focus {
  border-bottom: 1px solid #cca462;
}

.icon-calendar {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* Minimalist Flat Gold Button */
.btn-flat-gold {
  width: 100%;
  margin-top: 2.5rem;
  padding: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  background-color: #cca462;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.btn-flat-gold:hover {
  background-color: #b58d4a;
}

.btn-flat-gold:active {
  transform: scale(0.98);
}

@media (max-width: 650px) {
  /* Mobile Navbar Fixes */
  .navbar {
    padding: 1rem 1.5rem;
  }
  .nav-logo {
    height: 32px;
  }
  .logo-text {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
  .book-btn {
    padding: 0.6rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  /* Modal Mobile Overrides */
  .booking-modal-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin: 1rem;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
  }
  .booking-header {
    margin-bottom: 1rem;
  }
  .booking-header h3 {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
  }
  .booking-header div {
    margin-bottom: 1rem !important;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .flat-input {
    padding: 0.3rem 0;
  }
  .btn-flat-gold {
    margin-top: 1rem;
    padding: 0.8rem;
  }
}

/* Global Loader */
.global-loader {
  position: fixed;
  inset: 0;
  background-color: #000000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.global-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding: 0 2rem;
}

.loader-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 4rem;
  filter: brightness(0) invert(1) opacity(0.9); /* Makes the logo white/silver like the screenshot if it's black, or adjust if needed */
}

/* Actually, the prompt says "use mahel logo for this", and the reference image has a silver logo. 
   Our mahel-logo.png is gold/black or white? Let's just use it as is, and maybe add a little filter if it's too dark. 
   I will remove the invert filter to be safe and let the original logo shine. */
.loader-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 3.5rem;
}

.loader-text {
  color: #cca462;
  margin-bottom: 2rem;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.loader-bar-container {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #cca462;
  transition: width 0.1s ease;
}

.loader-percentage {
  font-family: var(--font-body);
  color: #5d6d7e; /* A bluish grey similar to the screenshot */
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}