/* ============================================================================
   Ambient Photo — Welle 5.26 v34 Inter-Section Photo-Strip
   ----------------------------------------------------------------------------
   Statisches Photo zwischen Pricing- und About-Section.
   Pattern analog zu .ambient-wave aber für Image statt Video.
   ============================================================================ */

.ambient-photo {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  /* Match Body-BG damit padding-Bereich nahtlos in umliegende Sections übergeht */
  background-color: #FAFBFD;
}

.ambient-photo-img {
  width: 100%;
  height: clamp(220px, 32vw, 420px);
  object-fit: cover;
  /* Welle 5.26 v34: 10% — Himmel + Berge prominent, Reisfelder unten gecroppt */
  object-position: center 10%;
  display: block;
}

body.is-dark-bg .ambient-photo {
  background-color: #0A1B33;
}

/* Welle 5.26 v34: Caption als Statement-Overlay zentral auf dem Photo.
   Brand-Anker für die folgende About-Section ("warum Chiang Mai?"). */
.ambient-photo-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  margin: 0;
  color: #ffffff;
  font-family: var(--at-font-display, var(--font-main, 'Inter', system-ui, sans-serif));
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
  /* Doppelter Schatten für Lesbarkeit auf jedem Crop-Bereich (Himmel hell, Berge dunkel, Felder grün) */
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
