/*
Theme Name: Linnemann GmbH - Sanitär & Heizung Custom
Theme URI: https://linnemann-gmbh-sanitar-heizung-3.lead.bummeltech.com/
Author: Claude Code
Description: Vaporwave Synthwave Theme für Linnemann GmbH - Sanitär & Heizung
Version: 1.0.0
Text Domain: linnemann-custom
*/

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

/* ===== DESIGN SYSTEM – Vaporwave / Pixel Art ===== */
:root {
  --color-primary:   #FF71CE;
  --color-cyan:      #01CDFE;
  --color-mint:      #05FFA1;
  --color-purple:    #B967FF;
  --color-bg:        #0A0A1A;
  --color-bg2:       #0D0D2B;
  --color-fg:        #FFFFFF;
  --color-muted:     #141430;
  --color-border:    rgba(255,113,206,0.18);
  --font-heading:    'Press Start 2P', cursive;
  --font-body:       'VT323', monospace;
  --glow-pink:       0 0 8px #FF71CE, 0 0 20px rgba(255,113,206,0.6), 0 0 40px rgba(255,113,206,0.3);
  --glow-cyan:       0 0 8px #01CDFE, 0 0 20px rgba(1,205,254,0.6), 0 0 40px rgba(1,205,254,0.3);
  --glow-purple:     0 0 8px #B967FF, 0 0 20px rgba(185,103,255,0.5);
  --glow-mint:       0 0 8px #05FFA1, 0 0 20px rgba(5,255,161,0.5);
  --transition:      200ms ease;
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scanlines overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

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

a { color: var(--color-cyan); transition: color var(--transition), text-shadow var(--transition); }

ul, ol { list-style: none; padding: 0; margin: 0; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  z-index: 10000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-shrink: 0;
}

.site-logo .logo-line1 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  letter-spacing: 2px;
  line-height: 1.4;
}

.site-logo .logo-line2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-cyan);
  letter-spacing: 3px;
  line-height: 1.2;
}

.nav-menu { display: flex; align-items: center; }

.nav-menu ul,
.nav-menu .nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  color: var(--color-cyan);
  font-family: var(--font-body);
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: 2px;
  white-space: nowrap;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition), text-shadow var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
}

.nav-menu a:hover::after { width: 100%; }

.nav-menu .current-menu-item > a {
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
}

/* Burger button */
.burger-btn {
  display: none;
  background: none;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.burger-btn:hover,
.burger-btn:focus {
  background: rgba(255,113,206,0.15);
  box-shadow: var(--glow-pink);
  outline: none;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 80px; left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(10, 10, 26, 0.98);
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  border-top: 1px solid var(--color-border);
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer ul,
.nav-drawer .nav-drawer-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-drawer a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--color-cyan);
  text-decoration: none;
  letter-spacing: 3px;
  padding: 1rem 2rem;
  display: block;
  transition: color var(--transition), text-shadow var(--transition);
  white-space: nowrap;
}

.nav-drawer a:hover { color: var(--color-primary); text-shadow: var(--glow-pink); }

.drawer-close {
  background: none;
  border: 1px solid var(--color-border);
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-top: 2rem;
  transition: all var(--transition);
}
.drawer-close:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    #0A0A1A 0%,
    #1A0A2E 25%,
    #2D1B69 55%,
    #1A0A2E 80%,
    #0A0A1A 100%
  );
}

/* Retro perspective grid */
.hero-bg-grid {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 60%;
  background-image:
    linear-gradient(rgba(1,205,254,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,205,254,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  transform-origin: bottom center;
  perspective: 600px;
  transform: translateX(-50%) perspective(600px) rotateX(60deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 900px;
}

.hero-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-cyan);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: var(--glow-cyan);
}

h1.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3.5vw, 2.2rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-hours {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #FF71CE 0%, #B967FF 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  padding: 1rem 2rem;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1.6;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all var(--transition);
  box-shadow: var(--glow-pink);
  text-align: center;
}

.btn-cta:hover, .btn-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #FF71CE, 0 0 50px rgba(255,113,206,0.5);
  color: #fff;
  text-shadow: none;
  outline: none;
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, #01CDFE 0%, #05FFA1 100%);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  padding: 1rem 2rem;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1.6;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: all var(--transition);
  box-shadow: var(--glow-cyan);
  text-align: center;
}

.btn-secondary:hover, .btn-secondary:focus {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #01CDFE, 0 0 50px rgba(1,205,254,0.5);
  color: var(--color-bg);
  outline: none;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-cyan);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: var(--glow-cyan);
}

h2.section-title {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  line-height: 1.7;
}

