/*
Theme Name: JT Consulting
Theme URI: https://jochen-traeder-consulting.de
Author: Jochen Traeder Consulting
Author URI: https://jochen-traeder-consulting.de
Description: Premium Theme für Jochen Traeder Consulting – Gesundheit, Performance und Vermögen für Unternehmer, Mitarbeiter & Profisportler. Design mit Privatpatienten-Status, betrieblicher Krankenversicherung und Unternehmensstrategien.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
License URI: #
Text Domain: jt-consulting
Tags: business, one-column, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --clr-bg:        #0a0a1a;
  --clr-bg2:       #0f0f2a;
  --clr-surface:   #141430;
  --clr-accent:    #7c3aed;
  --clr-accent2:   #a855f7;
  --clr-accent3:   #c084fc;
  --clr-gold:      #f5c518;
  --clr-text:      #e8e8f0;
  --clr-muted:     #9090b0;
  --clr-white:     #ffffff;
  --clr-card-bg:   rgba(124,58,237,0.15);
  --clr-card-border: rgba(168,85,247,0.3);

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-glow: 0 0 30px rgba(124,58,237,0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-accent2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-accent3); }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

p { max-width: 68ch; }

.text-accent  { color: var(--clr-accent2); }
.text-gold    { color: var(--clr-gold); }
.text-muted   { color: var(--clr-muted); }
.text-center  { text-align: center; }
.text-white   { color: var(--clr-white); }

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
}

.section { padding-block: 5rem; }
.section--lg { padding-block: 7rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col    { flex-direction: column; }
.gap-1  { gap: .5rem; }
.gap-2  { gap: 1rem; }
.gap-3  { gap: 1.5rem; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  color: var(--clr-white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(124,58,237,0.7);
  color: var(--clr-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-accent2);
  color: var(--clr-accent2);
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent3);
  margin-bottom: .5rem;
}

.card__desc {
  font-size: .95rem;
  color: var(--clr-muted);
  line-height: 1.55;
}

/* ===========================
   BADGE / TAG
=========================== */
.badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(124,58,237,.25);
  border: 1px solid var(--clr-accent2);
  color: var(--clr-accent3);
  margin-bottom: 1rem;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header p { color: var(--clr-muted); margin-inline: auto; }

/* ===========================
   NAVIGATION
=========================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,.2);
  padding-block: 1rem;
  transition: background .3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--clr-white);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-nav a {
  color: var(--clr-muted);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
}
.site-nav a:hover { color: var(--clr-white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all .3s;
}

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124,58,237,.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(168,85,247,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 4rem;
}

.hero-eyebrow { margin-bottom: 1rem; }

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--clr-white);
}

.hero-title span {
  background: linear-gradient(135deg, var(--clr-accent2), var(--clr-accent3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--clr-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-checkmarks {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.hero-checkmarks li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  color: var(--clr-muted);
  list-style: none;
}

.hero-checkmarks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(124,58,237,.3);
  border-radius: 50%;
  color: var(--clr-accent3);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-image-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--clr-card-border);
  box-shadow: var(--shadow-glow);
  max-width: 480px;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  color: var(--clr-muted);
  font-size: .85rem;
  text-align: center;
  padding: 2rem;
}

/* ===========================
   SERVICES SECTIONS
=========================== */
#unternehmens-hebel { background: linear-gradient(to bottom, var(--clr-bg), var(--clr-bg2)); }
#gesundheit         { background: var(--clr-bg2); }

/* ===========================
   SPORT SECTION
=========================== */
#sport {
  background: linear-gradient(135deg, rgba(124,58,237,.15) 0%, rgba(10,10,26,.8) 50%, rgba(168,85,247,.1) 100%);
  border-top: 1px solid var(--clr-card-border);
  border-bottom: 1px solid var(--clr-card-border);
}

/* ===========================
   CONTACT SECTION
=========================== */
#contact { background: var(--clr-bg); }

.contact-card {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}

.contact-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  border: 3px solid var(--clr-accent2);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--clr-muted);
  font-size: .95rem;
}
.contact-info-list .icon { color: var(--clr-accent2); font-size: 1.1rem; }

/* ===========================
   CTA BANNER
=========================== */
#cta-banner {
  background: linear-gradient(135deg, var(--clr-accent), #5b21b6);
  padding-block: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
#cta-banner .container { position: relative; z-index: 1; }
#cta-banner h2 { color: var(--clr-white); margin-bottom: .75rem; }
#cta-banner p  { color: rgba(255,255,255,.8); margin-inline: auto; margin-bottom: 2rem; }
#cta-banner .btn-primary {
  background: var(--clr-white);
  color: var(--clr-accent);
  box-shadow: none;
}
#cta-banner .btn-primary:hover { transform: translateY(-2px); background: var(--clr-accent3); color: #fff; }

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background: #06060f;
  border-top: 1px solid rgba(124,58,237,.2);
  padding-block: 2rem;
  text-align: center;
  color: var(--clr-muted);
  font-size: .85rem;
}
#site-footer a { color: var(--clr-muted); }
#site-footer a:hover { color: var(--clr-accent2); }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: .5rem; }

/* ===========================
   DIVIDER / DECORATIVE
=========================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-accent2), transparent);
  margin-block: 0;
  opacity: .35;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-area { display: none; }
  .contact-card { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-cta { flex-direction: column; }
  .section { padding-block: 3.5rem; }
  .contact-card { padding: 2rem; }
}

/* Mobile nav open state */
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(10,10,26,.97);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.site-nav.is-open ul {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.site-nav.is-open a { font-size: 1.4rem; color: var(--clr-white); }
