/* ============================================
   Globales neutrales Basis-Design-System
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */

:root {

  /* Farben */
  --color-primary:       #00FFA6;
  --color-primary-light: #7DFFD0;
  --color-primary-dark:  #00B875;

  --color-bg:            #FFFFFF;
  --color-bg-dark:       #181818;
  --color-bg-alt:        #E9F6F0;
  --color-bg-premium:    #181818;

  --color-text:          #181818;
  --color-text-light:    #4A4A4A;
  --color-text-on-dark:  #FFFFFF;
  --color-text-heading:  #181818;
  --color-white:         #FFFFFF;
  --color-border:        #CFE3DA;

  /* Schriften */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* Schriftgrößen */
  --fs-hero:  clamp(2.2rem, 4.5vw, 2.8rem);
  --fs-h2:    clamp(1.5rem, 2.5vw, 2.2rem);
  --fs-h3:    clamp(1.15rem, 1.8vw, 1.5rem);
  --fs-h4:    clamp(1rem, 1.3vw, 1.15rem);
  --fs-body:  clamp(0.92rem, 1.05vw, 1rem);
  --fs-small: clamp(0.8rem, 0.92vw, 0.88rem);
  --fs-label: clamp(0.68rem, 0.82vw, 0.78rem);

  /* Abstände */
  --sp-section: clamp(40px, 6vw, 100px);
  --sp-lg:      clamp(20px, 3vw, 40px);
  --sp-md:      clamp(18px, 2vw, 24px);
  --sp-sm:      clamp(6px, 1vw, 12px);

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* Schatten */
  --shadow-sm:   0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:   0 4px 14px rgba(0, 0, 0, 0.07);
  --shadow-lg:   0 8px 28px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 4px 20px rgba(0, 255, 166, 0.22);

  /* Transition */
  --transition-base: 0.3s ease;
}


/* ============================================
   RESET
   ============================================ */

:where(section[class*="sec-theme"]) :where(*, *::before, *::after) {
  box-sizing: border-box;
}


/* ============================================
   SECTION BASE
   ============================================ */

:where(section[class*="sec-theme"]) {
  padding: var(--sp-section) 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}


/* ============================================
   TYPOGRAFIE
   ============================================ */

:where(section[class*="sec-theme"]) :where(h1, h2, h3, h4) {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

:where(section[class*="sec-theme"]) h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-bg-dark);
}

:where(section[class*="sec-theme"]) h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-bg-dark);
}

:where(section[class*="sec-theme"]) h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-bg-dark);
}

:where(section[class*="sec-theme"]) :where(p, li) {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0;
}


/* ============================================
   DARK & ALT SECTIONS
   ============================================ */

.sec-theme--dark {
  background: #ffffff;
}

.sec-theme--dark h1,
.sec-theme--dark h2,
.sec-theme--dark h3,
.sec-theme--dark h4 {
  color: #181818;
}

.sec-theme--dark p,
.sec-theme--dark li,
.sec-theme--dark span {
  color: #181818;
}

.sec-theme--alt {
  background: var(--color-bg-alt);
}


/* ============================================
   CONTAINER
   ============================================ */

.theme-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 32px);
}


/* ============================================
   LABEL
   ============================================ */

.theme-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
  line-height: 1;
}

.theme-label--light {
  color: var(--color-primary);
}


/* ============================================
   GOLD LINE
   ============================================ */

.theme-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  margin: 10px 0 14px;
  border: none;
}


/* ============================================
   BUTTONS
   ============================================ */

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

/* Primary */
.theme-btn--primary {
  background: var(--color-primary);
  color: #1a1a1a;
  border-color: var(--color-primary);
}

.theme-btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Dark */
.theme-btn--dark {
  background: var(--color-bg-dark);
  color: #ffffff;
  border-color: var(--color-bg-dark);
}

.theme-btn--dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

/* Outline (hell) */
.theme-btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.theme-btn--outline:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Outline Gold */
.theme-btn--outline-gold {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.theme-btn--outline-gold:hover {
  background: var(--color-primary);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Outline Dark */
.theme-btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.theme-btn--outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Large */
.theme-btn--lg {
  padding: 14px 34px;
  font-size: var(--fs-body);
}


/* ============================================
   GRIDS
   ============================================ */

.theme-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.theme-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.theme-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}


/* ============================================
   CARDS
   ============================================ */

.theme-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  box-shadow: none;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.theme-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.theme-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.theme-card--dark:hover {
  border-color: rgba(0, 255, 166, 0.30);
}

.theme-card--bordered {
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.theme-card--bordered:hover {
  border-color: var(--color-primary);
  box-shadow: none;
}


/* ============================================
   CHECK LIST
   ============================================ */

.theme-checks {
  list-style: none;
  padding: 0;
}

.theme-checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.theme-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-primary-dark);
  font-weight: 700;
}


