:root {
  --bg-dark: #020617;
  --bg-darker: #0b1120;
  --bg-card: #020617;
  --border-subtle: #1f2937;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #3b82f6;
  --accent-soft: #1d4ed8;
  --badge-bg: rgba(15, 23, 42, 0.8);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.65);
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: radial-gradient(circle at top, #111827 0, #020617 45%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Navigation */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 1rem;
  position: relative;
  z-index: 10;
}

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

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #60a5fa 0, #1d4ed8 32%, #020617 72%);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

.logo-text-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.5);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.9));
  backdrop-filter: blur(14px);
}

.nav-cta span {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-links {
	display: none;
  }
}

/* Hero */

.hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 0.75rem;
  background-image:
	linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(37, 99, 235, 0.45)),
	url('images/bobare-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: soft-light;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
	radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.22) 0, transparent 55%),
	radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.18) 0, transparent 55%),
	linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.75));
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .hero-inner {
	grid-template-columns: minmax(0, 1fr);
	padding: 2.1rem 1.75rem 2.3rem;
  }
}

@media (max-width: 640px) {
  .hero-inner {
	padding: 1.75rem 1.25rem 2rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.8rem 0.25rem 0.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(16px);
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #eff6ff 0, #60a5fa 40%, #1e40af 100%);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.hero-heading {
  margin-top: 1.3rem;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-heading span {
  display: block;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bfdbfe;
  margin-bottom: 0.35rem;
}

.hero-sub {
  margin-top: 0.9rem;
  max-width: 36rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.hero-sub span {
  color: #bfdbfe;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
  align-items: center;
}

.btn-primary {
  border: none;
  background: radial-gradient(circle at 0 0, #60a5fa 0, #2563eb 45%, #1d4ed8 100%);
  color: white;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.6);
}

.btn-primary span {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-main);
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.btn-ghost span {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta-block {
  border-left: 1px solid rgba(148, 163, 184, 0.4);
  padding-left: 0.9rem;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: #94a3b8;
}

.hero-meta-value {
  margin-top: 0.12rem;
  color: #e5e7eb;
}

/* Hero Card */

.hero-card {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18) 0, rgba(15, 23, 42, 0.95) 45%, rgba(2, 6, 23, 1) 100%);
  border-radius: 1.5rem;
  padding: 1.3rem 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 360px;
  margin-left: auto;
  backdrop-filter: blur(16px);
}

@media (max-width: 900px) {
  .hero-card {
	max-width: none;
	margin-left: 0;
  }
}

.hero-card-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #bfdbfe;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  font-size: 0.83rem;
}

.hero-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.hero-card-value {
  color: #e5e7eb;
}

.hero-card-note {
  font-size: 0.78rem;
  color: #cbd5f5;
}

/* Allgemeine Sections */

main {
  flex: 1;
}

section {
  margin-top: 3rem;
}

section h2 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

section p {
  margin: 0.25rem 0 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

/* Kennzahlen */

.stats {
  margin-top: 2.9rem;
}

.stats-inner {
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.7rem 1.6rem;
  border: 1px solid #1f2937;
  background:
	radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.4), transparent 55%),
	radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.9), #020617);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.9rem;
  align-items: center;
}

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

.stats-intro p {
  color: #d1d5db;
}

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

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

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

.stat-card {
  border-radius: 1.1rem;
  padding: 0.9rem 0.95rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.8);
}

.stat-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #60a5fa 0, #2563eb 45%, #0b1120 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-number {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e5e7eb;
}

.stat-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-left: 0.1rem;
}

/* Karten Raster */

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

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

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

.card {
  background: radial-gradient(circle at top, #020617 0, #020617 60%, #000000 100%);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.25rem;
  border: 1px solid rgba(31, 41, 55, 0.8);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.card-sub {
  font-size: 0.83rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.05rem;
  font-size: 0.86rem;
  color: #d1d5db;
}

.card li {
  margin-bottom: 0.28rem;
}

.pill {
  display: inline-flex;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.55rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
}

/* Grid 2 */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

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

/* Key Data */

.key-data {
  background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.4), transparent 55%),
			  radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.8), #020617);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.2rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.key-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  font-size: 0.86rem;
  margin-top: 0.9rem;
}

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

.key-data-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.08rem;
}

.key-data-value {
  color: #e5e7eb;
}

.muted-small {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.55rem;
}

/* Kontakt */

.contact {
  margin-top: 1.8rem;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.6), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.5rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.95);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.75rem;
}

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

.contact h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.contact p {
  margin: 0.2rem 0 0.4rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.contact-highlight {
  font-size: 0.83rem;
  color: #dbeafe;
  margin-top: 0.45rem;
}

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

label {
  font-size: 0.8rem;
  color: #e5e7eb;
  display: block;
  margin-bottom: 0.2rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 1px #93c5fd;
}

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

.btn-submit {
  margin-top: 0.35rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: #0b1120;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.9);
}

.btn-submit span {
  font-size: 1.1rem;
  line-height: 1;
}

/* Galerie */

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

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

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

.gallery-item {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid #1f2937;
  background: #020617;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.15), transparent 55%);
  pointer-events: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

/* Footer */

footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
}

footer a:hover {
  color: #e5e7eb;
}