/* NEB-TEC UG – Überarbeitetes, seriöses Corporate-Design (2026) */

/* RESET & BASIS
   -------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color:#f1f5f9;
}

/* Farb- und Layout-Variablen */

:root {
  --neb-primary: #0b1120;      /* tiefes Blau/Anthrazit */
  --neb-secondary: #111827;    /* dunkler Text */
  --neb-accent: #2563eb;       /* Blau */
  --neb-accent-soft: #dbeafe;  /* helles Akzentblau */
  --neb-muted: #6b7280;        /* grauer Fließtext */
  --neb-border: #e5e7eb;
  --neb-bg: #f9fafb;
  --neb-radius-lg: 1.1rem;
  --neb-radius-md: 0.75rem;
  --neb-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.06);
  --neb-shadow-subtle: 0 8px 20px rgba(15, 23, 42, 0.04);
}

/* Hilfsklassen */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

ul {
  list-style: none;
}

/* HEADER & NAVIGATION
   -------------------------------------------------- */

.header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--neb-border);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

/* Logo-Bereich */

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}


.header-logo img {
  width: 76px;
  height: auto;
  border-radius: 1.25rem;
  background: radial-gradient(circle at 20% 20%, #eff6ff, #ffffff 55%, #dbeafe 120%);
  padding: 0.45rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
}

.header-logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neb-primary);
}

.header-tagline {
  font-size: 0.85rem;
  color: var(--neb-muted);
}

/* Navigation Desktop */

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  padding: 0.25rem 0;
  color: #111827;
  transition: color 0.16s ease, transform 0.16s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background-color: var(--neb-accent);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--neb-accent);
  transform: translateY(-1px);
}

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

.nav-active {
  font-weight: 600;
  color: var(--neb-accent);
}

.nav-active::after {
  width: 100%;
}

/* Telefon-Call-to-Action */

.nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

.nav-cta span {
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #dbeafe, #ffffff);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

/* Mobile Navigation */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
}



/* Kleine Logo-Variante für sehr kleine Screens */
@media (max-width: 520px) {
  .header-logo img {
    width: 60px;
  }
}

/* Bild-Galerie für Startseite */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.gallery-item {
  border-radius: var(--neb-radius-md);
  overflow: hidden;
  border: 1px solid var(--neb-border);
  box-shadow: var(--neb-shadow-subtle);
}

.gallery-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* HERO-BADGES & STATS
   -------------------------------------------------- */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: #e5edff;
  color: #1e3a8a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: #1d4ed8;
}

.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 1.05rem;
  color: var(--neb-secondary);
}

@media (max-width: 640px) {
  .hero-stat-row {
    gap: 0.9rem;
  }
}

/* HERO-BEREICH
   -------------------------------------------------- */

.hero {
  background: radial-gradient(circle at top left, #dbeafe 0, #eff6ff 18%, #f9fafb 52%, #ffffff 100%);
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--neb-border);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4b5563;
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--neb-secondary);
  margin-bottom: 0.35rem;
}

.hero-title span {
  color: var(--neb-accent);
}

.hero-subtitle {
  font-size: 1.03rem;
  max-width: 40rem;
  color: var(--neb-muted);
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.hero-meta {
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-meta p + p {
  margin-top: 0.1rem;
}

/* Hero-Logo-Panel rechts */

.hero-logo-panel {
  background: #0b1120;
  color:#475569;
  border-radius: 1.5rem;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--neb-shadow-soft);
  text-align: left;
}

.hero-logo-panel img {
  width: 72px;
  margin-bottom: 0.9rem;
}

.hero-logo-panel h3 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 0.4rem;
}

.hero-logo-panel p {
  font-size: 0.93rem;
  color:#475569;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background-color: var(--neb-accent);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.55);
}

.btn-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color: var(--neb-border);
}

.btn-secondary:hover {
  border-color: #cbd5f5;
  background-color:#f1f5f9;
  transform: translateY(-1px);
}

/* SECTIONS
   -------------------------------------------------- */

.section {
  padding: 3rem 0;
}

.section--light {
  background-color: #ffffff;
}

.section--muted {
  background-color: var(--neb-bg);
  border-top: 1px solid var(--neb-border);
  border-bottom: 1px solid var(--neb-border);
}


.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neb-accent);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--neb-secondary);
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--neb-muted);
}

/* GRIDS & KARTEN
   -------------------------------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Allgemeine Karte */

