/* ============================================================
   SECTION 3 — ARCHITECTURE INSPIRED BY ART DECO
   ============================================================ */

.art-deco-section {
  position: relative;
  width: 100%;
  height: 120vh; /* Increased from 100vh to display more of the video's vertical height */
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #1a0508; /* Fallback matching the video dark burgundy */
}

/* ── Video background ── */
.art-deco-section__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.art-deco-section__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top; /* Aligns video top with container top so building roof is fully visible */
  pointer-events: none;
  user-select: none;
}

/* ── Content on the left ── */
.art-deco-section__content {
  position: relative;
  z-index: 2;
  padding-left: 11vw; /* Left padding 10-12% of the viewport */
  padding-right: 24px;
  max-width: 750px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Scroll reveal states */
.art-deco-section__content.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.art-deco-section__content.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Heading ── */
.art-deco-section__heading {
  font-family: 'ClassyVogue', 'Cormorant Garamond', 'Georgia', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  color: #E0C99E;
  margin: 0 0 32px 0;
  text-transform: capitalize;
}

/* ── Body copy ── */
.art-deco-section__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: #E0C99E;
  max-width: 100%;
  margin: 0;
}

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

@media (max-width: 992px) {
  .art-deco-section__content {
    padding-left: 8vw;
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .art-deco-section__content {
    padding-left: 6vw;
    max-width: 90%;
  }

  .art-deco-section__heading {
    font-size: 40px;
  }

  .art-deco-section__desc {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .art-deco-section__content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .art-deco-section__heading {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .art-deco-section__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}