/* ===== SLIDER ===== */
.slider-section {
  background: var(--color-bg2);
  padding: 5rem 0 4rem;
  position: relative;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide-item {
  min-width: 100%;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: saturate(1.3) hue-rotate(5deg);
  transition: opacity 400ms;
}

.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(10,10,26,0.97) 0%, rgba(10,10,26,0.6) 60%, transparent 100%);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.slide-desc {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(10,10,26,0.85);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  width: 52px; height: 52px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: all var(--transition);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.slider-arrow:hover, .slider-arrow:focus {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: var(--glow-pink);
  outline: none;
}

.arrow-prev { left: 1rem; }
.arrow-next { right: 1rem; }

.slider-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
}

.slider-dot {
  width: 12px; height: 12px;
  background: transparent;
  border: 2px solid rgba(255,113,206,0.4);
  cursor: pointer;
  transform: rotate(45deg);
  transition: all var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--glow-pink);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg2) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  padding: 0 0 2rem;
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple), var(--color-cyan));
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(255,113,206,0.25);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(1.2) hue-rotate(8deg);
  transition: filter 300ms;
}

.service-card:hover img { filter: saturate(1.5) hue-rotate(15deg) brightness(1.1); }

.service-card-body { padding: 1.75rem 1.75rem 0; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  line-height: 1.7;
  text-shadow: 0 0 6px rgba(255,113,206,0.4);
}

.service-card p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--color-cyan);
  font-family: var(--font-body);
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(1,205,254,0.4);
  transition: all var(--transition);
}

.service-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  text-shadow: var(--glow-pink);
}

/* ===== ABOUT ===== */
.about-section {
  padding: 6rem 0;
  background: var(--color-bg);
}

.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-family: var(--font-body);
  font-size: 1.45rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 40px rgba(255,113,206,0.3), 0 0 80px rgba(185,103,255,0.15);
  filter: saturate(1.3) hue-rotate(5deg);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2D1B69 0%, #1A0A2E 50%, #0A1628 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185,103,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,103,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  color: var(--color-fg);
  text-shadow: var(--glow-cyan);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  position: relative;
}

.cta-banner p {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 6rem 0;
  background: var(--color-bg2);
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2vw, 1.1rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--color-cyan);
  margin-top: 0.3rem;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--color-fg);
  display: block;
  line-height: 1.5;
}

.contact-value a {
  color: var(--color-mint);
  text-decoration: none;
  transition: text-shadow var(--transition);
}

.contact-value a:hover { text-shadow: var(--glow-mint); }

.contact-form-wrap {
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1.8;
  letter-spacing: 1px;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.52rem;
  color: var(--color-cyan);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-nav ul,
.footer-nav .footer-nav-list { list-style: none; padding: 0; margin: 0; }

.footer-nav li { margin-bottom: 0.75rem; }

.footer-nav a {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--color-primary); }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }

.footer-contact-list li {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--color-primary); }

.footer-bottom {
  max-width: 1240px;
  margin: 3rem auto 0;
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--color-primary); }

/* ===== PAGE TEMPLATES ===== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0A0A1A 0%, #1A0A2E 100%);
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  line-height: 1.7;
}

.page-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.page-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  color: var(--color-primary);
  text-shadow: var(--glow-pink);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
  margin: 2.5rem 0 1.25rem;
  line-height: 1.7;
}

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--color-purple);
  margin: 2rem 0 1rem;
  line-height: 1.7;
}

.page-content p { margin-bottom: 1.5rem; }

.page-content a {
  color: var(--color-mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(5,255,161,0.4);
  transition: all var(--transition);
}

.page-content a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  text-shadow: var(--glow-pink);
}

.page-content ul, .page-content ol {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.page-content li { margin-bottom: 0.5rem; }

.shortcode-wrap, .karriere-section {
  padding: 2rem 0 4rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes glitch {
  0%, 90%, 100% { text-shadow: var(--glow-pink); }
  92% { text-shadow: 3px 0 0 #01CDFE, -3px 0 0 #FF71CE; clip-path: inset(20% 0 30% 0); }
  94% { text-shadow: -3px 0 0 #B967FF, 3px 0 0 #05FFA1; clip-path: inset(60% 0 10% 0); }
  96% { text-shadow: 3px 0 0 #FF71CE, -3px 0 0 #B967FF; clip-path: inset(0 0 80% 0); }
  98% { clip-path: none; }
}

.glitch { animation: glitch 5s infinite; }

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
.neon-pulse { animation: neonPulse 2.5s ease-in-out infinite; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ACCESSIBILITY ===== */
*:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .burger-btn { display: flex; }
  .nav-menu { display: none; }
  .nav-container { padding: 0 1.25rem; }
}

@media (max-width: 768px) {
  .about-inner,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .slide-item { height: 320px; }
  .slide-content { padding: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
  .page-hero { padding: 5rem 1.5rem 3rem; }
}
