/* =============================================
   Tira Heilpraktiker-Praxis — Stylesheet
   Farben: Bordeaux #6D1A36, Grün #4F7942
   ============================================= */

/* --- CSS Reset & Basis --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bordeaux: #6D1A36;
  --bordeaux-dark: #4A0F24;
  --bordeaux-light: #8B2A4E;
  --green: #4F7942;
  --green-light: #6B9B5E;
  --green-dark: #3A5D32;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bordeaux);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--bordeaux-light);
}

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--bordeaux-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .8rem; }

p { margin-bottom: 1em; }

.lead {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 640px;
}

/* --- Layout-Helfer --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--white);
}

.section--bordeaux {
  background: var(--bordeaux);
  color: var(--white);
}
.section--bordeaux h2,
.section--bordeaux h3 {
  color: var(--white);
}

.section--green {
  background: var(--green);
  color: var(--white);
}

.section__label {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: .5rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__header .lead {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--bordeaux);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(109,26,54,.3);
}
.btn--primary:hover {
  background: var(--bordeaux-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(109,26,54,.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: var(--white);
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79,121,66,.3);
}
.btn--green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--small {
  padding: .6rem 1.4rem;
  font-size: .9rem;
}

/* --- Links in Bordeaux-Sektion --- */
.link-light {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-light:hover { color: var(--white); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(109,26,54,.08);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 1001;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--bordeaux);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bordeaux-dark);
  letter-spacing: -.01em;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: .2rem;
}

.main-nav a {
  display: block;
  padding: .5rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--bordeaux);
  background: rgba(109,26,54,.06);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bordeaux-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250,247,242,.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }

  .main-nav a {
    font-size: 1.3rem;
    padding: .8rem 2rem;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(79,121,66,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(79,121,66,.1);
  color: var(--green);
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(109,26,54,.06) 0%, rgba(79,121,66,.1) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::after {
  content: '🌿';
  font-size: 5rem;
  opacity: .3;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center: gap: .8rem;
}

.hero-floating-card .icon {
  width: 44px;
  height: 44px;
  background: rgba(79,121,66,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-floating-card .label {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-floating-card .value {
  font-weight: 700;
  color: var(--bordeaux-dark);
  font-size: .95rem;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-text { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-placeholder { max-width: 280px; margin: 0 auto; }
  .hero-floating-card { left: 50%; transform: translateX(-50%); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 2rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-item .icon {
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .trust-items { gap: 1.5rem; }
}

/* =============================================
   SERVICES / LEISTUNGEN
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(109,26,54,.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .95rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* =============================================
   ABOUT / ÜBER MICH
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(109,26,54,.06) 0%, rgba(79,121,66,.08) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '👩‍⚕️';
  font-size: 5rem;
  opacity: .25;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-quote {
  border-left: 3px solid var(--green);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-500);
  font-size: 1.05rem;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.credential-tag {
  background: rgba(79,121,66,.08);
  color: var(--green-dark);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image { max-width: 300px; margin: 0 auto; }
}

/* =============================================
   PROCESS / ABLÄUFE
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 56px;
  height: 56px;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 15px rgba(109,26,54,.25);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.process-step p {
  font-size: .93rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* =============================================
   CTA-Bereich
   ============================================= */
.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 1rem;
}

.cta-inner p {
  opacity: .9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   CONTACT / KONTAKT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: .3rem;
  margin-top: 1.5rem;
}
.contact-info h3:first-child { margin-top: 0; }

.contact-info p,
.contact-info a {
  color: var(--gray-500);
  font-size: .95rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: .8rem;
}

.contact-detail .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.opening-hours {
  width: 100%;
  margin-top: .5rem;
}

.opening-hours td {
  padding: .3rem 0;
  font-size: .93rem;
  color: var(--gray-500);
}

.opening-hours td:first-child {
  padding-right: 1.5rem;
  white-space: nowrap;
}

/* Kontaktformular */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-700);
  margin-bottom: .35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(109,26,54,.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: .3rem;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--gray-500);
}

.form-privacy input[type="checkbox"] {
  margin-top: .2rem;
  accent-color: var(--bordeaux);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   MAP PLACEHOLDER
   ============================================= */
.map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: .95rem;
  margin-top: 1.5rem;
  border: 1px solid var(--gray-200);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bordeaux-dark);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: .9rem;
  margin-top: .5rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1rem;
  font-family: inherit;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .4rem;
}

.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  padding: 1.5rem 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: .9rem;
  color: var(--gray-700);
  flex: 1;
  min-width: 250px;
}

.cookie-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* =============================================
   UTILITY
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- Scroll-margin für fixed header --- */
[id] {
  scroll-margin-top: 90px;
}