.card {
  background-color: #ffffff;
  border-radius: var(--neb-radius-lg);
  border: 1px solid var(--neb-border);
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: var(--neb-shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #cbd5f5;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--neb-secondary);
}

.card p {
  font-size: 0.95rem;
  color: var(--neb-muted);
}

/* Karte mit Bild (Leistungen) */

.card-media {
  border-radius: var(--neb-radius-md);
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.card-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

/* Kleine Tag-Badge */

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: #eff6ff;
  color: #1d4ed8;
}

/* PROJEKTE
   -------------------------------------------------- */

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.project-card {
  background-color: #ffffff;
  border-radius: var(--neb-radius-lg);
  border: 1px solid var(--neb-border);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--neb-shadow-subtle);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5f5;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.project-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.project-card p {
  font-size: 0.94rem;
  color: var(--neb-muted);
}

/* LISTEN, STEP-LISTEN ETC. (z.B. Über uns / Ablauf) */

.feature-list,
.step-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--neb-muted);
}

.feature-list li::before,
.step-list li::before {
  content: "•";
  color: var(--neb-accent);
  margin-right: 0.5rem;
}

/* FORMULARE (Kontakt)
   -------------------------------------------------- */

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neb-secondary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--neb-border);
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
  background-color:#f1f5f9;
}

/* FOOTER
   -------------------------------------------------- */

.footer {
  background-color: #020617;
  color:#64748b;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.86rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-nav a {
  color:#475569;
  opacity: 0.8;
  transition: opacity 0.16s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

/* TYPOGRAFIE FÜR RECHTSTEXTE (Impressum / Datenschutz)
   -------------------------------------------------- */

.main-legal {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.main-legal h1,
.main-legal h2,
.main-legal h3 {
  font-weight: 700;
  color: var(--neb-secondary);
  margin-bottom: 0.4rem;
}

.main-legal h1 {
  font-size: 1.7rem;
}

.main-legal h2 {
  font-size: 1.2rem;
  margin-top: 1.6rem;
}

.main-legal h3 {
  font-size: 1rem;
  margin-top: 1.2rem;
}

.main-legal p,
.main-legal li {
  font-size: 0.95rem;
  color: var(--neb-muted);
}

.main-legal p + p {
  margin-top: 0.5rem;
}

.main-legal ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

/* RESPONSIVE
   -------------------------------------------------- */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 1.8rem;
  }
}

@media (max-width: 800px) {
  .header-inner {
    padding: 0.8rem 0;
  }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    margin-top: 0.4rem;
    background-color: #ffffff;
    border-top: 1px solid var(--neb-border);
    padding: 0.8rem 1.5rem 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-logo-panel {
    order: -1;
  }

  .grid,
  .grid--2,
  .grid--3,
  .project-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 2.3rem 0 2.6rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section {
    padding: 2.4rem 0;
  }
}


/* MODERNES THEME – OVERRIDES
   -------------------------------------------------- */

/* Farbwelt leicht aktualisiert: dunkleres Navy + frisches Blau/Teal */

:root {
  --neb-primary: #020617;
  --neb-secondary: #0b1120;
  --neb-accent: #3b82f6;
  --neb-accent-soft: #dbeafe;
  --neb-muted: #6b7280;
  --neb-border: #e5e7eb;
  --neb-bg: #f3f4f6;
}

/* Header als moderner Verlauf mit heller Typografie */

