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

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height to let video go behind header */
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0; /* Align to absolute top of page */
}

/* ── Background image
   To swap image later: change only the src on <img class="hero__bg-img">
   ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Subtle overlay — only enough to read white text ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

/* Gap between title and subtitle */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 10px;
}

/* ── BORIVALI. ── */
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  padding-right: 0.2em;
}

/* ── BEFORE THE SKYLINE SHIFTED. ── */
.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.85vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  padding-right: 0.2em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .hero {
    height: 100svh; /* Full viewport height on mobile */
    min-height: 420px;
  }

  .hero__title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    letter-spacing: 0.18em;
    padding-right: 0.18em;
  }

  .hero__subtitle {
    font-size: clamp(0.75rem, 3.2vw, 1.1rem);
    letter-spacing: 0.18em;
    padding-right: 0.18em;
  }

  .hero__content {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.1rem, 6.5vw, 1.5rem);
    letter-spacing: 0.14em;
    padding-right: 0.14em;
  }

  .hero__subtitle {
    font-size: clamp(0.7rem, 4vw, 0.95rem);
    letter-spacing: 0.14em;
    padding-right: 0.14em;
  }
}

/* ── Mute/Unmute Button ── */
.hero__mute-btn {
  position: absolute;
  bottom: 6.8vh; /* Positioned dynamically above the covered bottom space (2.8vh) */
  right: 40px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(74, 7, 7, 0.6);
  border: 1px solid rgba(196, 158, 80, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  outline: none;
}

.hero__mute-btn:hover {
  background-color: rgba(74, 7, 7, 0.95);
  border-color: #E8D0A3;
  transform: scale(1.05);
}

.hero__mute-icon {
  width: 20px;
  height: 20px;
  fill: #E8D0A3;
  transition: fill 0.3s ease;
}

.hero__mute-btn:hover .hero__mute-icon {
  fill: #ffffff;
}

@media (max-width: 768px) {
  .hero__mute-btn {
    bottom: 5.8vh; /* Adjusted dynamically for mobile viewport height */
    right: 20px;
    width: 38px;
    height: 38px;
  }
  .hero__mute-icon {
    width: 16px;
    height: 16px;
  }
}
