/* styles-dhi.css
   Schlankes Design für Hypnose-Raum × DHI
   – ohne Frameworks, optimiert für gute Ladezeiten.
*/

:root {
  --color-primary: #1c4966;
  --color-secondary: #c48a2b;
  --color-bg: #f5f7fa;
  --color-surface: #ffffff;
  --color-text: #12212b;
  --color-muted: #6b7a8a;
  --color-border: #d5dde7;
  --shadow-soft: 0 10px 25px rgba(10, 31, 51, 0.1);
  --radius-large: 18px;
  --radius-medium: 12px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, sans-serif;
  background: radial-gradient(circle at top left, #e1e8f5 0, #f5f7fa 45%, #ffffff 100%);
  color: var(--color-text);
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom,
              rgba(245, 247, 250, 0.97),
              rgba(245, 247, 250, 0.94),
              rgba(245, 247, 250, 0.88));
  border-bottom: 1px solid rgba(213, 221, 231, 0.7);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1.5rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand-logo-pair {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .25rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(213, 221, 231, 0.95);
  background: linear-gradient(135deg, #ffffff, #f4f7fb);
  box-shadow: 0 6px 18px rgba(15, 34, 52, 0.08);
}

.brand-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.brand-logo-separator {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.brand-subline {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.brand-subline span:nth-child(1) {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.brand-subline span:nth-child(2) {
  font-size: .8rem;
  color: var(--color-text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .9rem;
}

.nav a {
  text-decoration: none;
  color: var(--color-muted);
  padding: .3rem .7rem;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .15s ease;
}

.nav a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.nav a.nav-cta {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(12, 61, 99, 0.4);
}

/* Hero */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .25rem .8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(213, 221, 231, 0.8);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.hero-kicker-dot {
  height: 7px;
  width: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe7c2, #c48a2b);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 1rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #c48a2b, #f0c674);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 34rem;
}

.hero-meta {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .8rem;
  font-size: .85rem;
}

.hero-meta-item span:first-child {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-muted);
  margin-bottom: .15rem;
}

.hero-meta-item span:last-child {
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #f6e3c0, #c48a2b);
  color: #1b1307;
  box-shadow: 0 12px 30px rgba(120, 74, 12, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  border-color: rgba(213, 221, 231, 0.9);
}

/* Hero Card rechts */

.hero-card {
  background: radial-gradient(circle at top left, #ffffff, #eaf0fb);
  border-radius: var(--radius-large);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(213, 221, 231, 0.9);
  font-size: .9rem;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: .4rem;
}

/* Sections */

.section {
  padding: 1.5rem 0 2.5rem;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: .4rem;
}

.section-title {
  font-size: 1.55rem;
  margin: 0 0 .5rem;
}

.section-text {
  max-width: 40rem;
  font-size: .95rem;
  color: var(--color-muted);
}

/* Grids / Cards */

.grid-2,
.grid-3 {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-medium);
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(213, 221, 231, 0.9);
  box-shadow: 0 8px 20px rgba(13, 36, 54, 0.06);
}

.card h3 {
  margin-top: 0;
  margin-bottom: .4rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: .9rem;
  color: var(--color-muted);
}

/* Testimonials */

.testimonial {
  font-size: .9rem;
  color: var(--color-muted);
  border-left: 3px solid var(--color-secondary);
  padding-left: .9rem;
  margin-bottom: 1rem;
}

/* Kontakt */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 2rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-medium);
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(213, 221, 231, 0.9);
  box-shadow: 0 10px 24px rgba(14, 32, 48, 0.08);
}

.contact-item-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--color-muted);
  margin-bottom: .15rem;
}

.contact-item-value {
  font-weight: 600;
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding: 1.3rem 0 1.6rem;
  background: rgba(8, 20, 32, 0.96);
  color: #d6deea;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.site-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .contact-layout,
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.3rem;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.9rem;
  }
}
