/* ===== HypnoZoom – Stylesheet (Teal-Edition) ===== */
:root {
  --teal:         #5B9DAD;
  --teal-dark:    #3d7a8a;
  --teal-light:   #7AB5C4;
  --teal-pale:    #edf5f7;
  --slate:        #1e2a30;
  --slate-mid:    #2d3b42;
  --text:         #2d3b42;
  --gray:         #6b7c83;
  --light-gray:   #f4f7f9;
  --white:        #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(6px);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(30,42,48,0.97);
  box-shadow: 0 1px 16px rgba(0,0,0,0.25);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
nav.scrolled .nav-links a { color: var(--white); opacity: 0.7; }
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--teal-light); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--teal-light); opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
nav.scrolled .nav-toggle span { background: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--slate) url('images/neuronen-background.gif') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(30,42,48,0.60) 0%,
    rgba(30,42,48,0.35) 50%,
    rgba(30,42,48,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
  max-width: 760px;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 3rem;
  transform: translateX(-80px);
}
.hero-icon-img {
  height: 280px;
  width: auto;
  flex-shrink: 0;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.hero-brand-name {
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-brand-sub {
  font-size: 1.85rem;
  color: var(--teal-light);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0.6rem;
  font-weight: 300;
}

.hero-quote {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero-quote em {
  font-style: normal;
  color: var(--teal-light);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.hero-scroll {
  margin-top: 2.5rem;
  display: inline-block;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.45);
  font-size: 1.8rem;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===== SECTION INNER ===== */
.section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1.8rem;
  display: block;
}

/* ===== ANGEBOT ===== */
.angebot {
  background: var(--white);
  padding: 7rem 2rem;
  text-align: center;
}
.angebot-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(45,59,66,0.85);
}
.angebot-text p { margin-bottom: 1.2rem; }
.angebot-text p:last-child { margin-bottom: 0; }
.angebot-text strong { color: var(--text); font-weight: 600; }

/* ===== THEMEN ===== */
.themen {
  background: var(--light-gray);
  padding: 6rem 2rem;
  text-align: center;
}
.themen h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.themen-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.themen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}
.thema-item {
  background: var(--white);
  border-top: 3px solid var(--teal);
  padding: 1.5rem 1.2rem;
  text-align: left;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
}
.thema-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 400;
  margin-top: 0.3rem;
}

/* ===== ERFAHRUNGEN ===== */
.erfahrungen {
  background: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}
.erfahrungen h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3rem;
}
.erfahrungen-liste {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.erfahrung-item {
  font-style: italic;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}
.erfahrung-item span {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--teal);
  margin-left: 0.4em;
}

/* ===== PERSON ===== */
.person {
  background: var(--slate);
  padding: 0;
}
.person-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  min-height: 55vh;
}
.person-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.person-text .section-eyebrow { color: var(--teal-light); }
.person-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.person-text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.person-photo {
  position: relative;
  overflow: hidden;
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.65rem 1.6rem;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal-light);
  color: var(--teal-light);
}
.btn-outline:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ===== INVITATION ===== */
.invitation {
  background: var(--slate);
  color: var(--white);
  padding: 8rem 2rem;
  text-align: center;
}
.invitation-text {
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}
.invitation-text strong { color: var(--teal-light); font-weight: 600; }
.contact-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.contact-row a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.22);
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.contact-row a:hover { border-color: var(--teal-light); color: var(--teal-light); }
.praxis-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: #131d21;
  color: rgba(255,255,255,0.38);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
}
footer a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--teal-light); }
.footer-logo { margin-bottom: 1.2rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.6rem; }
.footer-parent { margin-bottom: 0.4rem; font-size: 0.8rem; }

/* ===== ZERTIFIZIERUNGEN ===== */
.certifications {
  margin-bottom: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cert-label {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 1.2rem;
}
.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.cert-item {
  background: rgba(255,255,255,0.93);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  overflow: hidden;
}
.cert-item:hover { opacity: 0.82; transform: translateY(-2px); }
.cert-item img {
  height: 62px;
  width: auto;
  display: block;
}
/* SBVH Banner: crop white space at bottom via object-fit */
.cert-item-sbvh {
  padding: 0;
}
.cert-item-sbvh img {
  width: 220px;
  height: 72px;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 600px) {
  .cert-logos { gap: 1rem; }
  .cert-item-sbvh img { width: 180px; height: 60px; }
  .cert-item img { height: 52px; }
}

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--slate) url('images/neuronen-background.gif') center/cover no-repeat;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,48,0.62);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
}
.page-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}
.page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.page-title span { font-weight: 300; color: rgba(255,255,255,0.68); }

