@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Roboto+Slab:wght@300;400;700&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ===================== VARIABLES ===================== */
:root {
  --red:      #c0392b;
  --red-dark: #a93226;
  --dark:     #1a1a1a;
  --dark2:    #2c2c2c;
  --white:    #ffffff;
  --offwhite: #f5f5f5;
  --grey:     #888888;
  --grey-light: #cccccc;
  --text:     #333333;
  --border:   rgba(255,255,255,0.15);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===================== UTILITY ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  transition: all 0.25s;
  border-radius: 0;
}
.btn--red  { background: var(--red);   color: var(--white); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--dark); }

/* ===================== NAVIGATION ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--red);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav__logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* Social icons in nav */
.nav__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px;
}
.nav__social a {
  color: var(--white);
  font-size: 17px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav__social a:hover { opacity: 1; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}
.nav__links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0 16px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  background: rgba(0,0,0,0.2);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../kontakt_web.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
/* Diagonal dark overlay – left side lighter, right side very dark */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.68) 45%,
    rgba(10,10,10,0.92) 58%,
    rgba(10,10,10,0.97) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding: 5rem 0;
}

/* Text side */
.hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero__title {
  font-family: 'Roboto', sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero__tags {
  list-style: none;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__tags li {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero__divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1.25rem 0 1.5rem;
  border: none;
}
.hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Video side */
.hero__video { position: relative; }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===================== ÜBER MICH ===================== */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}
.about__image {
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about__subtitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about__title {
  font-family: 'Roboto Slab', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
/* "Über mich" label: kursiv, rot wie im Original */
.about__label {
  font-family: 'Amiri', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1rem;
  display: block;
}
/* section-title in about: rot, groß wie im Original */
.about .section-title,
.about__text .section-title {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.about__text p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ===================== ZITAT ===================== */
.quote-section { background: var(--offwhite); padding: 4rem 0; text-align: center; }
.site-quote {
  font-family: 'Amiri', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  border: none;
  padding: 0;
}
.site-quote__author {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0;
  text-transform: none;
}

/* ===================== SERVICES (4 icons) ===================== */
.services { background: var(--white); padding: 4rem 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  background: var(--dark);
  border: none;
  color: var(--white);
  transition: background 0.2s;
  cursor: pointer;
}
.service-card:hover { background: #2a2a2a; }
.service-card:hover .service-card__icon { color: var(--red); }
.service-card:hover h5 { color: var(--white); }

.service-card__icon {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 1.25rem;
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.service-card h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  transition: color 0.2s;
}

/* ===================== REFERENZEN ===================== */
.references {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.references::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/Personaldiagnostik-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.references::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(30, 25, 20, 0.82);
  z-index: 1;
}
.references .container { position: relative; z-index: 2; }
.references__title {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}
.references__divider {
  width: 60px;
  height: 2px;
  background: var(--red);
  border: none;
  margin: 0 auto 3rem;
}

.testimonial-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 3.5rem;
}
.testimonial-track { position: relative; min-height: 260px; }
.testimonial-slide { display: none; }
.testimonial-slide.active {
  display: block;
  animation: tFadeIn 0.4s ease;
}
@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial__text {
  font-family: 'Amiri', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  text-align: center;
}
.testimonial__cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-style: normal;
}
.testimonial__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial__role {
  font-size: 12px;
  color: var(--grey-light);
  font-weight: 300;
}

.testimonial-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.testimonial-btn:hover { border-color: var(--red); background: var(--red); }
.testimonial-btn--prev { left: -64px; }
.testimonial-btn--next { right: -64px; }

.testimonial-dots {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.testimonial-dot.active { background: var(--red); }

/* ===================== CTA + KONTAKT ===================== */
.cta-contact {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.cta-contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/kontakt_web.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-contact::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,10,10,0.78);
  z-index: 1;
}
.cta-contact .container { position: relative; z-index: 2; }
.cta-contact__divider {
  width: 60px; height: 2px;
  background: var(--red); border: none;
  margin: 0 auto 2rem;
}
.cta-contact__title {
  font-family: 'Roboto Slab', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}
.cta-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.cta-contact__name {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cta-contact__heading {
  font-family: 'Roboto Slab', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta-contact__sub-divider {
  width: 40px; height: 2px;
  background: var(--red); border: none;
}

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 12px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.contact__form input:focus,
.contact__form textarea:focus { border-color: var(--red); }
.contact__form textarea { height: 110px; resize: vertical; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark2);
  border-top: 3px solid var(--red);
  padding: 2rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.75rem;
}
.footer__circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.footer__name {
  font-size: 16px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer__tagline { font-size: 13px; color: var(--grey); font-weight: 300; margin-bottom: 1rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { color: var(--grey-light); font-size: 16px; transition: color 0.2s; }
.footer__social a:hover { color: var(--red); }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer__links a { color: var(--grey-light); font-size: 13px; font-weight: 300; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 12px; color: var(--grey); font-weight: 300; }
.footer__legal { display: flex; gap: 1.5rem; list-style: none; }
.footer__legal a { font-size: 12px; color: var(--grey); transition: color 0.2s; }
.footer__legal a:hover { color: var(--white); }

/* ===================== PAGE HEROES ===================== */
.page-hero {
  background: var(--dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.6) 0%, rgba(192,57,43,0.25) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; display: block;
}
.page-hero h1 {
  font-family: 'Roboto Slab', serif; font-size: 46px; font-weight: 300;
  color: var(--white); line-height: 1.15;
}
.page-hero p {
  font-size: 15px; color: rgba(255,255,255,0.65);
  margin-top: 1rem; max-width: 580px; font-weight: 300; line-height: 1.8;
}

/* ===================== CONTENT PAGES ===================== */
.page-content { padding: 5rem 0; }
.page-content h2 {
  font-family: 'Roboto Slab', serif; font-size: 28px; font-weight: 300;
  color: var(--dark); margin-bottom: 1rem; margin-top: 2.5rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 1rem; font-weight: 300; }
.page-content ul { list-style: none; margin: 1rem 0 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.page-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: #555; line-height: 1.7; font-weight: 300;
}
.page-content ul li::before {
  content: ''; width: 18px; height: 2px;
  background: var(--red); flex-shrink: 0; margin-top: 12px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.35s; }
.fade-up-4 { animation-delay: 0.5s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero__title { font-size: 40px; }
  .nav__links a { padding: 0 10px; font-size: 12px; }
}

@media (max-width: 900px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__video    { display: none; }
  .hero__title    { font-size: 36px; }
  .about__inner   { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .cta-contact__grid { grid-template-columns: 1fr; }
  .two-col        { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr; }
  .nav__links     { display: none; }
  .nav__toggle    { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--red); padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.2); gap: 0;
    z-index: 199;
  }
  .nav__links.open a { height: 48px; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .testimonial-btn--prev { left: -14px; }
  .testimonial-btn--next { right: -14px; }
  .contact__row   { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__title    { font-size: 30px; }
  .page-hero h1   { font-size: 30px; }
}
