/*
Theme Name: Shared Leadership Generationen
Theme URI: https://sharedleadership-generationen.de
Author: KI Studio Köln (unick.cloud)
Author URI: https://ki-studio-koeln.unick.cloud/
Description: Custom WordPress Theme mit vollständiger Gutenberg Block-Unterstützung für Annette Bubel.
Version: 4.4.0
Text Domain: sharedleadership
*/

/* ----------------------------------------------------
   DESIGN SYSTEM & CSS VARIABLES
   ---------------------------------------------------- */
:root {
  --primary-orange: #F89700;
  --primary-orange-hover: #e08800;
  --bg-dark: #111111;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --bg-page: #f9f9fb;
  --bg-card: #ffffff;
  --border-card: rgba(0, 0, 0, 0.08);
  --radius-card: 16px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --container-max: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  width: 100%;
  background-color: var(--bg-page);
}

/* Container Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky Header Navbar */
.header-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  padding: 14px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 48px;
  max-height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--primary-orange);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #e68500 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(248, 151, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 151, 0, 0.45);
}

/* Main Content Sections */
section.card-section,
.wp-block-group.card-section {
  margin: 40px auto;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 48px;
}

/* 2-Column Hero & Profile Grid */
.hero-grid,
.wp-block-columns.hero-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-grid-reverse,
.wp-block-columns.hero-grid-reverse {
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

h1.hero-title,
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-image-wrapper img,
.hero-image-wrapper figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Standard Headings & Paragraphs */
h2.section-title,
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

p.paragraph-text,
.paragraph-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

/* Multi-Column Feature Grids */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--bg-page);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border-card);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Step Offer List (4 Steps) */
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.step-box {
  background: rgba(248, 151, 0, 0.05);
  border-left: 4px solid var(--primary-orange);
  padding: 20px;
  border-radius: 8px;
}

.step-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Banner */
.contact-banner {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
  color: #ffffff;
  padding: 60px 30px;
  border-radius: var(--radius-card);
  margin: 40px auto;
}

.contact-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-card);
  margin-top: 60px;
}

/* ----------------------------------------------------
   RESPONSIVE MOBILE STYLES (< 768px)
   ---------------------------------------------------- */
@media screen and (max-width: 768px) {
  .header-navbar {
    padding: 10px 0;
  }
  
  .nav-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 6px 12px;
  }

  .cta-btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  section.card-section,
  .wp-block-group.card-section {
    padding: 24px 18px;
    margin: 20px auto;
    border-radius: 12px;
  }

  .hero-grid,
  .wp-block-columns.hero-grid,
  .hero-grid-reverse,
  .wp-block-columns.hero-grid-reverse {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .hero-image-wrapper {
    order: 2;
  }

  .hero-text-content {
    order: 1;
  }

  .feature-grid, .steps-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-banner {
    padding: 36px 20px;
  }
}
