/*
 Theme Name:   GeneratePress Child — You Name It.TV
 Theme URI:    https://younameit.tv
 Description:  Child-Theme für younameit.tv — GeneratePress Child
 Author:       Sascha Manke
 Author URI:   https://younameit.tv
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  generatepress-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN-SYSTEM
   ============================================================ */

:root {
  /* Farben */
  --bg-deep:       #0a0a08;
  --bg-card:       #111110;
  --bg-elevated:   #1a1a17;
  --orange:        #E8762A;
  --orange-dim:    #C4611F;
  --teal:          #2AA5A0;
  --teal-dim:      #1E7D79;
  --text-primary:  #F0EDE6;
  --text-secondary:#8C8A82;
  --text-muted:    #4A4945;
  --border:        rgba(240, 237, 230, 0.08);
  --border-accent: rgba(232, 118, 42, 0.25);

  /* Typografie */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar:   'Noto Sans Arabic', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* GeneratePress Overrides */
.site-header,
.nav-bar-wrap {
  display: none !important;
}

.site-content {
  padding: 0 !important;
}

.entry-content {
  max-width: none !important;
  padding: 0 !important;
}

/* ============================================================
   TYPOGRAFIE
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-primary);
}

h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 300;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--text-primary);
}

.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

/* ============================================================
   ACCENT BAR
   ============================================================ */

.accent-bar {
  height: 2px;
  background: linear-gradient(90deg, #E8762A 0%, #2AA5A0 55%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ============================================================
   NEWSLETTER HIDDEN STATE
   ============================================================ */

.newsletter-hidden {
  display: none !important;
}
