/* ══════════════════════════════════════════
   GOPHIEL Design System – Licht & Lavendel
   Farben, Typografie, Komponenten
   ══════════════════════════════════════════ */

/* ── Custom Fonts ── */
@font-face {
  font-family: 'Advantage';
  src: url('../fonts/Advantage.otf') format('opentype'),
       url('../fonts/Advantage.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  /* Licht & Lavendel Palette */
  --bg: #FAFAFF;
  --bg-warm: #F4F2FA;
  --accent: #8B7EC8;
  --accent-light: #A99ADB;
  --accent-pale: #E8E4F5;
  --gold: #D4AF37;
  --gold-light: #E2C55E;
  --gold-pale: #F5EED4;
  --dark: #2E2A40;
  --dark-soft: #3A3554;
  --text: #3A3554;
  --text-light: #6E6889;
  --white: #FFFFFF;

  --font-heading: 'Advantage', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-padding: 6rem 4rem;
  --section-padding-mobile: 3.5rem 1.5rem;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--dark);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--dark);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

em {
  font-style: italic;
  color: var(--accent);
}

/* ── Section Label ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent-light);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7A6BB7 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 126, 200, 0.35);
}

.btn-primary-large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #C4A030 0%, var(--gold) 100%);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 1rem 2.2rem;
  border: 1.5px solid var(--accent-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  padding: 2rem;
  border: 1px solid rgba(139, 126, 200, 0.15);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 126, 200, 0.1);
}

/* ── Section Backgrounds ── */
.section-light {
  background: var(--bg);
}

.section-warm {
  background: var(--bg-warm);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-dark em {
  color: var(--accent-light);
}

.section-dark .section-label {
  color: var(--accent-light);
}

.section-gradient {
  background: linear-gradient(135deg, var(--dark-soft) 0%, var(--dark) 100%);
  color: var(--white);
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

/* ── Check List ── */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✦';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ── Divider ── */
.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--gold-light), var(--accent));
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes softGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.fade-up-1 { animation-delay: 0.2s; }
.fade-up-2 { animation-delay: 0.4s; }
.fade-up-3 { animation-delay: 0.6s; }
.fade-up-4 { animation-delay: 0.8s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .section {
    padding: var(--section-padding-mobile);
  }

  .hide-mobile {
    display: none !important;
  }
}
