/* ══════════════════════════════════════════
   UPGRADE CLUB — style.css
   Einheitlicher Außenabstand: --pad-x
   ══════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --pad-x: 80px;        /* Einheitlicher Links/Rechts-Abstand für ALLE Sektionen */
  --pad-y: 96px;        /* Einheitlicher Oben/Unten-Abstand für Content-Sektionen */
  --border-dark: 20px solid #28161B;
  --color-dark: #28161B;
  --color-pink: #FF007A;
  --color-blue: #2323FF;
  --color-white: #fff;
  --color-cream: #FFF8F7;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'IBM Plex Sans', sans-serif; background: #fff; color: var(--color-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: 'IBM Plex Sans', sans-serif; cursor: pointer; border: none; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  width: 100%;
  padding: 24px var(--pad-x);   /* vorher 32px — jetzt 80px */
  background: var(--color-white);
  border-bottom: 4px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.nav-links a {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
  color: #000;
  transition: border-bottom .15s;
}
.nav-links a.active,
.nav-links a:hover { padding-bottom: 4px; border-bottom: 4px solid #000; }

/* ─── HERO ─── */
.hero {
  width: 100%;
  background: var(--color-pink);
  border-bottom: var(--border-dark);
  padding: 100px var(--pad-x) 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  padding: 4px 16px;
  background: var(--color-dark);
  width: fit-content;
}
.hero-tag span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 28px;
  letter-spacing: 2px;
}
.hero-headline {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.09;
}
.hero-headline .w { color: #fff; }
.hero-headline .b { color: #000; }
.hero-bottom {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding-top: 16px;
  flex-wrap: wrap;
}
.hero-card {
  flex: 1;
  max-width: 660px;
  padding: 24px 28px 24px 24px;
  background: #fff;
  box-shadow: 8px 8px 0 #000;
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
}
.hero-card p {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.12;
  color: #000;
}
.hero-cta {
  padding: 32px 48px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s;
  flex: 0 0 auto;
  align-self: flex-start;
  white-space: nowrap;
}
.hero-cta:hover { opacity: .85; }
.hero-cta span {
  color: #FFE1E6;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 36px;
  white-space: nowrap;
}
.fab {
  position: absolute;
  right: var(--pad-x);
  bottom: 40px;
  width: 72px;
  height: 72px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--color-pink);
  transition: transform .2s;
}
.fab:hover { transform: translateY(-3px); }
.fab-icon { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }

/* ─── FRÜHBUCHER ─── */
.sec-frueh {
  width: 100%;
  background: var(--color-white);
  border-bottom: var(--border-dark);
  padding: var(--pad-y) var(--pad-x);
}
.frueh-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 48px;
  flex-wrap: wrap;
  /* kein max-width → Spalten nutzen die volle Breite innerhalb des Paddings */
}
.frueh-left {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.frueh-badge {
  color: var(--color-pink);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 16px;
}
.frueh-title {
  color: var(--color-dark);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 24px;
}
.frueh-sub {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.frueh-discount {
  color: var(--color-dark);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.12;
}
.frueh-right { flex: 1; min-width: 300px; display: flex; flex-direction: column; }

/* ─── FORM PANEL (shared) ─── */
.form-panel {
  flex: 1;
  padding: 40px;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-panel h3 {
  color: var(--color-cream);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.form-fields { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
}
.form-group input { height: 56px; }
.form-group textarea { height: 128px; resize: none; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: #D4FF00;
  border: none;
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 28px;
  font-family: 'IBM Plex Sans', sans-serif;
  cursor: pointer;
  transition: opacity .2s;
}
.form-submit:hover { opacity: .85; }

/* ─── WORKSHOPS — BENTO GRID ─── */
.sec-workshops {
  width: 100%;
  background: var(--color-blue);
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ws-header {
  border-bottom: 8px solid #fff;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.ws-header h2 {
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.ws-sub {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  opacity: .5;
}
/* Bento: 2 Karten oben (je 50%) + 3 Karten unten (je 33%) */
.ws-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ws-bento .ws-card:nth-child(1),
.ws-bento .ws-card:nth-child(2) { grid-column: span 3; min-height: 500px; }
.ws-bento .ws-card:nth-child(3),
.ws-bento .ws-card:nth-child(4),
.ws-bento .ws-card:nth-child(5) { grid-column: span 2; min-height: 420px; }

.ws-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ws-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.ws-num { font-size: 60px; font-weight: 700; line-height: 60px; }
.ws-icon-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.ws-icon-white { filter: brightness(0) invert(1); }
.ws-card-bottom { display: flex; flex-direction: column; gap: 16px; }
.ws-title-big { font-size: 48px; font-weight: 700; text-transform: uppercase; line-height: 1; }
.ws-title-sm  { font-size: 30px; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.ws-desc { font-size: 18px; font-weight: 400; text-transform: uppercase; line-height: 28px; }
.ws-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top-width: 4px;
  border-top-style: solid;
}
.ws-link-text { font-size: 24px; font-weight: 700; text-transform: uppercase; line-height: 32px; }
.ws-arrow { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.ws-dot { width: 16px; height: 16px; }

/* Card-Farben */
.ws-green  { background: #2CFF05; }
.ws-red    { background: #FF0004; }
.ws-orange { background: #FF5C00; }
.ws-yellow { background: #D4FF00; position: relative; overflow: hidden; }
.ws-dark   { background: transparent; outline: 4px solid #fff; outline-offset: -4px; }

.ws-yellow-deco {
  position: absolute;
  width: 192px; height: 158px;
  right: 32px; bottom: 80px;
  opacity: .2;
  background: var(--color-dark);
  pointer-events: none;
}
.ws-footer-price p {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 36px;
}

/* ─── SOLO MARKETING SYSTEM ─── */
.sec-solo {
  width: 100%;
  background: var(--color-white);
  border-top: var(--border-dark);
  border-bottom: var(--border-dark);
  padding: var(--pad-y) var(--pad-x);
}
.solo-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.solo-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-dark);
}
.solo-headline .pink { color: var(--color-pink); }
.solo-cols { display: flex; gap: 0; align-items: stretch; flex-wrap: wrap; }
.solo-col-left { flex: 1; min-width: 300px; }
.solo-col-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 32px;
}
.solo-white-card {
  height: 100%;
  padding: 40px;
  background: #fff;
  box-shadow: 8px 8px 0 #313C00;
  outline: 4px solid var(--color-dark);
  outline-offset: -4px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.solo-white-card h3 {
  color: var(--color-dark);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
}
.solo-list { display: flex; flex-direction: column; gap: 24px; }
.solo-item { display: flex; align-items: flex-start; gap: 16px; }
.solo-bullet-icon { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; margin-top: 4px; }
.solo-item span { color: var(--color-dark); font-size: 24px; font-weight: 700; line-height: 32px; }
.solo-pink-box {
  padding: 40px;
  background: var(--color-pink);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solo-pink-box h3 { color: var(--color-cream); font-size: 36px; font-weight: 700; text-transform: uppercase; line-height: 40px; }
.solo-price-label { color: #fff; font-size: 20px; font-weight: 700; text-transform: uppercase; line-height: 28px; }
.solo-price-big { color: #fff; font-size: clamp(56px, 7vw, 96px); font-weight: 700; line-height: 1; }
.solo-price-old { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; line-height: 20px; opacity: .8; }
.solo-tagline {
  padding: 24px;
  background: #fff;
  box-shadow: 8px 8px 0 #313C00;
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 30px;
}
.solo-cta {
  width: 100%;
  padding: 24px 48px;
  background: var(--color-pink);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  text-align: center;
  transition: opacity .2s;
  display: block;
}
.solo-cta:hover { opacity: .85; }

/* ─── INTENSIV ─── */
.sec-intensiv {
  width: 100%;
  background: #FF5C00;
  padding: var(--pad-y) var(--pad-x);
}
.intensiv-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.intensiv-headline {
  color: var(--color-dark);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.intensiv-desc {
  padding: 40px;
  background: #fff;
  box-shadow: 8px 8px 0 #000;
}
.intensiv-desc p {
  color: #000;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.22;
}
.intensiv-cols { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.int-col-left {
  flex: 1; min-width: 300px;
  display: flex; flex-direction: column; gap: 32px;
}
.int-col-right {
  flex: 1; min-width: 300px;
  display: flex; flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
}
.int-price-box {
  padding: 32px;
  background: #2CFF05;
  box-shadow: 8px 8px 0 #000;
  display: flex; flex-direction: column; gap: 8px;
}
.int-price-box h4 {
  color: #000; font-size: 30px; font-weight: 700;
  text-transform: uppercase; line-height: 36px; margin-bottom: 4px;
}
.int-price-main { color: #000; font-size: 20px; font-weight: 700; line-height: 32px; }
.int-price-extra { color: #000; font-size: 16px; font-weight: 400; line-height: 24px; }
.int-included {
  padding: 32px; background: #fff;
  display: flex; flex-direction: column; gap: 24px;
}
.int-included h4 {
  color: var(--color-dark); font-size: 30px; font-weight: 700;
  text-transform: uppercase; line-height: 36px;
}
.int-list { display: flex; flex-direction: column; gap: 12px; }
.int-item { display: flex; align-items: center; gap: 12px; }
.int-bullet-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.int-item span { color: var(--color-dark); font-size: 18px; font-weight: 700; line-height: 28px; }
.int-forwhom { display: flex; flex-direction: column; gap: 24px; }
.int-forwhom h4 {
  color: var(--color-dark); font-size: 30px; font-weight: 700;
  text-transform: uppercase; line-height: 36px;
  border-bottom: 4px solid var(--color-dark);
  padding-bottom: 16px;
}
.int-fw-list { display: flex; flex-direction: column; gap: 16px; }
.int-fw-item { display: flex; align-items: flex-start; gap: 12px; }
.int-fw-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; margin-top: 4px; }
.int-fw-item span { color: var(--color-dark); font-size: 20px; font-weight: 700; line-height: 28px; }
.int-btns { display: flex; flex-direction: column; gap: 16px; }
.btn-dark {
  width: 100%; padding: 20px;
  background: var(--color-dark);
  box-shadow: 8px 8px 0 #000;
  outline: 4px solid var(--color-dark); outline-offset: -4px;
  color: #FFE1E6; font-size: 20px; font-weight: 700;
  text-transform: uppercase; line-height: 28px;
  font-family: 'IBM Plex Sans', sans-serif; cursor: pointer; border: none;
  transition: opacity .2s;
}
.btn-dark:hover { opacity: .85; }
.btn-outline {
  width: 100%; padding: 20px;
  background: transparent;
  box-shadow: 8px 8px 0 #000;
  outline: 4px solid var(--color-dark); outline-offset: -4px;
  color: var(--color-dark); font-size: 20px; font-weight: 700;
  text-transform: uppercase; line-height: 28px;
  font-family: 'IBM Plex Sans', sans-serif; cursor: pointer; border: none;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--color-dark); color: #fff; }

/* ─── KONTAKT ─── */
.sec-kontakt {
  width: 100%;
  background: var(--color-white);
  border-top: var(--border-dark);
  border-bottom: var(--border-dark);
  padding: var(--pad-y) var(--pad-x);
}
.kontakt-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 64px;
  flex-wrap: wrap;
}
.kontakt-left { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 32px; }
.kontakt-title {
  color: var(--color-dark); font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; text-transform: uppercase; line-height: 1.12;
}
.kontakt-sub { color: var(--color-dark); font-size: 20px; font-weight: 400; line-height: 28px; }
.kontakt-loc {
  padding: 32px; background: #fff;
  box-shadow: 8px 8px 0 #313C00;
  display: flex; flex-direction: column; gap: 16px;
}
.kontakt-loc h4 {
  color: var(--color-dark); font-size: 30px; font-weight: 700;
  text-decoration: underline; text-transform: uppercase; line-height: 36px;
}
.kontakt-loc p { color: var(--color-dark); font-size: 20px; font-weight: 700; text-transform: uppercase; line-height: 28px; }
.kontakt-right { flex: 1; min-width: 300px; display: flex; flex-direction: column; }

/* ─── FOOTER ─── */
footer {
  width: 100%;
  background: var(--color-pink);
  padding: 64px var(--pad-x);  /* vorher 40px — jetzt 80px */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-brand { color: #fff; font-size: 20px; font-weight: 700; text-transform: uppercase; line-height: 28px; }
.footer-copy { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; line-height: 20px; letter-spacing: 1.4px; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-links a { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; line-height: 20px; letter-spacing: 1.4px; transition: opacity .2s; }
.footer-links a:hover { opacity: .75; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  :root { --pad-x: 48px; }
  .frueh-inner, .kontakt-inner { flex-direction: column; }
  .solo-cols { flex-direction: column; }
  .solo-col-right { padding-left: 0; }
  .intensiv-cols { flex-direction: column; }
  .ws-bento { grid-template-columns: repeat(2, 1fr); }
  .ws-bento .ws-card:nth-child(n) { grid-column: span 1; min-height: 420px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 24px; --pad-y: 64px; }
  .nav-links { gap: 12px; flex-wrap: wrap; }
  .hero { padding: 56px var(--pad-x) 80px; }
  .ws-bento { grid-template-columns: 1fr; }
  .ws-bento .ws-card:nth-child(n) { grid-column: span 1; }
  .ws-header { flex-direction: column; align-items: flex-start; }
  .fab { right: var(--pad-x); bottom: 20px; }
}

/* ─── BUTTONS ALS LINKS ─── */
a.btn-dark, a.btn-outline {
  display: block;
  text-align: center;
  text-decoration: none;
}
