/* ═══════════════════════════════════════════
   FloraVision — About Page Styles
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════
   ABOUT HERO — Full-bleed with Hydrangea background
══════════════════════════════════════ */

.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/Hydrangea.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 74, 62, 0.45) 0%,
    rgba(45, 74, 62, 0.35) 50%,
    rgba(45, 74, 62, 0.65) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 40px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 500;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.about-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

/* ══════════════════════════════════════
   FOOTER BOTANICAL DECORATION
   CSS-generated alternative to SVG
══════════════════════════════════════ */

.footer-botanical-decoration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  opacity: 0.06;
  pointer-events: none;
  overflow: hidden;
}

/* Create repeating botanical pattern with CSS pseudo-elements */
.footer-botanical-decoration::before,
.footer-botanical-decoration::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Stems */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.15) 80px,
      rgba(255, 255, 255, 0.15) 81px,
      transparent 81px,
      transparent 200px
    ),
    /* Leaves */
    radial-gradient(
      ellipse 30px 20px at 50% 50%,
      rgba(255, 255, 255, 0.12) 40%,
      transparent 40%
    );
  background-size: 
    200px 100%,
    40px 60px;
  background-position: 
    0 0,
    20px 40px;
  background-repeat: repeat-x, repeat-x;
}

.footer-botanical-decoration::after {
  background-position: 
    100px 0,
    120px 60px;
  opacity: 0.6;
}

/* Add subtle flower shapes */
.footer-botanical-decoration {
  background-image: 
    radial-gradient(
      circle 12px at 50% 50%,
      rgba(201, 168, 76, 0.15) 30%,
      transparent 30%
    );
  background-size: 180px 120px;
  background-position: 40px 30px;
  background-repeat: repeat-x;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 900px) {
  .about-hero {
    background-attachment: scroll;
    min-height: 76vh;
  }

  .about-hero-title { 
    font-size: 44px; 
    letter-spacing: -1px; 
  }

  .about-hero-sub {
    font-size: 16px;
  }

  .about-hero-content {
    padding: 0 32px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 70vh;
  }

  .about-hero-title { 
    font-size: 36px; 
    letter-spacing: -0.6px; 
  }

  .about-hero-sub { 
    font-size: 15px;
    line-height: 1.65;
  }

  .about-hero-content {
    padding: 0 24px;
  }

  .footer-botanical-decoration {
    height: 140px;
    opacity: 0.04;
  }
}
