/* =========================================================
   Brühl Consulting – Styles
   Business-Look: Navy + Brühl-Weinrot als Akzent, Fira Sans
   ========================================================= */

/* ---------- Fira Sans (lokal, DSGVO-konform) ----------
   Schriftdateien liegen auf dem Server bereits unter
   /live/fonts/Fira/ – wir referenzieren sie relativ
   vom Consulting-Ordner aus mit ../fonts/Fira/.
   Lokal vorhandene Schnitte: 300, 400, 500, 700.
   --------------------------------------------------------- */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Fira Sans Regular'), local('FiraSans-Regular'),
       url('../fonts/Fira/fira-sans-v8-latin-regular.woff2') format('woff2'),
       url('../fonts/Fira/fira-sans-v8-latin-regular.woff')  format('woff');
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Fira Sans Medium'), local('FiraSans-Medium'),
       url('../fonts/Fira/fira-sans-v8-latin-500.woff2') format('woff2'),
       url('../fonts/Fira/fira-sans-v8-latin-500.woff')  format('woff');
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Fira Sans Bold'), local('FiraSans-Bold'),
       url('../fonts/Fira/fira-sans-v8-latin-700.woff2') format('woff2'),
       url('../fonts/Fira/fira-sans-v8-latin-700.woff')  format('woff');
}

:root {
  --c-navy:        #0F1B2D;
  --c-navy-soft:   #1B2A44;
  --c-text:        #1A1A1A;
  --c-text-muted:  #4A5568;
  --c-bg:          #FFFFFF;
  --c-bg-alt:      #F5F5F7;
  --c-bg-dark:     #0F1B2D;
  --c-border:      #E2E5EB;
  --c-accent:      #99181C;   /* Brühl-Weinrot */
  --c-accent-dark: #7A1316;

  --maxw: 1100px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 6px 24px rgba(15, 27, 45, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-navy);
  margin: 0 0 0.6em 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--c-accent);
  margin-bottom: 0.8em;
}

.lead {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  max-width: 60ch;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}
section.alt { background: var(--c-bg-alt); }
section.dark {
  background: var(--c-bg-dark);
  color: #E8ECF3;
}
section.dark h1,
section.dark h2,
section.dark h3 { color: #fff; }
section.dark .lead { color: #B8C2D4; }
section.dark .eyebrow { color: #FF9AA0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
.brand span { color: var(--c-accent); }
.brand-back {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand-back:hover {
  color: var(--c-accent);
  text-decoration: underline;
}
.nav a {
  color: var(--c-text);
  margin-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--c-accent); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn-outline:hover {
  background: var(--c-navy);
  color: #fff;
  text-decoration: none;
}
section.dark .btn-outline {
  color: #fff;
  border-color: #fff;
}
section.dark .btn-outline:hover {
  background: #fff;
  color: var(--c-navy);
}
.btn + .btn { margin-left: 0.6rem; }

/* ---------- Hero ---------- */
.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F7 100%);
}
.hero h1 {
  max-width: 18ch;
}
.hero .lead { font-size: 1.25rem; margin-bottom: 2rem; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 640px;
}
.hero-buttons .btn {
  flex: 1 1 180px;
  text-align: center;
  margin-left: 0;
}
@media (max-width: 520px) {
  .hero-buttons .btn { flex: 1 1 100%; }
}

/* Webinar-Anker-Banner direkt unter Hero / oben */
.webinar-banner {
  background: var(--c-navy);
  color: #fff;
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
}
.webinar-banner strong { color: #FFB4B8; }

/* ---------- Säulen-Grid (5 Karten) ---------- */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.card .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.95rem; color: var(--c-text-muted); margin: 0; }

/* ---------- Über-Mich-Block ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Team-Foto (Marion & Stefan, gemeinsames Porträt) */
.team-photo {
  margin: 0 0 2.5rem 0;
}
.team-photo img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}
.team-photo figcaption {
  margin-top: 0.9rem;
  max-width: 640px;
  font-size: 0.95rem;
}
.team-photo .name {
  display: block;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 1.05rem;
}
.team-photo .role {
  display: block;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}
.facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}
.facts li {
  padding: 0.6rem 0;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.facts li:last-child { border-bottom: 1px solid var(--c-border); }
.facts .label { color: var(--c-text-muted); }
.facts .value { font-weight: 700; color: var(--c-navy); }

/* ---------- Pakete / Preise ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.price-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--c-accent);
  position: relative;
}
.price-card.featured::before {
  content: "Empfohlener Einstieg";
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  background: var(--c-accent);
  color: #fff;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.price-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 1rem 0 0.25rem;
  line-height: 1;
}
.price-card .price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--c-text-muted);
  display: block;
  margin-top: 0.4rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}
.price-card ul li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  font-size: 0.95rem;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(45deg);
}
.price-card .btn { margin-top: auto; align-self: stretch; text-align: center; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-card {
  display: block;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255, 180, 184, 0.55);
  transform: translateY(-2px);
  text-decoration: none;
}
.contact-card .label {
  display: block;
  color: #B8C2D4;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.contact-card .value {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  word-break: break-word;
}
.contact-card:hover .value { color: #FFB4B8; }
/* Kontakt-Icons im gleichen Stil wie die 5-Saeulen-Icons:
   weinroter Vollkreis mit weissem SVG-Icon, Groesse 2,8rem */
.contact-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.1rem;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  box-shadow: none;
}
.contact-card .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* (Innere Links durch klickbare Karte ersetzt – siehe .contact-card oben) */
.contact-note {
  text-align: center;
  margin-top: 2rem;
  color: #B8C2D4;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A1320;
  color: #8A95A8;
  padding: 2rem 0;
  font-size: 0.9rem;
  text-align: center;
}
.site-footer a { color: #B8C2D4; margin: 0 0.6rem; }
.site-footer a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .nav { display: none; }   /* MVP: mobile nav später nachreichen */
  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .btn + .btn { margin-left: 0; margin-top: 0.6rem; display: block; }
}
