/* Hero Section */

body {
  background:

    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.85),
      transparent 30%
    ),

    linear-gradient(
      to bottom,
      #ffffff 0%,
      var(--off-white) 52%,
      #f5f1ec 100%
    ) !important;

  min-height: 100vh;
}

.story-hero-section {
  width: 100%;
}

.story-hero {
  position: relative;
  min-height: 85vh;
  background-image:
    linear-gradient(
      rgba(18, 12, 15, 0.28),
      rgba(18, 12, 15, 0.45)
    ),
    url("./assets/engagement/story-hero-image.jpg");
  background-size: 115%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: storyZoomOut 18s ease forwards;
}

/* Zoom Out Animation */

@keyframes storyZoomOut {

  from {
    background-size: 115%;
  }

  to {
    background-size: 100%;
  }

}

.story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.story-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.story-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 60px;
  color: #fff;
}

.story-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: "DM Mono", monospace;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.story-subtitle::before {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: var(--bright-pink);
    flex-shrink: 0;
}

.story-title {
font-family: "Bodoni Moda", serif;
  font-size: 8.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
}

.story-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
  padding-bottom: 15px;
}

@media (max-width: 768px) {

  .story-hero {
    min-height: 75vh;
    background-size: cover;
    background-position: center center;
    animation: none;
  }

  .story-hero-content {
    padding: 0 18px 40px;
  }

  .story-title {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }
}

/* Our Story Section */

.story-heading-font {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #b8956a;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-transform: uppercase;
  text-align: center;
}

.story-heading-font::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--champagne);
  margin: 18px auto 0;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-content {
    flex: 1;
}

.split-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    padding-top: 60px;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 768px) {
    .story-block,
    .story-block.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .story-block,
    .story-block.reverse {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
    }

    .story-content {
        order: 1;
    }

    .story-image {
        order: 2;
    }

    .story-image img {
        width: 100%;
        display: block;
    }
}