
  /* 1) Pause your page’s animations while the loader is up */
  body.preloading * {
    animation-play-state: paused !important;
    transition: none         !important;
  }

  /* 2) Make #preloader fill the screen */
  #preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* 3) Initial state for the logo */
  #preloader-logo {
    width: 120px;
    opacity: 0;
    transform: scale(0.95);
  }

  /* 4) Class to hide it—match whatever your JS actually adds: */
  #preloader.hide,
  #preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s;
  }

/* =============================================================================
   contact.css  — Contact Us page overrides (updated map intrinsic ratio)
   ============================================================================= */

/* 1) Hide the original video section */
.tour-video-section {
  display: none !important;
}

/* 2) Flatten the content container */
.content-section.fade-in {
  padding: 0;
}
.content-section.fade-in > .container {
  max-width: none;
  padding: 0;
}

/* =============================================================================
   BASE LAYOUT
   ============================================================================= */
.tour-section {
  background-color: #000;
  overflow: visible;
}
.tour-wrapper {
  display: flex;
  gap: 2rem;
  margin: 100px 70px;
  align-items: stretch;
}

/* ─── LEFT PANEL ─── */
.tour-left {
  flex: 1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: url('Resources/Ambience.jpg') center/cover no-repeat;
  min-height: 50vh;
}
.tour-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 20%, transparent 60%);
  z-index: 1;
}
.tour-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  z-index: 2;
}
.tour-overlay h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #f0eada;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

/* ─── RIGHT PANEL ─── */
.tour-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── GET IN TOUCH BOX ─── */
.getin-box {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 2rem;
  color: #f0eada;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.getin-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: 3rem;
}
.getin-box p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #ccc;
}

/* ─── SOCIAL ICONS UNDER EMAIL ─── */
.getin-box .social-icons {
  display: flex;
  gap: 1rem;               /* tighten spacing */
  padding: 0;              /* remove any extra padding */
  margin-top: 0.5rem;      /* space below email */
  justify-content: center;
  border: none !important; /* remove any inherited border */
  background: none !important;
}
.getin-box .social-link {
  color: #f0eada;
  font-size: 1.25rem;      /* smaller icons */
  line-height: 1;
}

/* ─── GOOGLE MAP BOX ─── */
/* Use intrinsic ratio (16:9) so map always fills container */
.map-box {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  overflow: hidden;

  position: relative;
  width: 100%;
  padding-top: 56.25%;       /* 16:9 aspect ratio */
}
.map-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================= */
@media (max-width: 900px) {
  .tour-wrapper {
    flex-direction: column;
    margin: 80px 20px;
  }
}

@media (max-width: 530px) {
  .getin-box,
  .map-box {
    margin-bottom: 1.5rem;
  }
}
