/* =========================================================
   BASE STYLES – CLEAN, PROFESSIONAL, HERO-SAFE VERSION
   ========================================================= */

/* RESET & GLOBAL SETUP ----------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background: #020617; /* Falls Video fehlt -> fallback */
}

/* ROOT VARIABLES ------------------------------------------ */

:root {
  --bg-body: #050816;
  --bg-alt: #0b1020;
  --card-bg: #0f172a;

  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-strong: rgba(249, 115, 22, 0.18);

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;

  --border-subtle: #1f2937;

  --error: #f97373;

  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --shadow-subtle: 0 8px 24px rgba(15, 23, 42, 0.6);

  --transition-fast: 0.2s ease;
}

/* GLOBAL ELEMENTS ----------------------------------------- */

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

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

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

/* CONTAINER ------------------------------------------------ */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* BUTTONS -------------------------------------------------- */

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #f9fafb;
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.65);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}

/* OPTIONAL BACKGROUND VIDEO (GLOBAL) ---------------------- */
/* Falls nicht benutzt -> völlig egal, macht nichts kaputt */

#site-bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;

  z-index: -9999;
  pointer-events: none;

  filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

/* FULLPAGE SCROLLING -------------------------------------- */
/* Wenn du dein eigenes JS Fullpage-System nutzt: löschen */
/* Wenn du CSS Snap möchtest: lassen */

html, body {
  height: 100%;
}

body {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.section,
#hero {
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
