/* =============================
    OFFER STYLES
============================== */

/* Remove any default margin from body */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============================
    HERO SECTION
============================== */
.hero-offer {
  position: relative;
  background-image: url('../Resources/DR_Moon_Reflection.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
  overflow: hidden;
  height: 55vh;
}
.hero-offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity here */
  z-index: 1;
}
.hero-offer .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero-offer .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero-offer .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-offer .hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}
/* Hero background image full width and behind text */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.1;
}
/* Ensure content is above image */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-offer .micro-text {
  font-size: 1rem;
  font-style: italic;
  color: #ccc;
  margin-top: 1rem;
}
/* =============================
    OFFER SUMMARY SECTION
============================== */
.offer-summary {
  padding: 60px 20px;
  background-color: #fefefe;
  text-align: center;
}
.offer-summary .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.summary-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.summary-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.intangible-banner {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border-left: 4px solid gold;
  font-style: italic;
  font-size: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: #333;
  transition: all 0.3s ease;
}
.intangible-banner:hover {
  background-color: #fffbe8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


/* =============================
    VALUE CLARITY SECTION
============================== */
.value-clarity {
  background-image: url('../Resources/DR_Moon_Reflection.jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.6); /* or gold-ish tint */
  color: white;
  padding: 60px 20px;
  text-align: center;
  height: 50vh;
}
.value-clarity h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-clarity p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.value-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.value-list li {
  margin: 0.5rem 0;
  font-weight: 500;
}

/* =============================
    WHY WE EXIST SECTION
============================== */
.why-exist {
  padding: 60px 20px;
  background-color: #f0f0f0; /* subtle contrast from white */
  color: #111;
  text-align: center;
}

.why-exist .section-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-exist p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.impact-list {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 600px;
  text-align: left;
}

.impact-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  font-weight: 500;
}

.impact-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: gold;
  font-weight: bold;
}

/* =============================
    LEGACY TEASE SECTION
============================== */
.legacy-cycle {
  display: flex;
  max-height: 50vh;
  flex-wrap: wrap;
  justify-content: center; /* Center the entire section better */
  align-items: center;
  padding: 10px 5vw; /* Use viewport width for more consistent spacing */
  transition: background-color 0.6s ease;
  color: black;
}
.legacy-text {
  flex: 1 1 50%;
  padding-right: 3vw;
  padding-left: 8vw; /* Move it inward from left */
  max-width: 600px;
}
.legacy-main-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.legacy-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 100%;
}
.legacy-logo-block {
  flex: 1 1 40%;
  text-align: center;
  padding-left: 5vw;
}
#legacy-logo {
  max-width: 280px; /* Increased size */
  height: auto;
  margin-bottom: 0rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#legacy-name {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.25rem;
}
#legacy-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

/* =============================
    FINAL CTA SECTION
============================== */
.cta-final {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
/*.cta-final .cta-button {
  background-color: gold;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}*/
.cta-final .cta-button:hover {
  transform: scale(1.05);
}

/* =============================
    MOBILE RESPONSIVE ADJUSTMENTS 
============================= */
@media (max-width: 768px) {

  /* =============================
      MOBILE HERO SECTION
  ============================== */
  .hero-offer-mobile {
    position: relative;
    background-image: url('../Resources/DR_Moon_Reflection.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
    overflow: hidden;
    z-index: 1;
    height: 100vh;
  }
  .hero-offer-mobile::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.65); /* adjust opacity here */
    z-index: 0;
  }
  .hero-offer-mobile .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  .hero-offer-mobile .micro-text {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
  }
  .hero-offer-mobile .hero-bg {
    display: none;
  }

  /* =============================
      OFFER SUMMARY (MOBILE)
  ============================== */
  /* =============================
    OFFER SUMMARY (MOBILE)
============================== */
.offer-summary-mobile {
  background-color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.offer-summary-mobile .section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
}

.offer-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: 80%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-padding-left: 20px;
}
.offer-carousel::-webkit-scrollbar {
  display: none;
}
.offer-card {
  scroll-snap-align: start;
  background-color: #111;
  color: white;
  padding: 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin: 0.25rem 0;
}
  .intangible-banner {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #444;
    padding: 0 10px;
  }
  .intangible-banner em {
    font-weight: bold;
  }

  /* =============================
      VALUE CLARITY (MOBILE)
  ============================== */
  .value-clarity-mobile {
    position: relative;
    background-image: url('../Resources/DR_Moon_Reflection.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 60px 20px;
    z-index: 1;
  }
  .value-clarity-mobile::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 0;
  }
  .value-clarity-mobile * {
    position: relative;
    z-index: 2;
  }
  .value-clarity-mobile .section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
  }
  .value-clarity-mobile p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
  }
  .value-clarity-mobile .value-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .value-clarity-mobile .value-list li {
    margin: 0.5rem 0;
    font-weight: 500;
  }

  /* =============================
      WHY WE EXIST (MOBILE)
  ============================== */
  .why-exist-mobile {
    background-color: #fafafa;
    text-align: center;
    padding: 60px 20px;
  }
  .why-exist-mobile .section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
  }
  .why-exist-mobile p {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto 1.25rem;
    color: #222;
  }
  .why-exist-mobile strong {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  .why-exist-mobile .impact-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .why-exist-mobile .impact-list li {
    margin: 0.5rem 0;
    font-weight: 500;
    color: #333;
  }

  /* =============================
      LEGACY TEASE - MOBILE
  ============================== */
  .legacy-cycle-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 40px;
    text-align: center;
    transition: background-color 0.6s ease;
  }
  .legacy-logo-block-mobile {
    margin-bottom: 0.25rem;
  }
  #legacy-logo-mobile {
    max-width: 120px;
    height: auto;
    margin-bottom: 0.1rem;
    transition: opacity 0.4s ease;
  }
  #legacy-name-mobile {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    margin-top: 0.1;
  }
  #legacy-tagline-mobile {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
  }
  .legacy-main-title-mobile {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 40px;
  }
  .legacy-subtitle-mobile {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
  }

  /* =============================
      CTA FINAL (MOBILE)
  ============================== */
  .cta-final-mobile {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 40px 20px;
  }
  .cta-final-mobile h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .cta-final-mobile p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-final-mobile .cta-button {
    background-color: gold;
    color: black;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .cta-final-mobile .cta-button:hover {
    transform: scale(1.05);
  }
}
