

/* ================= GRANDEUR INTRO (TAJ HEADING) ================= */
.bayan-grandeur-intro {
  padding: 80px 40px 120px;
  text-align: center;
  background: #ffffff;
}

.grandeur-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}

.grandeur-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3a3a;
}

.grandeur-header .line {
  width: 90px;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}

.grandeur-desc {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: #6f6f6f;
}

/* ================= BAYAN HOSPITALITY ================= */
.bayan-hospitality {
  background: #ffffff;
  padding: 120px 40px 180px;
}

.hospitality-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  position: relative;
}

/* LEFT FLOATING CARD */
.hospitality-content {
  position: relative;
  background: #ffffff;
  padding: 100px 90px;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.decor-line {
  display: block;
  width: 60px;
  height: 1px;
  background: #b68c5a;
  margin-bottom: 24px;
}

.hospitality-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hospitality-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #6f6f6f;
  max-width: 420px;
}

/* SVG WATERMARK */
.hospitality-svg {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 240px;
  height: 240px;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}

.hospitality-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* RIGHT IMAGE (DEPTH EFFECT) */
.hospitality-image {
  position: relative;
  margin-left: -120px;
}

.hospitality-image img {
  width: 100%;
  display: block;
}

/* ================= MICRO STORY ================= */
.micro-story {
  padding: 120px 40px;
  text-align: center;
}

.micro-story p {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #1c1c1c;
}

/* ================= MONUMENTAL VISION ================= */
.monumental-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 140px 40px;
}

.monumental-vision h3 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  margin-bottom: 28px;
}

.monumental-vision p {
  font-size: 18px;
  line-height: 1.9;
  color: #6f6f6f;
}

.monumental-vision img {
  width: 100%;
  display: block;
}

/* ================= CINEMATIC BLACK ================= */
.bayan-cinematic {
  background: #0b0b0b;
  color: #ffffff;
  padding: 180px 0;
}

/* HEADERS */
.feeling-header,
.global-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}

.feeling-header h2,
.global-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  letter-spacing: 0.14em;
}

.line {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

/* FEELING SECTION */
.bayan-feeling-inner {
  padding: 0 40px 160px;
  text-align: center;
}

.feeling-desc {
  max-width: 760px;
  margin: 0 auto 80px;
  font-size: 18px;
  line-height: 1.9;
  color: #d6d6d6;
}

/* VIDEO */
.feeling-video {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.video-poster {
  position: relative;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  background: none;
  border: none;
  font-size: 84px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-poster:hover .play-btn {
  transform: scale(1.05);
  opacity: 0.7;
}

.feeling-video video {
  display: none;
  width: 100%;
}

/* ================= SLICED SLIDER ================= */
.bayan-sliced-slider {
  margin-top: 120px;
}

.sliced-image {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 520px;
  background: url("../images/kumbha-bagh-palace.webp") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.sliced-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.5)
  );
}

.slice {
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slice:first-child {
  border-left: none;
}

.slice-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.slice:hover .slice-content {
  opacity: 1;
  transform: translateY(0);
}

.slice-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.slice-content p {
  font-size: 15px;
  color: #e0e0e0;
}

/* ================= CLOSING ================= */
.about-closing {
  padding: 160px 40px;
  text-align: center;
}

.about-closing h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hospitality-wrap {
    grid-template-columns: 1fr;
  }

  .hospitality-image {
    margin-left: 0;
    margin-top: 60px;
  }

  .hospitality-content {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .monumental-vision {
    grid-template-columns: 1fr;
  }

  .sliced-image {
    grid-template-columns: repeat(2, 1fr);
    height: 300px;
  }
}
/* ================= PAATHYA ================= */
.paathya-single {
  background: #4a4a46;
  padding: 160px 40px;
  text-align: center;
  color: #ffffff;
}

.paathya-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.paathya-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  letter-spacing: 0.14em;
}

.paathya-line {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.paathya-desc {
  max-width: 760px;
  margin: 0 auto 120px;
  font-size: 18px;
  line-height: 1.9;
  color: #e2e2e2;
}

.paathya-image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.paathya-image-wrapper img {
  width: 100%;
  display: block;
}
/* ================= VIDEO – TAJ STYLE ================= */

.feeling-video {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Poster is always visible initially */
.video-poster {
  position: relative;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  display: block;
}

/* Play button */
.video-poster .play-btn {
  position: absolute;
  inset: 0;
  background: none;
  border: none;
  font-size: 84px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-poster:hover .play-btn {
  opacity: 0.7;
  transform: scale(1.05);
}

/* Video hidden until play */
.feeling-video video {
  display: none;
  width: 100%;
}
/* ===== A GROWING LEGACY (TEXT FIX) ===== */

.bayan-global-inner {
  padding: 160px 40px 0;
  text-align: center;
}

/* FIXED PARAGRAPH */
.global-desc {
  max-width: 720px;              /* 🔥 KEY: controls line length */
  margin: 0 auto 100px;          /* centers it */
  font-size: 18px;
  line-height: 1.9;
  color: #d6d6d6;
  text-align: center;
}
.global-desc {
  letter-spacing: 0.01em;
}
/* ================= ABOUT HERO ================= */

.taj-style-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url("https://images.squarespace-cdn.com/content/v1/52ed3507e4b041396187d22b/1628227764541-AB49380K73DCLGRJ5LII/The+JaiBagh+Palace+jaipur+destination+wedding+1.jpeg"); /* ✅ FIXED PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

/* Content */


.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
}

.page-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.85;
  font-weight: 400;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 84px;        /* ⬅ slightly smaller = more luxury */
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  margin-top: 28px;
}
@media (max-width: 768px) {
  .hero-content {
    transform: translateY(-20px);
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    transform: translateY(-20px);
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}





.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bayan-sliced-slider {
  margin-top: 120px;
  position: relative;
  z-index: 5;
}

.sliced-image {
  position: relative;
  height: 520px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background-image: url("../images/kumbha-bagh-palace.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sliced-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.45)
  );
}
.bayan-cinematic {
  position: relative;
  z-index: 10;
}
.sliced-image {
  background-image: url("https://images.unsplash.com/photo-1548013146-72479768bada");
  background-size: cover;
  background-position: center;
}
