/* ==========================================
   HARZER WERBETECHNIK – PURPLE GALAXY STYLE
========================================== */

/* Farben & Basisvariablen */
:root {
  --primary: #b84dff;
  --primary-soft: #d890ff;
  --accent: #00f0ff;
  --accent-soft: #56fbff;
  --bg-dark: #050019;
  --text-light: #f5f7ff;
  --text-muted: #c3c7e0;
  --card-bg: #1a002a;
  --border-soft: #0d003f;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.8);
}

/* Reset / Grundlayout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Poppins", sans-serif;
  background: linear-gradient(160deg, #1a002a 0%, #0d003f 50%, #020010 100%);
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Globaler Galaxy-Background (mitlaufend) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("img/BG.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  z-index: -2;
  pointer-events: none;
}

/* Vignette / Licht */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, #ffffff18 0, transparent 50%),
    radial-gradient(circle at bottom, #000000dd 0, #000000ee 55%);
  z-index: -1;
  pointer-events: none;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: var(--primary-soft);
}

img {
  max-width: 100%;
  display: block;
}

/* Allgemeiner Wrapper */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* ==========================================
   HEADER / NAVIGATION
========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, #050019f2 0%, #050019b2 60%, transparent 100%);
  border-bottom: 1px solid #1a002a;
}

.navbar {
  max-width: 85%;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Burger-Button (nur Mobil sichtbar) */
.burger {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  margin-right: 0.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f5f7ff;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.burger span + span {
  margin-top: 4px;
}

/* X-Animation */
.burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Navigation-Links (Standard: Desktop) */
.nav-links {
  display: flex;
  gap: 0.7rem;
  font-size: 0.9rem;
  flex-wrap: nowrap;
  margin-right: auto;
}

.nav-links a {
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  position: relative;
}

.nav-links a:hover {
  background: #1a002a;
  border-color: #1a002a;
}

.nav-links a.active {
  background: linear-gradient(
    135deg,
    #2a064f 0%,
    #d890ff 45%,
    #2a064f 100%
  );
  color: var(--accent-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
  border: 1px solid #ffffff33;
}

/* Logo rechts */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand img {
  height: 75px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
}

/* ==========================================
   HERO
========================================== */

.hero {
  position: relative;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: url("img/BG.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, #ffffff33 0, transparent 45%),
    radial-gradient(circle at bottom left, #b84dff55 0, transparent 55%),
    radial-gradient(circle at bottom right, #00f0ff55 0, transparent 55%);
  mix-blend-mode: screen;
  z-index: -2;
}

.hero-inner {
  max-width: 840px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  padding: 0.2rem 0.8rem 0.25rem;
  border-radius: 999px;
  border: 1px solid #00f0ff55;
  background: #020010aa;
  box-shadow: 0 0 18px #00f0ff55;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.1vw, 3rem);
  margin: 0 0 1rem;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.9);
}

.hero-subline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 1.8rem;
}

/* Buttons */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.18s ease;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    #2a064f 0%,
    #d890ff 45%,
    #2a064f 100%
  );
  color: var(--accent-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
  border: 1px solid #ffffff33;
}s

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.95);
}

.btn-ghost {
  border-color: #ffffff33;
  background: #ffffff08;
  color: var(--text-light);
}

.btn-ghost:hover {
  background: #ffffff15;
  border-color: #ffffff55;
}

/* ==========================================
   CONTENT-BEREICHE
========================================== */

.section {
  padding: 3.5rem 0 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-soft);
}

.section-title {
  font-size: 1.6rem;
  margin: 0.4rem 0 0.4rem;
}

.section-text {
  max-width: 680px;
  margin: 0.4rem auto 0;
  color: var(--text-muted);
}

/* Karten / Grid */
.card-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 2.2rem;
}

.card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.5rem 1.9rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Listen */
.feature-list {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding-left: 1.1rem;
}

.feature-list li {
  margin-bottom: 0.45rem;
}

/* ==========================================
   FAHRZEUGBESCHRIFTUNG – BILDGALERIE
========================================== */

.vehicle-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.vehicle-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #050019;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   SCHILDER – BILDGALERIE
========================================== */

.sign-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.sign-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #050019;
}

.sign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   AUSSENWERBUNG – BILDGALERIE
========================================== */

.outdoor-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.outdoor-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #050019;
}

.outdoor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   REFERENZEN – BILDGALERIE
========================================== */