/* ============================================
   ICON BOX
   ============================================ */

.theme-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 166, 0.12);
  color: var(--color-primary-dark);
  flex-shrink: 0;
  margin-bottom: 10px;
}

.theme-icon svg {
  width: 22px;
  height: 22px;
}

.theme-icon--dark {
  background: rgba(0, 255, 166, 0.14);
  color: var(--color-primary);
}


/* ============================================
   ANIMATIONEN
   ============================================ */

.theme-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.theme-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.theme-anim:nth-child(2) { transition-delay: 0.07s; }
.theme-anim:nth-child(3) { transition-delay: 0.13s; }
.theme-anim:nth-child(4) { transition-delay: 0.18s; }


/* ============================================
   KOMPONENTEN (seitenübergreifend)
   ============================================ */

/* --- Stats Grid – Nummerierte Cards --- */

.theme-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.theme-stats-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 24px);
  transition: all var(--transition-base);
}

.theme-stats-item:hover {
  border-color: rgba(0, 255, 166, 0.30);
  background: rgba(255, 255, 255, 0.06);
}

.theme-stats-item--hl {
  border-color: var(--color-primary);
  background: rgba(0, 255, 166, 0.10);
}

.theme-stats-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}


/* --- CTA Card --- */

.theme-cta-card {
  background: var(--color-bg-dark);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.theme-cta-text {
  max-width: 540px;
}

.theme-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}


/* --- Strategie Blöcke – Bild + Content abwechselnd --- */

.theme-strat-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-lg);
  align-items: center;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--color-border);
}

.theme-strat-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.theme-strat-block--reverse {
  grid-template-columns: 1.2fr 1fr;
}

.theme-strat-block--reverse .theme-strat-img {
  order: 2;
}

.theme-strat-block--reverse .theme-strat-content {
  order: 1;
}

.theme-strat-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
}

.theme-strat-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --- Prozess Steps --- */

.theme-process-step {
  text-align: center;
  padding: var(--sp-md) var(--sp-sm);
}

.theme-process-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}


/* --- Timeline (für Über mich / Karriere) --- */

.theme-timeline-entry {
  display: flex;
  gap: 20px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  padding-bottom: clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--color-border);
}

.theme-timeline-entry:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.theme-timeline-date {
  flex-shrink: 0;
  width: 100px;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: var(--fs-small);
}


/* --- Partner Vorteile (Icon + Text horizontal) --- */

.theme-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.theme-benefit:last-child {
  margin-bottom: 0;
}


/* --- Zusammenarbeit Timeline (vertikal mit Nummern) --- */

.theme-collab-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.theme-collab-step:last-child {
  margin-bottom: 0;
}

.theme-collab-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #1a1a1a;
  font-size: 1rem;
}


/* ============================================
   SEITENSPEZIFISCHE STYLES
   ============================================ */

/* --- Hero Section --- */

.sec-theme-hero {
  padding: clamp(44px, 5vw, 72px) 0;
}

.sec-theme-hero .theme-grid-2 {
  gap: clamp(24px, 4vw, 48px);
}

.sec-theme-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 10px 0 14px;
}

.sec-theme-hero p {
  color: #ccc;
  margin-bottom: 20px;
  max-width: 500px;
}

.sec-theme-hero .theme-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sec-theme-hero .theme-hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sec-theme-hero .theme-hero-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* --- Über mich / Intro --- */

.sec-theme-intro .theme-intro-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 420px;
}

.sec-theme-intro h2 {
  color: var(--color-text-heading);
}

.sec-theme-intro p {
  color: var(--color-text-light);
}

.sec-theme-intro .theme-intro-p1 {
  margin-bottom: 8px;
}

.sec-theme-intro .theme-intro-p2 {
  margin-bottom: 14px;
}

.sec-theme-intro .theme-intro-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.sec-theme-intro .theme-intro-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text-light);
}

.sec-theme-intro .theme-intro-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  box-shadow: 0 0 0 4px rgba(0, 255, 166, 0.18);
  transform: translateY(-50%);
}


/* --- Berater Section (Endkundenseite) --- */

.sec-theme-berater h2 {
  color: var(--color-text-heading);
}

.sec-theme-berater img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 420px;
}


/* --- Warum Edelmetalle --- */

.sec-theme-why .theme-why-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
}


/* --- Konzept Section (Endkundenseite) --- */

.sec-theme-konzept > .theme-container > .theme-anim:first-child {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(16px, 2vw, 28px);
}

.sec-theme-konzept .theme-grid-2 {
  gap: var(--sp-md);
}

.sec-theme-konzept .theme-card {
  padding: var(--sp-md);
}

.sec-theme-konzept h3 {
  margin-bottom: 6px;
}

.sec-theme-konzept p:not(.theme-checks p) {
  color: var(--color-text-light);
}

