
  /* 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;
  }


/* =====================================================================
   RESTAURANT TOUR OVERRIDES (UPDATED)
   ===================================================================== */

/* 1) Disable any parent “container” caps */
.content-section.fade-in {
  padding: 0;
}
.content-section.fade-in > .container {
  max-width: none;
  padding: 0;
}

/* =====================================================================
   BASE LAYOUT (desktop)
   ===================================================================== */
.tour-section {
  background-color: #000;
  height: auto;
  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/Kaori-Ritual.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;
  /* responsive clamp: won’t go below 2rem or above 4rem */
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
  color: #f0eada;
}

/* ─── RIGHT PANEL (grid) ─── */
.tour-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* first row equal height */
  grid-template-rows: 1fr auto auto;
  grid-template-areas:
    "intro image"
    "reviews reviews"
    "story  story";
  gap: 1.5rem;
  align-items: stretch;
}

/* 1) Intro */
.tour-intro {
  grid-area: intro;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.tour-intro h3 {
  margin-bottom: 0.5rem;
  color: #f0eada;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: 1.5rem;
}
.tour-intro p {
  color: #ccc;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* 2) Square image */
.tour-image {
  grid-area: image;
  height: 100%;
  overflow: hidden;
}
.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* 3) Reviews */
.tour-reviews {
  grid-area: reviews;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.review-card {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}
.review-card .stars { color: #f0eada; margin-bottom: 0.5rem; }
.review-card .title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  color: #f0eada;
  margin: 0.25rem 0;
}
.review-card .sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: #aaa;
}

/* 4) Story */
.tour-story {
  grid-area: story;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.story-image {
  overflow: hidden;
  border-radius: 8px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-text {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 1.5rem;
}
.story-text h4 {
  color: #f0eada;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 200;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.story-text p {
  color: #ccc;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}



/* =====================================================================
   ANYVIEWPORT ≤900px — stack wrapper only, keep two-column inside right
   ===================================================================== */
@media (max-width: 900px) {
  .tour-wrapper {
    display: flex;
    flex-direction: column;
    margin: 50px 20px;
    gap: 1.5rem;
  }

  /* left first */
  .tour-left {
    order: 0;
    width: 100%;
    min-height: 40vh;
  }

  /* right second, still grid to preserve 2-col on both sections */
  .tour-right {
    order: 1;
    width: 100%;
    display: grid;
  }

  /* images scale naturally */
  .tour-image img,
  .story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
}

/* =====================================================================
   NARROW MOBILE ≤530px — collapse right into one column & stack both sections
   ===================================================================== */
@media (max-width: 530px) {
  /* collapse entire right panel */
  .tour-right {
    display: block;
  }

  /* ensure sushi + image stack */
  .tour-intro,
  .tour-image {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  /* ensure reviews stack if needed */
  .tour-reviews {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  /* ensure story container stacks its items */
  .tour-story {
    display: block;
  }

  /* story image + text full-width */
  .story-image,
  .story-text {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  /* images resize gracefully */
  .tour-image img,
  .story-image img {
    width: 100%;
    height: auto;
  }
}



/* ─── TOUR PAGE VIDEO SECTION ─── */
.tour-video-section {
  margin-top: 60px;
  background: #000;
  padding: 2rem 1rem;
  text-align: center;
}

.tour-video {
  height: 85vh;           /* screen ka aadha height */
  max-height: 600px;      /* zyada badi screen pe limit */
  width: 100%;
  max-width: 1200px;      /* or whatever container width you prefer */
  border-radius: 16px;    /* same radius as your cards */
  display: inline-block;
  object-fit: cover;      /* ensures it fills without distortion */
}
