/* ═══════════════════════════════════════════════════
   RockGreen United GmbH – Global Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --rgu-dark:       #0d1b2a;
  --rgu-mid:        #1b3a4b;
  --rgu-gold:       #c9a84c;
  --rgu-gold-light: #e2c47a;
  --rgu-light:      #f8f5ef;
  --rgu-text:       #2d3748;
  --rgu-muted:      #64748b;
}

/* ── Base ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--rgu-text);
  background: #fff;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', serif;
}

/* ── Navbar ── */
.navbar {
  background: var(--rgu-dark) !important;
  padding: 1rem 0;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--rgu-gold) !important;
  letter-spacing: 0.03em;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--rgu-gold) !important;
}
.navbar-toggler {
  border: 0;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Buttons ── */
.btn-gold {
  background: var(--rgu-gold);
  color: var(--rgu-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover {
  background: var(--rgu-gold-light);
  color: var(--rgu-dark);
  transform: translateY(-1px);
}
.btn-outline-gold {
  border: 1px solid var(--rgu-gold);
  color: var(--rgu-gold);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline-gold:hover {
  background: var(--rgu-gold);
  color: var(--rgu-dark);
}

/* ── Page Header (Subpages) ── */
.page-header {
  background: linear-gradient(135deg, var(--rgu-dark) 0%, var(--rgu-mid) 100%);
  padding: 5rem 0 3.5rem;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ── Section Utilities ── */
section {
  padding: 5rem 0;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rgu-gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--rgu-dark);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--rgu-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}
.divider-gold {
  width: 50px;
  height: 3px;
  background: var(--rgu-gold);
  margin-bottom: 2rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--rgu-gold);
  padding: 1.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rgu-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--rgu-dark);
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── Cards ── */
.rgu-card {
  background: #fff;
  border: 1px solid #e8e3d8;
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.2s;
}
.rgu-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
  transform: translateY(-3px);
}
.rgu-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rgu-gold);
  margin-bottom: 1.25rem;
}
.rgu-card h4 {
  font-size: 1.1rem;
  color: var(--rgu-dark);
  margin-bottom: 0.75rem;
}
.rgu-card p {
  font-size: 0.9rem;
  color: var(--rgu-muted);
  line-height: 1.7;
  margin: 0;
}
.rgu-card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #f0ebe0;
}
.rgu-card-list li {
  font-size: 0.85rem;
  color: var(--rgu-muted);
  padding: 0.2rem 0;
}
.rgu-card-list li::before {
  content: '→';
  color: var(--rgu-gold);
  margin-right: 0.5rem;
}

/* ── Dark Cards (BAFA etc.) ── */
.rgu-card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 1.75rem;
}
.rgu-card-dark i {
  font-size: 1.6rem;
  color: var(--rgu-gold);
  margin-bottom: 1rem;
  display: block;
}
.rgu-card-dark h5 { color: #fff; margin-bottom: 0.5rem; }
.rgu-card-dark p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ── Value Points ── */
.value-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.value-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--rgu-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rgu-dark);
  font-size: 0.9rem;
}
.value-point-text h6 { font-size: 0.95rem; color: var(--rgu-dark); margin-bottom: 0.2rem; }
.value-point-text p { font-size: 0.85rem; color: var(--rgu-muted); margin: 0; }

/* ── Standorte ── */
.standort-item {
  border-left: 3px solid var(--rgu-gold);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}
.standort-item h6 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rgu-gold);
  margin-bottom: 0.25rem;
}
.standort-item p { font-size: 0.9rem; color: var(--rgu-muted); margin: 0; }

/* ── Hero Image placeholder ── */
.hero-img-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  overflow: hidden;
}
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Section Image ── */
.section-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.section-img::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--rgu-gold);
  z-index: 0;
  border-radius: 2px;
  pointer-events: none;
}
.section-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px;
}

/* ── Contact Form ── */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--rgu-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.contact-form label {
  font-size: 0.85rem;
  color: var(--rgu-muted);
  margin-bottom: 0.4rem;
}

/* ── Info Box ── */
.info-box {
  background: var(--rgu-light);
  border-radius: 4px;
  padding: 1.75rem;
}
.info-box .section-label { margin-bottom: 0.5rem; }

/* ── Highlight Box (Datenschutz etc.) ── */
.highlight-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: 0.9rem; }

/* ── Legal Pages ── */
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--rgu-dark);
  margin: 2.5rem 0 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--rgu-light);
  border-left: 3px solid var(--rgu-gold);
  border-radius: 0 2px 2px 0;
  font-family: 'Playfair Display', serif;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rgu-dark);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p,
.legal-content li { color: #4a5568; line-height: 1.85; font-size: 0.92rem; }

/* ── TOC ── */
.toc {
  background: var(--rgu-light);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.toc h6 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rgu-gold);
  margin-bottom: 1rem;
}
.toc ol { margin: 0; padding-left: 1.25rem; }
.toc li { font-size: 0.88rem; margin-bottom: 0.4rem; }
.toc a { color: var(--rgu-dark); text-decoration: none; }
.toc a:hover { color: var(--rgu-gold); }

/* ── Footer ── */
footer {
  background: var(--rgu-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 1.5rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--rgu-gold);
  margin-bottom: 0.75rem;
}
footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--rgu-gold); }
footer h6 {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0 1rem;
}
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Backgrounds ── */
.bg-rgu-light { background: var(--rgu-light); }
.bg-rgu-dark  { background: var(--rgu-dark); }
