/*
Theme Name: FokusPokus Premium
Theme URI: https://fokuspokus.net/
Author: Leaf Systems
Author URI: https://leaf-systems.eu/
Description: Premium Landingpage Theme für FokusPokus Coaching mit integriertem Logo, Mobile Bottom Navigation und klarem Coaching-Design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fokuspokus-premium
*/

:root {
  --cream: #f7efe1;
  --cream-2: #fff9ef;
  --navy: #132037;
  --navy-soft: #1b2940;
  --gold: #cda24d;
  --gold-light: #e8c878;
  --text: #606979;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(19, 32, 55, 0.12);
  --radius: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--navy);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(205, 162, 77, .22), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, .8), transparent 22%);
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 239, 225, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(19, 32, 55, .07);
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 245px;
  max-width: 46vw;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.48);
  padding: 8px;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(19,32,55,.08);
}

.desktop-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 750;
  padding: 12px 18px;
  border-radius: 999px;
}

.desktop-nav .nav-cta {
  background: var(--gold);
}

.hero {
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 900;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -.04em;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(56px, 8vw, 104px);
  line-height: .91;
}

.hero-copy p {
  max-width: 670px;
  margin: 32px 0 0;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.55;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
}

.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 16px 40px rgba(19,32,55,.18);
}

.btn-secondary {
  background: rgba(255,255,255,.72);
  color: var(--navy);
}

.hero-card {
  min-height: 500px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,249,239,.48)),
    radial-gradient(circle at 30% 10%, rgba(205,162,77,.3), transparent 42%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 60px);
}

.hero-card img {
  width: 100%;
  max-width: 500px;
  align-self: center;
  filter: drop-shadow(0 14px 24px rgba(19,32,55,.12));
}

.hero-card p {
  margin: 38px 0 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2, .panel h2, .cta-box h2 {
  margin-top: 18px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .96;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card, .blog-grid article, .panel, .steps, .cta-box {
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(19,32,55,.08);
}

.card {
  padding: 34px;
}

.card span {
  color: var(--gold);
  font-weight: 950;
}

.card h3, .blog-grid h3 {
  margin-top: 24px;
  font-size: 26px;
}

.card p, .blog-grid p, .panel p, .cta-box p {
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
}

.split-section {
  padding: 34px 0 88px;
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.panel, .steps {
  padding: 42px;
}

.steps {
  display: grid;
  gap: 14px;
  background: var(--navy);
}

.steps div {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 22px;
  font-weight: 850;
}

.steps strong {
  color: var(--gold-light);
}

.soft {
  background: rgba(255,255,255,.38);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.blog-grid article {
  padding: 34px;
}

.cta-section {
  padding: 96px 0 130px;
}

.cta-box {
  text-align: center;
  padding: 58px 28px;
}

.cta-box img {
  width: min(390px, 80%);
  margin-bottom: 16px;
}

.cta-box p {
  max-width: 650px;
  margin: 24px auto 32px;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    display: none;
  }

  .container {
    width: min(100% - 30px, 640px);
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero-grid, .split-grid, .cards, .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
    padding: 34px 24px;
    border-radius: 34px;
  }

  .hero-card img {
    max-width: 330px;
  }

  .hero-card p {
    font-size: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .split-section {
    padding: 0 0 60px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 4px;
    background: linear-gradient(180deg, #1b2739, #111a29);
    border-radius: 999px;
    padding: 10px;
    box-shadow: 0 22px 50px rgba(19,32,55,.3);
  }

  .mobile-bottom-nav a {
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    padding: 12px 7px;
    border-radius: 999px;
  }

  .mobile-bottom-nav .active {
    background: var(--gold);
    color: var(--navy);
  }

  .cta-section {
    padding-bottom: 120px;
  }
}
