@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f6f2;
  --white: #ffffff;
  --text: #232323;
  --muted: #555;
  --dark: #001d2c;
  --gold: #c5a66d;
  --gold-hover: #d3b171;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  height: 34px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--dark);
  cursor: pointer;
}

/* =========================
   REUSABLE
========================= */

.content-section,
.section-inner,
.hero-inner,
.footer-content,
.contact {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.content-section {
  padding: 5.5rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.text-block h2,
.coaching h2,
.testimonials-quote h2,
.contact h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
  letter-spacing: 0.01em;
}

.text-block h2 {
  color: var(--gold);
}

.text-block p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.04rem;
}

.text-block .lead {
  font-size: 1.15rem;
  font-weight: 600;
}

.image-block img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.custom-list {
  margin: 1rem 0 1.4rem;
  padding-left: 1.2rem;
}

.custom-list li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gold);
  color: var(--white);
  width: fit-content;
  margin: 0 auto;
}

.btn-secondary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* =========================
   TORN PAPER EFFECT
========================= */

.tear-section {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.tear-top::before,
.tear-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 68px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

/* Unten */
.tear-bottom::after {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f6f2' d='M0,21 L29,23 L56,31 L83,34 L109,46 L137,49 L165,60 L194,63 L224,72 L257,74 L289,73 L323,80 L359,82 L396,84 L434,87 L472,89 L509,91 L548,103 L587,104 L625,108 L663,107 L700,109 L737,108 L774,110 L811,106 L847,95 L883,80 L919,68 L955,72 L992,69 L1029,67 L1067,64 L1104,59 L1141,61 L1178,58 L1215,55 L1251,49 L1288,53 L1324,50 L1361,48 L1396,43 L1440,29 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
}

/* Oben */
.tear-top::before {
  top: -1px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f6f2' d='M0,60 L35,65 L70,78 L110,85 L150,95 L190,88 L230,75 L270,82 L310,92 L350,98 L390,94 L430,100 L470,102 L510,108 L550,112 L590,118 L630,115 L670,117 L710,113 L750,95 L790,110 L830,96 L870,88 L910,78 L950,82 L990,76 L1030,74 L1070,70 L1110,66 L1150,69 L1190,65 L1230,62 L1270,58 L1310,60 L1350,57 L1390,54 L1440,48 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
}

/* =========================
   HERO
========================= */

#hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0 8rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  width: min(420px, 80%);
  height: auto;
  margin: 0 auto 1.4rem;
  display: block;
}

#hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 1.05;
  color: var(--white);
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
   ABOUT / TARGET
========================= */

.about,
.target {
  background: var(--bg);
}

/* =========================
   COACHING
========================= */

.coaching {
  padding: 7.5rem 0;
  text-align: center;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.coaching h2,
.testimonials-quote h2,
.contact h2 {
  color: var(--white);
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.coaching-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  width: min(100%, 340px);
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card h3 {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 1.35rem;
}

.card p {
  margin: 0 0 1.6rem;
  color: var(--text);
}

.card .btn-secondary {
  margin-top: auto;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-quote {
  padding: 7rem 0;
}

.tq-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.tq-slider {
  position: relative;
  min-height: 180px;
  padding: 0 56px;
}

.tq-item {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tq-item.active {
  display: block;
  opacity: 1;
}

.tq-bubble {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  color: var(--text);
  border-radius: 18px;
  padding: 1.4rem 1.8rem;
  font-size: 1.08rem;
  line-height: 1.65;
  box-shadow: var(--shadow);
  position: relative;
}

.tq-bubble::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50px;
  width: 24px;
  height: 24px;
  background: var(--bg);
  transform: rotate(45deg);
}

.tq-cite {
  margin-top: 1rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.tq-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  color: var(--gold);
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 3;
}

.tq-prev {
  left: 0;
}

.tq-next {
  right: 0;
}

/* =========================
   FOOTER / CONTACT
========================= */

.footer {
  padding: 6.5rem 0 2rem;
  background: var(--dark);
  color: var(--white);
}

.contact {
  text-align: center;
  margin-bottom: 3rem;
}

.contact h2 {
  color: var(--gold);
}

.contact p {
  max-width: 720px;
  margin: 0 auto 1.4rem;
  color: rgba(255, 255, 255, 0.86);
}

.footer-content {
  border-top: 1px solid rgba(197, 166, 109, 0.5);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-info p {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-info strong {
  color: var(--gold);
}

.footer-info a,
.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-info a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-bottom {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 2rem auto 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* =========================
   COOKIE BANNER
========================= */

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 90%;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  z-index: 9999;
  font-size: 0.95rem;
}

#cookie-banner p {
  margin: 0;
  color: #333;
}

#cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

#cookie-accept {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

#cookie-accept:hover {
  background: var(--gold-hover);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    display: none;
    gap: 1rem;
  }

  .nav-links.showing {
    display: flex;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .text-block,
  .coaching,
  .contact,
  .footer-content {
    text-align: center;
  }

  .image-block img {
    margin: 0 auto;
    max-width: 360px;
  }

  .custom-list {
    text-align: left;
    display: inline-block;
  }

  .tear-top::before,
  .tear-bottom::after {
    height: 50px;
  }

  #hero {
    min-height: 62vh;
    padding: 4rem 0 6rem;
  }

  .coaching,
  .testimonials-quote,
  .footer {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .footer-content {
    align-items: center;
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 700px) {
  .tq-slider {
    padding: 0 18px 70px;
  }

  .tq-arrow {
    top: auto;
    bottom: 0;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .tq-prev {
    left: calc(50% - 58px);
  }

  .tq-next {
    right: calc(50% - 58px);
  }

  .tq-bubble::after {
    left: 28px;
  }
}

@media (max-width: 600px) {
  .content-section {
    padding: 4rem 0;
  }

  .tear-top::before,
  .tear-bottom::after {
    height: 34px;
  }

  #hero {
    padding: 3.4rem 0 4.8rem;
  }

  .hero-logo {
    width: min(300px, 78%);
  }

  #hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.6rem 1.2rem;
  }

  .text-block h2,
  .coaching h2,
  .testimonials-quote h2,
  .contact h2 {
    font-size: 1.85rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  #cookie-banner {
    width: 92%;
    padding: 1rem;
  }
}