/* =============================================
   ZEITBALANCE IVANA – style.css
   Farbpalette: Creme / Braun-Gold / Salbeigrün
   ============================================= */

:root {
  --cream:       #f5f0e8;
  --cream-dark:  #ede5d8;
  --brown:       #6b4c2a;
  --brown-light: #9a7050;
  --brown-mid:   #7a5a3a;
  --gold:        #c9a96e;
  --green:       #5a7a5a;
  --green-light: #7a9a6a;
  --text-dark:   #3d2b1a;
  --text-mid:    #5a4030;
  --text-light:  #8a7060;
  --white:       #ffffff;
  --shadow:      rgba(107, 76, 42, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 80% 10%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 90%, rgba(90, 122, 90, 0.07) 0%, transparent 55%);
}

/* ---- HEADER ---- */
.site-header {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: 20px 24px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { max-width: 680px; margin: 0 auto; }
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* ---- BADGES ---- */
.badges-section {
  padding: 28px 20px 12px;
  text-align: center;
}
.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge-btn {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 8px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}
.badge-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,169,110,0.35);
}

/* ---- SLOGAN ---- */
.slogan-section {
  padding: 28px 24px 16px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 500;
  font-style: italic;
  color: var(--brown-mid);
  line-height: 1.3;
  margin-bottom: 16px;
}
.intro-text {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.7;
  margin-bottom: 20px;
}
.intro-text strong {
  font-weight: 700;
  color: var(--green);
}
.divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.7;
}

/* ---- LEBENSSITUATIONEN ---- */
.situations-section {
  padding: 24px 24px 20px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.situations-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(14px, 3.2vw, 16px);
  font-weight: 400;
  color: var(--brown-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}
.situations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.situations-list li {
  font-size: clamp(13px, 2.8vw, 14px);
  color: var(--text-mid);
  line-height: 1.6;
}
.tilde {
  color: var(--gold);
  font-style: italic;
  margin: 0 4px;
}

/* ---- 3 ICONS ---- */
.icons-section {
  padding: 20px 20px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.icons-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(201,169,110,0.35);
  border-radius: 14px;
  padding: 18px 12px;
  gap: 8px;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.icon-item img {
  width: clamp(56px, 14vw, 80px);
  height: clamp(56px, 14vw, 80px);
  object-fit: contain;
}
.icon-item span {
  font-size: clamp(11px, 2.5vw, 13px);
  color: var(--brown-light);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.02em;
}
.icon-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,169,110,0.4);
  flex-shrink: 0;
}

/* ---- PORTRAIT ---- */
.portrait-section {
  padding: 28px 24px 20px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.portrait-wrap {
  display: inline-block;
  margin-bottom: 16px;
}
.portrait-img {
  width: clamp(200px, 55vw, 280px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.portrait-role {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portrait-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 6px;
  line-height: 1.2;
}
.portrait-tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

/* ---- CONTACT BUTTONS ---- */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--brown-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,76,42,0.28);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ---- FOOTER ---- */
.site-footer {
  margin-top: 32px;
  padding: 20px 24px 32px;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.25);
  background: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-link {
  background: none;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--brown-light);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
  padding: 0;
}
.footer-link:hover { text-decoration-color: var(--brown-light); }
.footer-sep { color: var(--gold); font-size: 13px; }
.footer-copy {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.03em;
}
.footer-powered {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}
.footer-powered a {
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-powered a:hover { color: var(--brown); text-decoration: underline; }

/* =============================================
   MODALS
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61, 43, 26, 0.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(61,43,26,0.2);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-legal {
  max-width: 620px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--cream); color: var(--brown); }

.modal-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
}
.modal-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.modal-icon-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-mid);
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}
.modal-hint {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

/* Legal modal content styling */
.modal-legal h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px !important;
  font-weight: 600;
  color: var(--brown-mid);
  margin: 20px 0 8px;
}
.modal-legal strong { color: var(--text-dark); }
.modal-legal p, .modal-legal div {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}
.modal-legal ul {
  padding-left: 20px;
  margin: 8px 0;
}
.modal-legal ul li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 4px;
}
.modal-legal a { color: var(--brown-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
  .site-header { padding: 16px; }
  .logo { max-width: 240px; }
  .badges { gap: 8px; }
  .badge-btn { font-size: 12px; padding: 7px 16px; }
  .icons-box { padding: 14px 8px; }
  .modal-box { padding: 24px 18px 20px; border-radius: 12px; }
  .contact-buttons { max-width: 100%; }
  .btn { font-size: 13px; padding: 12px 20px; }
}