.references-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 1.5rem;
}

.references-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #050019;
}

.references-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   KONTAKTFORMULAR
========================================== */

.contact-form {
  display: block;
  max-width: 650px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ffffff33;
  background: #050019aa;
  color: var(--text-light);
  padding: 0.6rem 0.75rem;
  font: inherit;
  outline: none;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 1px #00f0ff55;
}

.contact-form textarea {
  resize: vertical;
  min-height: 220px;
}

.checkbox-row {
  margin-top: 0.4rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.18rem;
}

/* ==========================================
   SOCIAL STRIP
========================================== */

.social-strip {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #050019ee;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.social-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid #ffffff22;
  background: #ffffff08;
  color: var(--text-light);
  text-decoration: none;
  transition: 0.18s ease;
  white-space: nowrap;
}
.social-link img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* Grundanimation für Buttons & Icons */
.social-link {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    filter 0.18s ease;
}

.social-link img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* Hover-Effekt: leicht schweben + Glow */
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.9);
  filter: brightness(1.08);
}

/* Icon selbst leicht vergrößern + minimal drehen */
.social-link:hover img {
  transform: scale(1.08) rotate(3deg);
}

/* leichte Farbnuancen je Netzwerk */
.social-fb:hover {
  background: #1877f255;
  border-color: #1877f2aa;
}

.social-ig:hover {
  background: #e1306c55;
  border-color: #e1306caa;
}

.social-tt:hover {
  background: #010101aa;
  border-color: #00f0ff88;
}

.social-yt:hover {
  background: #ff000055;
  border-color: #ff0000aa;
}

@media (max-width: 720px) {
  .social-strip {
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .social-label {
    text-align: center;
    margin-right: 0;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}
/* ==========================================
   FLOATING SOCIAL BAR
========================================== */

.social-floating {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 80; /* über Content, unter Modals */
}

/* Wir nutzen die bestehenden .social-link-Styles mit */
.social-floating .social-link {
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
}

/* Mobile: nach unten legen, als Leiste */
@media (max-width: 720px) {
  .social-floating {
    top: auto;
    bottom: 0.5rem;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    background: #050019ee;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    gap: 0.4rem;
  }

  .social-floating .social-link {
    padding: 0.35rem 0.7rem;
  }
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
  border-top: 1px solid #ffffff22;
  padding: 2rem 1.5rem 2.5rem;
  margin-top: 4rem;
  background: #020010eb;
  backdrop-filter: blur(24px);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--accent-soft);
}

/* ==========================================
   TEAM-BEREICH
========================================== */

.team-profile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.team-photo img {
  border-radius: 14px;
  max-width: 220px;
  height: auto;
}

.team-text p {
  margin-bottom: 0.6rem;
}

/* ==========================================
   DANKE-OVERLAY
========================================== */

.thankyou-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 0, 24, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.thankyou-backdrop.is-visible {
  display: flex;
}


.thankyou-modal {
  max-width: 460px;
  width: calc(100% - 2.5rem);
  background: #050019f0;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 1.8rem 2.3rem;
  text-align: center;
}

.thankyou-modal h2 {
  margin: 0.8rem 0 0.6rem;
}

.thankyou-modal .section-text {
  margin: 0 auto;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* sehr große Screens etwas begrenzen */
@media (min-width: 1600px) {
  .navbar {
    max-width: 1400px;
  }
}

/* standardmäßig mobile-only ausblenden */
.mobile-only {
  display: none;
}

@media (max-width: 720px) {
  .navbar {
    flex-wrap: nowrap;
    gap: 0.6rem;
    justify-content: space-between;
  }

  .burger {
    display: inline-flex;
  }

  .brand img {
    height: 32px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-right: 0;
    padding: 0.75rem 1.5rem 1.2rem;
    background: #050019f5;
    flex-direction: column;
    gap: 0.4rem;
    border-bottom: 1px solid #ffffff22;
    display: none;
    z-index: 40;
  }

  .nav-links a {
    padding: 0.45rem 0.85rem;
    width: 100%;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .hero {
    padding-top: 5rem;
  }

  /* Bilder-Galerien auf Handy ausblenden */
  .vehicle-gallery,
  .sign-gallery,
  .outdoor-gallery,
  .references-gallery {
    display: none;
  }

  .team-profile {
    flex-direction: column;
  }

  .team-photo img {
    max-width: 100%;
  }

  .mobile-only {
    display: block;
  }
}
