/* ═══════════════════════════════════════════════════════════
   Startseite – Aromapraxis Simone Schöggl
   front-page.css (wird via functions.php eingebunden)
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────────────────────── */
.ap-hero {
  min-height: 56vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.ap-hero::before {
  content: '';
  position: absolute;
  top: 5%; left: -5%;
  width: 60vw; height: 56vh;
  background: var(--linen);
  border-radius: 40% 60% 55% 45% / 40% 50% 50% 60%;
  z-index: 0;
  opacity: 0.55;
}

.ap-hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
}

.ap-hero__tag {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  align-self: flex-start;
  animation: ap-fadeUp 0.7s ease both;
}

.ap-hero__text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 3.8vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 1.5rem;
  animation: ap-fadeUp 0.7s 0.1s ease both;
}

.ap-hero__text h1 em {
  font-style: italic;
  color: var(--terra);
}

.ap-hero__text > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown-light);
  max-width: 430px;
  margin-bottom: 2.5rem;
  animation: ap-fadeUp 0.7s 0.2s ease both;
}

.ap-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: ap-fadeUp 0.7s 0.3s ease both;
}

.ap-btn-main {
  background: var(--terra);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.ap-btn-main:hover {
  background: var(--terra-dark);
  color: #fff;
  transform: translateY(-2px);
}

.ap-btn-link {
  color: var(--terra);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.ap-btn-link:hover { gap: 0.7rem; color: var(--terra-dark); }

.ap-hero__photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 420px;
}

.ap-hero__photo-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--sand-dark) 0%, var(--sand) 45%, var(--terra-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-hero__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-hero__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--brown-light);
  opacity: 0.45;
}

.ap-hero__photo-placeholder svg { width: 56px; height: 56px; }
.ap-hero__photo-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── WAVE DIVIDER ─────────────────────────────────────── */
.ap-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.ap-wave-divider svg { display: block; }

/* ─── SECTION SHARED ───────────────────────────────────── */
.ap-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.8rem;
}

.ap-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0;
}

.ap-section-title em {
  font-style: italic;
  color: var(--terra);
}

/* ─── ANGEBOTE ─────────────────────────────────────────── */
.ap-angebote {
  background: var(--linen);
  padding: 5rem;
}

.ap-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ap-angebote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.ap-gutschein-hinweis {
  margin: 3rem auto 0;
  max-width: 720px;
  background: var(--terra-pale);
  border-radius: 16px;
  padding: 1.6rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  text-align: center;
}

.ap-gutschein-hinweis__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.ap-gutschein-hinweis__text {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--terra-dark);
}

.ap-gutschein-hinweis__link {
  background: var(--terra);
  color: #fff;
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

.ap-gutschein-hinweis__link:hover {
  background: var(--terra-dark);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .ap-gutschein-hinweis {
    flex-direction: column;
    padding: 1.6rem;
  }
}

.ap-angebot-card {
  background: var(--warm-bg);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.ap-angebot-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(181,113,90,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.ap-angebot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(61,43,31,0.1);
}

.ap-angebot-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background: var(--sand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.ap-angebot-nr {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--terra-light);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.ap-angebot-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.ap-angebot-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--brown-light);
}

.ap-angebot-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--terra);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.ap-angebot-link:hover { color: var(--terra-dark); }

/* ─── ÜBER MICH ────────────────────────────────────────── */
.ap-ueber {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.ap-ueber__img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sand) 0%, var(--terra-light) 100%);
  border-radius: 12px 60px 12px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(122,63,40,0.15);
  overflow: hidden;
}

.ap-ueber__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 60px 12px 60px;
}

.ap-ueber__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.ap-ueber__img-placeholder svg { width: 48px; height: 48px; opacity: 0.5; }
.ap-ueber__img-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.ap-ueber__text .ap-section-label { text-align: left; }
.ap-ueber__text .ap-section-title { text-align: left; margin-bottom: 1.5rem; font-size: 2rem; }

.ap-ueber__desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
}

.ap-ueber__quote {
  border-left: 3px solid var(--terra);
  padding: 1rem 1.5rem;
  margin: 0 0 1.8rem;
  background: var(--terra-pale);
  border-radius: 0 6px 6px 0;
}

.ap-ueber__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--terra-dark);
  line-height: 1.65;
  margin: 0;
}

.ap-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid var(--sand-dark);
  padding-top: 1.5rem;
}

.ap-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--brown-light);
}

.ap-credentials li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* ─── FEELING BANNER ───────────────────────────────────── */
.ap-feeling-banner {
  background: var(--terra-dark);
  color: rgba(255,255,255,0.9);
  padding: 3.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.ap-feeling-banner__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #fff;
}

.ap-feeling-banner__text p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.ap-feeling-banner__badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 1.2rem 2rem;
  text-align: center;
  flex-shrink: 0;
}

.ap-feeling-banner__badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.ap-feeling-banner__badge-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
}

/* ─── KONTAKT TEASER ───────────────────────────────────── */
.ap-kontakt-teaser {
  text-align: center;
  padding: 7rem 5rem;
  background: var(--sand-light);
  border-top: 1px solid var(--sand);
}

.ap-kontakt-teaser .ap-section-label {
  text-align: center;
  margin-bottom: 0.8rem;
}

.ap-kontakt-teaser .ap-section-title {
  max-width: 560px;
  margin: 0 auto 1.2rem;
  font-size: 2.4rem;
  line-height: 1.25;
}

.ap-kontakt-teaser > p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown-light);
}

/* ─── ANIMATION ────────────────────────────────────────── */
@keyframes ap-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .ap-hero { grid-template-columns: 1fr; }
  .ap-hero__photo { min-height: 50vw; }
  .ap-hero__text { padding: 6rem 1.5rem 3rem; }
  .ap-angebote { padding: 3rem 1.5rem; }
  .ap-angebote-grid { grid-template-columns: 1fr; }
  .ap-ueber { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .ap-feeling-banner { flex-direction: column; padding: 2.5rem 1.5rem; }
  .ap-kontakt-teaser { padding: 4rem 1.5rem; }
}