.header {
  background: radial-gradient(circle at top left, #020617 0, #020617 40%, #0b1120 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.45);
}

.header-inner {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header-logo-text,
.header-tagline {
  color:#475569;
}

.nav a {
  color:#475569;
}

.nav a::after {
  background-color: #38bdf8;
}

.nav-active {
  color: #38bdf8;
}

/* Call-to-Action im Header */

.nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

.nav-cta:hover {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

/* Logo leicht vergrößert und stärker inszeniert */

.header-logo img {
  width: 88px;
}

/* Hero-Bereich mit etwas kräftigerem Verlauf */

.hero {
  background: radial-gradient(circle at top left, #0f172a 0, #0b1120 30%, #020617 70%, #020617 100%);
  color:#475569;
  border-bottom: none;
}

.hero-title {
  color:#f1f5f9;
}

.hero-title span {
  color: #38bdf8;
}

.hero-subtitle {
  color: #cbd5f5;
}

.hero-meta {
  color:#64748b;
}

.hero-logo-panel {
  background: radial-gradient(circle at top left, #0b1120 0, #020617 55%, #111827 100%);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Badges auf dunklem Hintergrund leicht aufgehellt */

.hero-badge {
  background-color: rgba(15, 23, 42, 0.8);
  color: #bfdbfe;
}

.hero-badge-dot {
  background-color: #22c55e;
}

/* Buttons: moderner Farbverlauf und klarer Outline-Button */

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  box-shadow: 0 18px 45px rgba(59, 130, 246, 0.55);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #16a34a);
}

.btn-secondary {
  background-color: transparent;
  color:#475569;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-secondary:hover {
  background-color: rgba(15, 23, 42, 0.7);
}

/* Sektionen: helle Flächen, dezenter Kontrast */

.section--light {
  background-color:#f1f5f9;
}

.section--muted {
  background: radial-gradient(circle at top left, #0b1120 0, #020617 60%, #020617 100%);
  border-top: none;
  border-bottom: none;
}

.section--muted .section-title,
.section--muted .section-subtitle,
.section--muted p {
  color:#475569;
}

/* Karten vor dunklem Hintergrund leicht hervorgehoben */

.section--muted .project-card {
  background-color: #020617;
  border-color: rgba(148, 163, 184, 0.5);
}

/* Galerie-Bilder mit leicht dunklerem Rahmen */

.gallery-item {
  border-color: rgba(148, 163, 184, 0.55);
}

/* Footer an neue Farbwelt angepasst */

.footer {
  background: radial-gradient(circle at top left, #020617 0, #020617 60%, #020617 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}


/* PREMIUM THEME – HELL, MODERN & EDLER
   -------------------------------------------------- */

/* Neue, leichte Farbpalette mit edlem Blau & warmem Akzent */

:root {
  --neb-primary: #020617;
  --neb-secondary: #0f172a;
  --neb-accent: #2563eb;        /* klares Blau */
  --neb-accent-soft: #e0ecff;   /* sehr helles Blau */
  --neb-muted: #6b7280;
  --neb-border: #e5e7eb;
  --neb-bg: #f5f5f7;
}

/* Gesamt-Background etwas heller */

body {
  background: radial-gradient(circle at top left, #ffffff 0, #f5f5f7 45%, #e5e7eb 100%);
  color: var(--neb-secondary);
}

/* Header: helle, „luftige“ Leiste mit leichter Kontur */

.header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo deutlich größer und „gezoomt“ */

.header-logo img {
  width: 104px;
  height: auto;
}

/* Logo-Typo in dunklem Blau, Tagline etwas dezenter */

.header-logo-text {
  color: #0f172a;
}

.header-tagline {
  color:#475569;
}

/* Navigation in edlem Dunkelblau */

.nav a {
  color: #0f172a;
}

.nav-active {
  color: var(--neb-accent);
}

.nav a::after {
  background-color: var(--neb-accent);
}

/* CTA im Header mit edlem Blau-Gold-Farbverlauf */

.nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

.nav-cta:hover {
  background: linear-gradient(135deg, #fbbf24, #1d4ed8);
}

/* Hero-Bereich: helle Fläche mit weichem Verlauf und großem Logo-Panel */

.hero {
  background: radial-gradient(circle at top left, #eff6ff 0, #f9fafb 40%, #ffffff 100%);
  padding-top: 3.3rem;
  padding-bottom: 3.3rem;
  border-bottom: 1px solid #e5e7eb;
}

.hero-title {
  color: #020617;
}

.hero-title span {
  color: #1d4ed8;
}

.hero-subtitle {
  color: #4b5563;
}

.hero-meta {
  color:#475569;
}

/* Badge-Stil etwas „feiner“ */

.hero-badge {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1d4ed8;
}

.hero-badge-dot {
  background-color: #fbbf24;
}

/* Logo-Panel rechts: hell, mit leichtem Rahmen */

.hero-logo-panel {
  background: #ffffff;
  color: #111827;
  border-radius: 1.6rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

/* Buttons: klarer Primär- und Sekundärstil */

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.btn-secondary:hover {
  background-color:#f1f5f9;
}

/* Sektionen & Karten */

.section--light {
  background-color:#f1f5f9;
}

.section--muted {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.card,
.project-card {
  background-color: #ffffff;
  border-color:#475569;
}

/* Galerie mit hellen Rahmen */

.gallery-item {
  border-color:#475569;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Footer passend hell und reduziert */

.footer {
  background: #0b1120;
  color:#64748b;
  border-top: 1px solid #020617;
}

.footer-nav a {
  color:#475569;
}

/* Mobile: Header bleibt hell, Logo bleibt dominant */

@media (max-width: 520px) {
  .header-logo img {
    width: 90px;
  }
}


/* VIP THEME – ELEGANT, SERIÖS & „HIGH-END“
   -------------------------------------------------- */

/* Farbpalette: tiefes Nachtblau + warmes Gold als Akzent, kombiniert mit viel Weiß */

:root {
  --neb-primary: #020617;       /* sehr dunkles Blau/Anthrazit */
  --neb-secondary: #020617;
  --neb-accent: #eab308;        /* Gold/Amber */
  --neb-accent-soft: #fef9c3;   /* helles Gold */
  --neb-muted: #6b7280;
  --neb-border: #e5e7eb;
  --neb-bg: #f5f5f7;
}

/* Hintergrund dezent luxuriös */

body {
  background:
    radial-gradient(circle at top left, #fefce8 0, #f9fafb 28%, #f5f5f7 55%, #e5e7eb 100%);
  color: var(--neb-secondary);
}

/* HEADER – klare, edle Leiste mit großem Logo */

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.06);
}

.header-inner {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

/* Logo „herangezoomt“ */

.header-logo img {
  width: 116px;
  height: auto;
}

@media (max-width: 520px) {
  .header-logo img {
    width: 96px;
  }
}

.header-logo-text {
  color: #020617;
  letter-spacing: 0.14em;
}

.header-tagline {
  color:#475569;
}

/* Navigation schlicht und edel */

.nav a {
  color: #020617;
  font-weight: 500;
}

.nav a::after {
  background-color: var(--neb-accent);
}

.nav-active {
  color: var(--neb-accent);
}

/* CTA im Header in Gold, aber dezent */

.nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

.nav-cta:hover {
  background: linear-gradient(135deg, #eab308, #fbbf24);
}

/* HERO – viel Weiß, feine Typografie, klare Hierarchie */

.hero {
  background: radial-gradient(circle at top left, #fefce8 0, #f9fafb 40%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #020617;
}

.hero-title span {
  color: var(--neb-accent);
}

.hero-subtitle {
  color: #4b5563;
  font-size: 1.05rem;
}

.hero-meta {
  color:#475569;
}

/* Badges VIP-Style */

.hero-badge {
  background-color: #ffffff;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #92400e;
}

.hero-badge-dot {
  background-color: var(--neb-accent);
}

/* Hero-Panel mit Logo als „VIP-Karte“ */

.hero-logo-panel {
  background: #ffffff;
  color: #111827;
  border-radius: 1.8rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

/* Buttons – klar, elegant */

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #eab308);
  color:#f1f5f9;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #d97706);
}

.btn-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color:#475569;
}

.btn-secondary:hover {
  background-color:#f1f5f9;
}

/* Sektionen & Karten – viel Weißraum, sanfte Rahmen */

.section--light {
  background-color:#f1f5f9;
}

.section--muted {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.card,
.project-card {
  background-color: #ffffff;
  border-radius: 1.4rem;
  border-color:#475569;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

/* Galerie – High-End Thumbnails */

.gallery-item {
  border-radius: 1.2rem;
  border-color:#475569;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

/* Footer – dunkel, ruhig, hochwertig */

.footer {
  background: #020617;
  color:#64748b;
  border-top: 1px solid #020617;
}

.footer-nav a {
  color:#475569;
}


/* CALM ELEGANT THEME – DEZENT, KUNDENFREUNDLICH & PROFESSIONELL
   -------------------------------------------------- */

/* Farbpalette: warme Grau-/Sandtöne + zurückhaltendes Blau */

:root {
  --neb-primary: #111827;        /* dunkles Schiefergrau */
  --neb-secondary: #111827;
  --neb-accent: #1d4ed8;         /* gedecktes Blau */
  --neb-accent-soft: #e5edff;    /* sehr helles Blau */
  --neb-muted: #6b7280;
  --neb-border: #e5e7eb;
  --neb-bg: #f5f5f4;             /* warmes Hellgrau / Greige */
}

/* Hintergrund insgesamt wärmer und ruhiger */

body {
  background: radial-gradient(circle at top left, #fefcf5 0, #f5f5f4 45%, #e5e7eb 100%);
  color: var(--neb-secondary);
}

/* HEADER – klare Linie, ruhig und nicht „schreiend“ */

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo: groß, aber ruhig eingebettet */

.header-logo img {
  width: 110px;
  height: auto;
}

@media (max-width: 520px) {
  .header-logo img {
    width: 92px;
  }
}

.header-logo-text {
  color: #111827;
}

.header-tagline {
  color:#475569;
}

/* Navigation in dunklem Grau-Blau */

.nav a {
  color: #111827;
  font-weight: 500;
}

.nav a::after {
  background-color: var(--neb-accent);
}

.nav-active {
  color: var(--neb-accent);
}

/* CTA im Header: schlichtes Blau, kein knalliger Verlauf */

.nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

.nav-cta:hover {
  background-color: #1e40af;
}

/* HERO – hell, freundlich, mit leichtem warmen Unterton */

.hero {
  background: linear-gradient(135deg, #fefcf5 0%, #f9fafb 40%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.hero-title {
  color: #111827;
}

.hero-title span {
  color: #1d4ed8;
}

.hero-subtitle {
  color: #4b5563;
}

.hero-meta {
  color:#475569;
}

/* Badges sehr dezent */

.hero-badge {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.hero-badge-dot {
  background-color: #1d4ed8;
}

/* Logo-Panel – helle Karte mit leicht warmem Hintergrund */

.hero-logo-panel {
  background: #ffffff;
  color: #111827;
  border-radius: 1.6rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* Buttons – klar, aber zurückhaltend harmonisch */

.btn-primary {
  background-color: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.38);
}

.btn-primary:hover {
  background-color: #1e40af;
}

.btn-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color: #d1d5db;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
}

/* Sektionen & Karten – viel Weißraum, dezente Konturen */

.section--light {
  background-color:#f1f5f9;
}

.section--muted {
  background-color: #f5f5f4;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.card,
.project-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border-color:#475569;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

/* Galerie – ruhige, helle Darstellung */

.gallery-item {
  border-radius: 1rem;
  border-color:#475569;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

/* Footer – dunkler, aber weich und seriös */

.footer {
  background: #030712;
  color:#64748b;
  border-top: 1px solid #020617;
}

.footer-nav a {
  color:#475569;
}


/* HANDWERK-REFERENZ THEME – angelehnt an Vorlage, mit Orange-CTA
   -------------------------------------------------- */

:root {
  --neb-primary: #111827;
  --neb-secondary: #111827;
  --neb-accent: #1d4ed8;         /* gedecktes Blau */
  --neb-accent-soft: #e5edff;
  --neb-muted: #6b7280;
  --neb-border: #e5e7eb;
  --neb-bg: #f3f4f6;
}

/* Gesamt-Hintergrund in hellem, neutralem Grau */

body {
  background-color: #f3f4f6;
}

/* Header: weiße Leiste, dezenter Schatten */

.header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.header-inner {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

/* Logo gut sichtbar, aber nicht übertrieben */

.header-logo img {
  width: 100px;
  height: auto;
}

@media (max-width: 520px) {
  .header-logo img {
    width: 86px;
  }
}

.header-logo-text {
  color: #111827;
}

.header-tagline {
  color:#475569;
}

/* Navigation: dunkles Grau, aktiver Tab blau, Call-to-Action dunkel */

.nav a {
  color: #111827;
  font-weight: 500;
}

.nav a::after {
  background-color: var(--neb-accent);
}

.nav-active {
  color: var(--neb-accent);
}

.nav-cta { padding: 0.6rem 1.3rem; font-size: 1.05rem; border-radius: 999px; font-weight:700; }

.nav-cta:hover {
  background-color: #020617;
}

/* HERO: großes, ruhiges Bildband mit Überlagerung */

.hero {
  position: relative;
  border-bottom: none;
  padding-top: 3.2rem;
  padding-bottom: 3.4rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.7)),
              url("img/mauerwerksbau.png") center center / cover no-repeat;
  color: #ffffff;
}

.hero-inner {
  display: block;
}

.hero-title {
  color: #ffffff;
}

.hero-title span {
  color: #fde68a;
}

.hero-subtitle {
  color:#475569;
}

.hero-meta {
  color:#475569;
}

/* Badges auf Hero etwas transparenter */

.hero-badge {
  background-color: rgba(15, 23, 42, 0.65);
  border-color: rgba(148, 163, 184, 0.7);
  color:#475569;
}

.hero-badge-dot {
  background-color: #f97316;
}

/* Logo-Panel im Hero ausblenden auf Desktop, um breites Bild zu erhalten */

.hero-logo-panel {
  display: none;
}

/* Buttons: Primär orange (wie Vorlage), Sekundär hell */

.btn-primary {
  background-color: #f97316;
  background-image: none;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(248, 115, 22, 0.5);
}

.btn-primary:hover {
  background-color: #ea580c;
}

.btn-secondary {
  background-color: #ffffff;
  color: #111827;
  border-color:#475569;
}

.btn-secondary:hover {
  background-color:#f1f5f9;
}

/* Sektionen: weiße Karten auf hellem Grau */

.section--light {
  background-color:#f1f5f9;
}

.section--muted {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Kartenstil angelehnt an Vorlage: Bild oben, Titel, Bullet-Infos, oranger Button */

.card,
.project-card {
  background-color: #ffffff;
  border-color:#475569;
  border-radius: 0.9rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

/* Galerie-Bilder leicht abgerundet, dezenter Schatten */

.gallery-item {
  border-radius: 0.9rem;
  border-color:#475569;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

/* Footer schlicht dunkelgrau */

.footer {
  background-color: #030712;
  border-top: 1px solid #020617;
}

.footer-nav a {
  color:#475569;
}


/* HANDWERK PLUS – Zusätzliche Styles für Register, Fakten & Kontakt
   -------------------------------------------------- */

.pill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.6rem 0 1.4rem;
}

.pill-tab {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--neb-border);
  background-color: #ffffff;
  font-size: 0.9rem;
  color: #374151;
  cursor: default;
}

.pill-tab--active {
  background-color: #111827;
  color: #ffffff;
  border-color: #111827;
}

.pill-tab--accent {
  border-style: dashed;
  border-color:#64748b;
}

/* Fakten-Gitter für „Über uns“ und Startseite */

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.fact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fact-item strong {
  font-size: 1.02rem;
  color: #111827;
}

.fact-item span {
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .fact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Kontakt-Hervorhebung */

.contact-highlight {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background-color: #111827;
  color:#475569;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.contact-highlight p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-highlight strong {
  color:#f1f5f9;
}

.contact-highlight .btn-primary {
  background-color: #f97316;
  box-shadow: 0 16px 36px rgba(248, 115, 22, 0.6);
}

.contact-highlight .btn-primary:hover {
  background-color: #ea580c;
}

/* Kleine Infozeile (z.B. im Kontaktformular) */

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.88rem;
  color:#475569;
  margin-top: 0.8rem;
}

.info-row-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Referenz-Teaser o.ä. */

.reference-teaser {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.94rem;
  color: #4b5563;
}

/* -----------------------------------------------
   Modernes Theme-Update 2026 – zusätzliche Verläufe,
   etwas mehr Rahmen & weicher Card-Look
   ----------------------------------------------- */

:root {
  --neb-primary: #020617;
  --neb-secondary: #020617;
  --neb-accent: #0072ff;
  --neb-accent-soft: #e0f2fe;
  --neb-muted: #6b7280;
  --neb-border: #e2e8f0;
  --neb-bg: #f4f6f9;
  --neb-radius-lg: 1.25rem;
  --neb-radius-md: 0.9rem;
}

/* Header leicht „glassy“ und moderner */

.header {
  background: linear-gradient(135deg, rgba(15,23,42,0.94), rgba(15,23,42,0.88));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148,163,184,0.6);
}

/* Hero mit sanftem Verlaufs-Hintergrund und Cards */

.hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,0.20), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(59,130,246,0.22), transparent 55%),
    linear-gradient(180deg, #020617, #020617);
  color:#475569;
}

.hero-title {
  color:#f1f5f9;
}

.hero-subtitle {
  color: #cbd5f5;
}

/* Sektionen mit etwas mehr Card-/Rahmen-Optik */

.section--light {
  background: #f9fafb;
}

.section--muted {
  background: #eef2ff;
}

.card,
.project-card {
  border-radius: var(--neb-radius-lg);
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.card:hover,
.project-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 22px 55px rgba(15,23,42,0.15);
}

/* Buttons etwas moderner / pill-förmig */

.btn,
.btn-primary,
.btn-outline {
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0284c7, #1d4ed8);
  transform: translateY(-1px);
}

/* Kleine Karte im Kontakt / Footer mit klaren Rändern */

.contact-box,
.footer-top {
  border-radius: var(--neb-radius-lg);
  border: 1px solid rgba(148,163,184,0.4);
}

/* -------------------------------------------------
   Lesbarkeit + Kontrast optimiert
   - stärkere Textfarben
   - ruhigere Hintergründe
   - klarere Buttons
   ------------------------------------------------- */

:root {
  --neb-primary: #111827;          /* sehr gut lesbares Dunkelblau/Schwarz */
  --neb-secondary: #111827;
  --neb-accent: #2563eb;           /* klares Blau für Links/Buttons */
  --neb-accent-soft: #dbeafe;      /* leichtes Blau für Hintergründe */
  --neb-muted: #374151;            /* dunkleres Grau für Fließtext */
  --neb-border: #e5e7eb;           /* dezente, aber sichtbare Rahmen */
  --neb-bg: #f3f4f6;               /* sehr helles Grau als Grundfläche */
  --neb-radius-lg: 1.25rem;
  --neb-radius-md: 0.9rem;
}

/* Grundlegende Textlesbarkeit */

body {
  background-color: var(--neb-bg);
  color: var(--neb-primary);
  font-size: 16px;
  line-height: 1.7;
}

/* Header & Navigation */

.header {
  background: linear-gradient(135deg, #0f172a, #020617);
  color:#f1f5f9;
}

.header a {
  color:#475569;
}

.header a:hover {
  color: #ffffff;
}

/* Hero mit klarem Text-Kontrast */

.hero {
  color:#475569;
}

.hero-title,
.hero h1,
.hero h2 {
  color:#f1f5f9;
}

.hero-subtitle,
.hero p {
  color:#475569;
}

/* Standard-Text in Sektionen */

.section,
.section--light,
.section--muted {
  color: var(--neb-primary);
}

.section--light {
  background-color: #ffffff;
}

.section--muted {
  background-color:#f1f5f9;
}

/* Karten / Projektboxen */

.card,
.project-card,
.contact-box,
.footer-top {
  background-color: #ffffff;
  color: var(--neb-primary);
  border-radius: var(--neb-radius-lg);
  border: 1px solid var(--neb-border);
}

/* Links im Text */

a {
  color: var(--neb-accent);
}

a:hover {
  text-decoration: underline;
}

/* Buttons – deutlich lesbar und klar getrennt */

.btn,
.btn-primary,
.btn-outline {
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hauptbutton */

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff !important;
  border: 1px solid #1d4ed8;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Outlined / Zweitbutton */

.btn-outline {
  background-color: #ffffff;
  color: var(--neb-accent) !important;
  border: 1px solid #bfdbfe;
}

.btn-outline:hover {
  background-color: #eff6ff;
}

/* Listen, Info-Boxen, kleine Texte */

ul li,
ol li,
p,
small {
  color: var(--neb-muted);
}

/* Footer gut lesbar */

.footer,
.footer-bottom {
  background-color: #0b1120;
  color:#475569;
}

.footer a,
.footer-bottom a {
  color: #bfdbfe;
}

.footer a:hover,
.footer-bottom a:hover {
  color: #e0f2fe;
}

/* Background Logo behind mid content */
.neb-bg-wrap {
  position: relative;
  background: url('img/logo-bg.png') no-repeat center center;
  background-size: 420px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 800px) {
  .neb-bg-wrap {
    background-size: 65%;
    background-position: top center;
  }
}

/* -------------------------------------------------
   Logo-Fokus Bereich mittig auf der Startseite
   ------------------------------------------------- */

.section--logo-focus {
  background: radial-gradient(circle at top, #e5e7eb 0, #f3f4f6 42%, #ffffff 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.logo-focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.3rem;
}

.logo-focus-img {
  max-width: 380px;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(15,23,42,0.35));
}

.logo-focus-name {

  font-size: 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  font-weight: 800;
}

.logo-focus-tagline {
  font-size: 1.1rem;
  color: #4b5563;
}

/* auf kleineren Displays etwas kleiner */
@media (max-width: 640px) {
  .logo-focus-img {
    max-width: 260px;
    width: 82%;
  }
  .logo-focus-name {
    font-size: 1.4rem;
    letter-spacing: 0.16em;
  }
  .logo-focus-tagline {
    font-size: 1rem;
  }
}

.logo-focus-name::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #facc15, #f97316);
}


/* About hero layout */
.about-hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 2rem;
}
.about-image img {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 12px 30px rgba(15,23,42,0.2));
}
.about-highlights {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.about-highlights li {
  margin: 0.2rem 0;
  font-weight: 600;
  color: var(--neb-primary);
}
@media(max-width: 840px){
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image img {
    margin: 0 auto;
  }
}

.section-title,
.section-header h1,
.section-header h2,
h1,h2,h3 {
  color:#0f172a !important;
}


.nav-cta {
  background:#2563eb !important;
  color:#ffffff !important;
  padding:0.65rem 1.3rem !important;
  border-radius:999px !important;
  font-weight:700 !important;
  font-size:1.05rem !important;
  border:2px solid #1e40af !important;
}
.nav-cta:hover {
  background:#1e40af !important;
}


/* ==== STRONGER HERO CONTRAST FIX ==== */
.hero-meta p,
.hero-stat span,
.hero-stat strong,
.hero-tagline,
.hero-features span,
.hero-features strong {
  color:#0f172a !important;   /* near-black slate */
}

/* Ensure all light overlays are readable on gradients */
.section--dark,
.hero,
.hero .container {
  color:#0f172a !important;
}

/* Specific muted text fix */
.muted,
.small-text,
.section-subtitle,
.feature-list li,
.step-list li {
  color:#1e293b !important; /* slate-800 */
}

.hero-stat strong { color:#0f172a !important; }
.hero-stat span { color:#1e293b !important; }
.hero-meta p { color:#1e293b !important; }


/* =========================================================
   BRIGHT & PROFESSIONAL THEME – MAXIMUM READABILITY
   ========================================================= */

/* Helle, ruhige Hero-Fläche mit dunkler Schrift */
.hero {
  background: linear-gradient(135deg, #fdfdfd 0%, #f3f4f6 40%, #ffffff 100%) !important;
  color: #0f172a !important;
}

/* Hero-Titel & Untertitel klar dunkel */
.hero-title,
.hero-title span,
.hero-subtitle {
  color: #0f172a !important;
}

/* Hero-Badges hell mit gut lesbarer Schrift */
.hero-badge {
  background-color: #e5f0ff !important;
  color: #1d4ed8 !important;
}

.hero-badge-dot {
  background-color: #22c55e !important;
}

/* Hero-Meta & Kennzahlen (1 Ansprechpartner, Fokus Bestandsbau, Region bundesweit) */
.hero-meta p,
.hero-stat strong,
.hero-stat span {
  color: #111827 !important;
}

/* Allgemeine Fließtexte etwas dunkler für bessere Lesbarkeit */
body,
p,
li,
.section-subtitle,
.feature-list li,
.step-list li {
  color: #1f2937 !important;
}

/* Überschriften generell dunkel */
h1, h2, h3,
.section-title,
.section-header h1,
.section-header h2 {
  color: #0f172a !important;
}

/* Karten & helle Sektionen – klassisch weiß mit dunkler Schrift */
.section--light,
.card,
.project-card {
  background-color: #ffffff !important;
  color: #111827 !important;
}

/* Footer bleibt dunkel mit heller Schrift */
.footer,
.footer-bottom {
  background-color: #020617 !important;
  color: #e5e7eb !important;
}



/* PREMIUM ENHANCEMENTS
   -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body{
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Sticky Header + subtle glass effect on scroll */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(1.2) blur(6px);
}

.header.scrolled{
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  border-bottom-color: rgba(148,163,184,0.30);
}

/* Premium hero background image layer */
.hero{
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(59,130,246,0.18) 0, rgba(59,130,246,0.00) 55%),
    radial-gradient(circle at 80% 80%, rgba(14,165,233,0.12) 0, rgba(14,165,233,0.00) 60%),
    url("img/gewerbeflaeche-rohbau.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  opacity: 0.14;
  transform: scale(1.02);
  pointer-events:none;
}

.hero-inner,
.hero .container,
.hero *{
  position: relative;
  z-index: 1;
}

/* Reveal-on-scroll animation */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Slightly punchier buttons */
.btn{
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.16);
}

.btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.14);
}

/* Improve card hover a touch */
.card:hover,
.project-card:hover,
.gallery-item:hover{
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.16);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .btn{ transition: none; }
  .btn:hover{ transform:none; box-shadow:none; }
}