.sec-theme-konzept .theme-card > p:first-of-type {
  margin-bottom: 8px;
}


/* --- Strategien Section --- */

.sec-theme-strat > .theme-container > .theme-anim:first-child {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(16px, 2vw, 28px);
}

.sec-theme-strat .theme-strat-content .theme-stats-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.sec-theme-strat .theme-strat-content h3 {
  margin-bottom: 6px;
}

.sec-theme-strat .theme-strat-content > p:first-of-type {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  margin-bottom: 10px;
}

.sec-theme-strat .theme-strat-content > p:nth-of-type(2) {
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.sec-theme-strat .theme-btn {
  margin-top: 14px;
}

.sec-theme-strat .theme-ratio-hint {
  margin-top: clamp(20px, 3vw, 36px);
}

.sec-theme-strat .theme-ratio-hint .theme-card {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  flex-wrap: wrap;
  padding: var(--sp-md);
}

.sec-theme-strat .theme-ratio-hint .theme-icon {
  margin-bottom: 0;
}

.sec-theme-strat .theme-ratio-hint .theme-card > div:last-child {
  flex: 1;
  min-width: 200px;
}

.sec-theme-strat .theme-ratio-hint h4 {
  margin-bottom: 2px;
}

.sec-theme-strat .theme-ratio-hint p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
}


/* --- Prozess Section --- */

.sec-theme-process > .theme-container > .theme-anim:first-child {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(16px, 2vw, 28px);
}

.sec-theme-process .theme-process-step p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
}


/* --- Zwei Wege / Paths --- */

.sec-theme-paths .theme-paths-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(16px, 2vw, 28px);
}

.sec-theme-paths .theme-grid-2 {
  gap: var(--sp-md);
}

.sec-theme-paths .theme-path-img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 170px;
  object-fit: cover;
  margin-bottom: 12px;
}

.sec-theme-paths h3 {
  margin-bottom: 6px;
}

.sec-theme-paths .theme-path-desc {
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.sec-theme-paths .theme-btn {
  width: 100%;
}


/* --- Ökosystem --- */

.sec-theme-eco .theme-eco-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(16px, 2vw, 24px);
}

.sec-theme-eco .theme-card {
  text-align: center;
}

.sec-theme-eco .theme-icon {
  margin: 0 auto 8px;
}

.sec-theme-eco .theme-eco-small {
  color: var(--color-text-light);
  font-size: var(--fs-small);
}


/* --- Trust / ProWert --- */

.sec-theme-trust .theme-trust-img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.sec-theme-trust p {
  margin-bottom: 14px;
}

.sec-theme-trust .theme-btn--outline-gold {
  margin-top: 16px;
}


/* --- Stats Section --- */

.sec-theme-stats {
  padding: clamp(36px, 4vw, 56px) 0;
}

.sec-theme-stats h4 {
  color: #ffffff;
  margin-bottom: 4px;
}

.sec-theme-stats .theme-stats-small {
  font-size: var(--fs-small);
}


/* --- CTA Section --- */

.sec-theme-cta {
  padding: var(--sp-section) 0;
  background: #ffffff;
}

.sec-theme-cta h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

.sec-theme-cta p {
  color: var(--color-text-on-dark);
}

.sec-theme-cta p a,
.sec-theme-cta p a:visited,
.sec-theme-cta p a:hover,
.sec-theme-cta p a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ============================================
   RESPONSIVE – Alle Komponenten
   ============================================ */

@media (max-width: 1024px) {

	.sec-theme-hero {
			padding: clamp(70px, 5vw, 72px) 0;
	}
	
  .theme-grid-2 {
    grid-template-columns: 1fr;
  }

  .theme-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .theme-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .theme-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-strat-block,
  .theme-strat-block--reverse {
    grid-template-columns: 1fr;
  }

  .theme-strat-block--reverse .theme-strat-img {
    order: 0;
  }

  .theme-strat-block--reverse .theme-strat-content {
    order: 0;
  }

  .theme-strat-img {
    min-height: 200px;
  }

  .theme-cta-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .theme-cta-btns {
    width: 100%;
    max-width: 340px;
  }

  .theme-timeline-entry {
    flex-direction: column;
    gap: 6px;
  }

  .theme-timeline-date {
    width: auto;
    text-align: left;
  }
}

@media (max-width: 767px) {

  .theme-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;		
  }

  .theme-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;			
  }

  .theme-btn {
    width: 100%;
    text-align: center;
  }

  .theme-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-strat-img {
    min-height: 180px;
  }

  .theme-process-step {
    padding: var(--sp-sm);
  }

  .theme-cta-btns .theme-btn {
    width: 100%;
  }

  .sec-theme-hero .theme-hero-btns {
    flex-direction: column;
  }

  .sec-theme-hero .theme-hero-btns .theme-btn {
    width: 100%;
  }
}






