/* =========================
   RESET
========================= */

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


html {
  scroll-behavior: smooth;
}


body {
  width: 100%;

  background: #000;

  color: #fff;

  font-family: "Inter", sans-serif;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  width: 100%;

  height: 100vh;
  height: 100svh;

  background-image: url("bg.png");

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}


/* subtle cinematic overlay */

.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.22)
    );

  pointer-events: none;
}


/* =========================
   LOGO
========================= */

.coming-soon {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  transform: translateY(-2vh);
}


.logo {

  display: block;

  width: clamp(190px, 20vw, 360px);

  height: auto;

  object-fit: contain;

  margin-bottom: 28px;
}


.coming-text {

  color: #fff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: clamp(12px, 1.2vw, 17px);

  font-weight: 500;

  letter-spacing: 0.38em;

  text-transform: uppercase;

  margin-left: 0.38em;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.4);
}


/* =========================
   SCROLL TO EXPLORE
========================= */

.scroll-explore {

  position: absolute;

  z-index: 5;

  right: 42px;

  bottom: 38px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 9px;

  color: rgba(255, 255, 255, 0.92);

  text-decoration: none;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;

  animation: scrollFloat 2.2s infinite ease-in-out;
}


/* Mouse */

.scroll-mouse {

  position: relative;

  width: 22px;

  height: 34px;

  border: 1px solid rgba(255,255,255,0.85);

  border-radius: 14px;

  display: flex;

  justify-content: center;

  padding-top: 7px;
}


.scroll-wheel {

  width: 3px;

  height: 7px;

  border-radius: 3px;

  background: #fff;

  animation: wheelMove 1.5s infinite ease-in-out;
}


/* Text */

.scroll-label {

  font-size: 8px;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  white-space: nowrap;

  writing-mode: vertical-rl;

  transform: rotate(180deg);

  opacity: 0.9;
}


/* Arrow */

.scroll-arrow {

  font-size: 17px;

  line-height: 1;

  animation: arrowMove 1.5s infinite ease-in-out;
}


/* Floating movement */

@keyframes scrollFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}


/* Mouse wheel */

@keyframes wheelMove {

  0% {
    transform: translateY(0);

    opacity: 1;
  }

  70% {
    transform: translateY(8px);

    opacity: 0;
  }

  100% {
    transform: translateY(0);

    opacity: 0;
  }
}


/* Arrow */

@keyframes arrowMove {

  0%,
  100% {
    transform: translateY(0);

    opacity: 0.55;
  }

  50% {
    transform: translateY(5px);

    opacity: 1;
  }
}


/* Hide after scrolling */

.scroll-explore.is-hidden {

  opacity: 0;

  transform: translateY(15px);

  pointer-events: none;
}


/* =========================
   RAMAYANA SECTION
========================= */

.ramayana-section {

  position: relative;

  background: #000;

  color: #fff;

  overflow: visible;
}


/* =========================
   TWO COLUMN LAYOUT
========================= */

.ramayana-inner {

  position: relative;

  width: min(1300px, 90%);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 80px;

  align-items: start;
}


/* =========================
   LEFT CONTENT
========================= */

.ramayana-copy {

  position: relative;

  z-index: 2;

  padding-top: 10px;

  padding-bottom: 160px;

  max-width: 650px;
}


/* eyebrow */

.eyebrow {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  margin-bottom: 28px;

  color: #cfa35a;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.25em;

  text-transform: uppercase;
}


.eyebrow::before,
.eyebrow::after {

  content: "";

  width: 28px;

  height: 1px;

  background: #cfa35a;

  opacity: 0.8;
}

.ramayana-copy-heading {
  max-width: 100%;
  margin-top: 70px;
  margin-bottom: 30px;
}

/* =========================
   HEADING
========================= */

.ramayana-copy-heading h2 {

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(56px, 5vw, 76px);

  line-height: 0.9;

  font-weight: 500;

  letter-spacing: 0em;

  text-align: center;

  margin-bottom: 70px;

  color: #f3ead7;
}