/* ===== CONTENT SECTIONS (Unterseiten) ===== */
.content-section {
  padding: 6rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.content-section p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.content-section strong { color: var(--text); }

.content-warm {
  background: var(--teal-pale);
  padding: 5rem 2rem;
  text-align: center;
}
.content-warm p {
  max-width: 680px;
  margin: 0 auto 1.2rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
}
.content-warm strong { color: var(--teal-dark); font-weight: 600; }

/* ===== PRAXISRAUM FOTO ===== */
.praxisraum-foto {
  margin: 0 auto;
  padding: 0 2rem 4rem;
  max-width: 860px;
  box-sizing: border-box;
  position: relative;
}
.praxisraum-foto .foto-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.praxisraum-foto img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 520px;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.5s ease;
}
.praxisraum-foto .foto-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 110, 107, 0.35);
  mix-blend-mode: multiply;
  border-radius: 10px;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.praxisraum-foto .foto-wrap:hover::after {
  opacity: 0.15;
}
.praxisraum-foto .foto-wrap:hover img {
  filter: grayscale(0%) brightness(0.95);
}
.praxisraum-foto figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.9rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ===== DIPLOM ===== */
.diplom-section {
  background: var(--slate);
  padding: 4.5rem 2rem;
  text-align: center;
}
.diplom-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.diplom-text {
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
  font-size: 0.95rem;
}
.diplom-text strong { color: rgba(255,255,255,0.85); }
.diplom-wrap {
  max-width: 180px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  transition: max-width 0.5s ease, box-shadow 0.4s ease, transform 0.4s ease;
  cursor: zoom-in;
}
.diplom-wrap:hover {
  max-width: 680px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  transform: translateY(-4px);
  cursor: zoom-out;
}
.diplom-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .diplom-section { padding: 3rem 1.2rem; }
  .diplom-wrap { max-width: 100%; }
}

/* ===== PREIS CARDS ===== */
.preis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.preis-card {
  background: var(--light-gray);
  border-top: 3px solid var(--teal);
  padding: 2rem;
}
.preis-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.preis-card .preis {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 0.8rem;
}
.preis-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== ABLAUF STEPS ===== */
.ablauf-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.step-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text);
}
.step-body p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}

/* ===== KONTAKT BUTTON ===== */
.btn-kontakt {
  color: rgba(255,255,255,0.8);
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-kontakt:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* ===== KONTAKT POPUP ===== */
#kontakt-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,25,30,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#kontakt-overlay.open { display: flex; }

.kontakt-modal {
  background: var(--white);
  max-width: 520px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  border-top: 4px solid var(--teal);
  animation: modalIn 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kontakt-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
}
.kontakt-close:hover { color: var(--text); }
.kontakt-modal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.kontakt-hint {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.kontakt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.kontakt-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.kontakt-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.35rem;
}
.kontakt-field input,
.kontakt-field textarea {
  border: 1px solid #d0dde0;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--light-gray);
  transition: border-color 0.2s;
  resize: vertical;
}
.kontakt-field input:focus,
.kontakt-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.kontakt-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.kontakt-submit:hover { background: var(--teal-dark); }

.kontakt-bestaetigung {
  text-align: center;
  padding: 2rem 1rem;
}
.kontakt-bestaetigung .check-icon {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 1rem;
}
.kontakt-bestaetigung h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.kontakt-bestaetigung p {
  color: var(--text-muted, #aaa);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.kontakt-bestaetigung .btn-schliessen {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.kontakt-bestaetigung .btn-schliessen:hover { background: var(--teal-dark); }

@media (max-width: 540px) {
  .kontakt-row { grid-template-columns: 1fr; }
  .kontakt-modal { padding: 2rem 1.5rem; }
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { overflow: hidden; }
  .hero-logo-wrap {
    transform: translateX(0);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .hero-icon-img { height: 120px; }
  .hero-brand { align-items: center; text-align: center; }
  .hero-brand-name { font-size: 2.8rem; }
  .hero-brand-sub { font-size: 1.2rem; letter-spacing: 0.08em; }
  .hero-content { padding: 2rem 1.5rem; }
  .person-inner {
    grid-template-columns: 1fr;
  }
  .person-photo { height: 50vh; }
  .person-text { padding: 3rem 2rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(30,42,48,0.98);
    padding: 1rem 2rem 2rem;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }
  .nav-links a { color: var(--white) !important; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .ablauf-step { flex-direction: column; gap: 1rem; }
}
