/* Secondary Banner Styles */
.secondary-banner {
  min-height: 100vh;
  background: var(--Primary-100, #680144);
  position: relative;
  overflow: hidden;
}

.secondary-banner-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Left Image */
.secondary-banner-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 604px;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.secondary-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content - Heading and Description */
.secondary-banner-content {
  position: absolute;
  left: 724px;
  top: 293px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.secondary-banner-text {
  width: 384px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}

.secondary-banner-heading {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  line-height: 1;
  gap: 0.25rem;
}

.secondary-heading-part-1 {
  color: var(--Tertiary-100, #F6E0DF);
  font-family: "DM Sans", sans-serif;
  font-size: 4.5rem; /* 72px - text-7xl equivalent */
  font-weight: 400;
  line-height: 88px;
}

.secondary-heading-part-2 {
  color: var(--Tertiary-100, #F6E0DF);
  font-family: "Calluna", serif;
  font-size: 5rem; /* 80px - text-8xl equivalent */
  font-weight: 400;
  font-style: italic;
  line-height: 92.4px;
  margin-left: 0.25rem;
}

.secondary-banner-description {
  width: 384px;
  height: 80px;
  color: var(--Tertiary-100, #F6E0DF);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.secondary-banner-description p {
  margin: 0;
  padding: 0;
}

/* Responsive - Large screens / Monitors (1920px+) */
@media (min-width: 1920px) {
  .secondary-banner {
    min-height: 100vh;
  }

  .secondary-banner-image {
    width: 800px;
  }

  .secondary-banner-content {
    left: 924px;
    top: auto;
    bottom: 18%;
    transform: none;
  }
}

/* Responsive - Laptop screens (1280px - 1919px) */
@media (min-width: 1280px) and (max-width: 1919px) {
  .secondary-banner-image {
    width: 500px;
  }

  .secondary-banner-content {
    left: 600px;
    top: 250px;
  }
}

/* Responsive - Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .secondary-banner-image {
    width: 45%;
    max-width: 500px;
  }

  .secondary-banner-content {
    left: 50%;
    top: 200px;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
  }

  .secondary-banner-text {
    width: 100%;
  }

  .secondary-banner-description {
    width: 100%;
    height: auto;
  }

  .secondary-heading-part-1 {
    font-size: 3.5rem;
    line-height: 70px;
  }

  .secondary-heading-part-2 {
    font-size: 4rem;
    line-height: 80px;
  }
}

/* Responsive - Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .secondary-banner {
    min-height: auto;
    padding: 3rem 0;
  }

  .secondary-banner-container {
    min-height: auto;
  }

  .secondary-banner-image {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: auto;
  }

  .secondary-banner-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .secondary-banner-text {
    width: 100%;
  }

  .secondary-banner-description {
    width: 100%;
    height: auto;
  }

  .secondary-heading-part-1 {
    font-size: 3rem;
    line-height: 60px;
  }

  .secondary-heading-part-2 {
    font-size: 3.5rem;
    line-height: 70px;
  }
}

/* Responsive - Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .secondary-banner {
    min-height: auto;
    padding: 2rem 0;
  }

  .secondary-banner-container {
    min-height: auto;
  }

  .secondary-banner-image {
    position: relative;
    width: 100%;
    height: 300px;
    min-height: auto;
  }

  .secondary-banner-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 2rem 1rem;
  }

  .secondary-banner-text {
    width: 100%;
  }

  .secondary-banner-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .secondary-heading-part-1 {
    font-size: 2.5rem;
    line-height: 50px;
  }

  .secondary-heading-part-2 {
    font-size: 3rem;
    line-height: 60px;
  }

  .secondary-banner-description {
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 22px;
  }
}