.ramayana-copy h2 span {

  display: block;

  font-style: italic;

  color: #d1a55d;

  margin-top: 8px;
}


/* =========================
   STORY CONTENT
========================= */

.story-content {

  max-width: 570px;

  margin: 0 auto;
}


.ramayana-copy p {

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(21px, 2vw, 25px);

  line-height: 1.5;

  color: rgba(243, 234, 215, 0.76);

  margin-bottom: 42px;
}


.ramayana-copy p:last-child {

  margin-bottom: 0;
}


.story-ending {

  color: #f3ead7 !important;

  font-size: clamp(23px, 2.2vw, 28px) !important;

  line-height: 1.4 !important;

  padding-top: 15px;
}


/* =========================
   RIGHT STICKY IMAGE
========================= */

.hanuman-sticky {

  position: sticky;

  top: 0;

  height: 100vh;

  height: 100svh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}


/* artwork */

.hanuman-art {

  position: relative;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* subtle golden atmosphere */

.hanuman-art::after {

  content: "";

  position: absolute;

  width: 70%;

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(194, 146, 63, 0.14),
      transparent 68%
    );

  filter: blur(40px);

  z-index: -1;
}


/* Hanuman */

.hanuman-art img {

  width: 90%;

  max-width: 720px;

  height: auto;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(
      0 30px 45px rgba(0, 0, 0, 0.4)
    );

  animation: hanumanFloat 5s ease-in-out infinite;
}


/* Gentle floating motion */

@keyframes hanumanFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-0.5deg);
  }
}


/* =========================
   DESKTOP — STORY SCROLL
========================= */

@media (min-width: 769px) {

  .ramayana-section {

    /*
      Allows the left content to determine
      the total height of the section.
    */

    min-height: 100vh;
  }

}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 768px) {

  .hero {

    background-position: center center;
  }


  .logo {

    width: min(62vw, 280px);

    margin-bottom: 22px;
  }


  .coming-text {

    font-size: 11px;

    letter-spacing: 0.3em;

    margin-left: 0.3em;
  }


  /* Scroll indicator */

  .scroll-explore {

    right: 18px;

    bottom: 24px;

    gap: 7px;
  }


  .scroll-mouse {

    width: 19px;

    height: 30px;
  }


  .scroll-label {

    font-size: 7px;

    letter-spacing: 0.18em;
  }


  /* =========================
     MOBILE STORY
  ========================= */

  .ramayana-inner {

    width: 88%;

    display: flex;

    flex-direction: column;

    gap: 0;
  }


  /*
    Remove sticky behaviour on mobile.
    Image comes first, story follows.
  */

  .hanuman-sticky {

    position: relative;

    top: auto;

    height: auto;

    min-height: 55vh;

    order: 1;

    overflow: visible;

    display: flex;

    align-items: center;

    justify-content: center;
  }


  .hanuman-art img {

    width: 115%;

    max-width: none;

    margin-left: -7.5%;
  }


  .ramayana-copy {

    order: 2;

    padding-top: 50px;

    padding-bottom: 100px;

    max-width: none;
  }


  .eyebrow {

    margin-bottom: 22px;
  }


  .ramayana-copy h2 {

    font-size: clamp(48px, 14vw, 70px);

    line-height: 0.9;

    margin-bottom: 55px;
  }


  .story-content {

    max-width: none;
  }


  .ramayana-copy p {

    font-size: 21px;

    line-height: 1.48;

    margin-bottom: 34px;
  }


  .story-ending {

    font-size: 23px !important;
  }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 420px) {

  .hero {

    background-position: 55% center;
  }


  .ramayana-inner {

    width: 88%;
  }


  .hanuman-sticky {

    min-height: 48vh;
  }


  .ramayana-copy {

    padding-top: 35px;

    padding-bottom: 75px;
  }


  .ramayana-copy h2 {

    font-size: 48px;

    margin-bottom: 45px;
  }


  .ramayana-copy p {

    font-size: 19px;

    margin-bottom: 30px;
  }


  .story-ending {

    font-size: 21px !important;
  }

}