/* ============================================================
   EURO HOTEL SUPPLY – branchen.css  v1.0
   Gemeinsame Stile für alle Branchenseiten unter /branchen/
   Präfix: br-
   Globale Variablen, Buttons, Container, Header, Footer
   kommen aus styles.css.
   ============================================================ */


/* ============================================================
   1. HERO
   Explizite Textfarben – body color ist dunkel
   ============================================================ */

.br-hero {
  background: linear-gradient(
    135deg,
    var(--c-navy-dark) 0%,
    var(--c-navy)      55%,
    var(--c-navy-mid)  100%
  );
  padding-block: var(--sp-40);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.br-hero-inner {
  max-width: 780px;
}

.br-hero .hero-eyebrow {
  color: var(--c-gold-light);
}

.br-hero .hero-eyebrow-line {
  background-color: var(--c-gold);
}

.br-hero-h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-10);
  max-width: 680px;
}

.br-hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.72;
  max-width: 640px;
  margin-bottom: var(--sp-6);
}

.br-hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.68;
  max-width: 600px;
  margin-bottom: var(--sp-16);
}


/* ============================================================
   2. SCHNELLNAVIGATION (nur auf Übersichtsseite)
   ============================================================ */

.br-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.br-nav-card {
  display: flex;
  flex-direction: column;
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-10);
  text-decoration: none;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease-slow);
  gap: var(--sp-4);
}

.br-nav-card:hover {
  border-color: rgba(192, 144, 64, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.br-nav-card-icon {
  color: var(--c-gold);
  flex-shrink: 0;
}

.br-nav-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
}

.br-nav-card-text {
  font-size: 0.845rem;
  color: var(--c-text-light);
  line-height: 1.58;
  flex: 1;
}

.br-nav-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-top: auto;
}


/* ============================================================
   3. ANFORDERUNGS-LAYOUT (zwei Spalten)
   ============================================================ */

.br-anforderungen-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-32);
  align-items: start;
}

.br-anforderungen-text h2 {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.br-anforderungen-text p {
  font-size: 0.975rem;
  line-height: 1.72;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-8);
}

.br-anforderungen-text p:last-child { margin-bottom: 0; }

.br-anforderungen-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.br-anforderungen-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.55;
}

.br-anforderungen-list-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: var(--c-gold-subtle);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================================
   4. LEISTUNGS-CARDS
   ============================================================ */

.br-leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

/* 4. und 5. Karte zentriert in zweiter Reihe */
.br-leistungen-grid .br-leistung-card:nth-child(4) { grid-column: 1; }
.br-leistungen-grid .br-leistung-card:nth-child(5) { grid-column: 2; }

.br-leistung-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease-slow);
}

.br-leistung-card:hover {
  border-color: rgba(192, 144, 64, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.br-leistung-icon { color: var(--c-gold); flex-shrink: 0; }

.br-leistung-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
}

.br-leistung-text {
  font-size: 0.875rem;
  color: var(--c-text-light);
  line-height: 1.62;
  flex: 1;
}

.br-leistung-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}

.br-leistung-link:hover { gap: 8px; color: var(--c-gold-hover); }


/* ============================================================
   5. PROJEKTSTECKBRIEF
   ============================================================ */

.br-steckbrief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.br-steckbrief-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.br-steckbrief-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-light);
}

.br-steckbrief-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.4;
}

.br-steckbrief-sub {
  font-size: 0.82rem;
  color: var(--c-text-light);
  line-height: 1.5;
}


/* ============================================================
   6. ABLAUF
   ============================================================ */

.br-ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.br-ablauf-step {
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.br-ablauf-num {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-gold);
}

.br-ablauf-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
}

.br-ablauf-text {
  font-size: 0.82rem;
  color: var(--c-text-light);
  line-height: 1.58;
}


/* ============================================================
   7. BILDFLÄCHE (Platzhalter + späterer Bildwechsel)
   ============================================================ */

.br-visual-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1A2E42 0%, #243447 60%, #1A2E42 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.br-visual-icon { color: rgba(255, 255, 255, 0.14); }

.br-visual-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  padding-inline: var(--sp-12);
}

.br-visual-img {
  display: none; /* nach Freigabe: display: block */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}


/* ============================================================
   8. BREADCRUMB
   ============================================================ */

.br-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}

.br-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--ease);
}

.br-breadcrumb a:hover { color: var(--c-gold-light); }

.br-breadcrumb-sep { color: rgba(255, 255, 255, 0.2); }

.br-breadcrumb-current { color: rgba(255, 255, 255, 0.75); }


/* ============================================================
   9. ANDERE BRANCHEN (Querverweis)
   ============================================================ */

.br-andere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.br-andere-link {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-10);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-navy);
  transition: border-color var(--ease), color var(--ease);
}

.br-andere-link:hover {
  border-color: rgba(192, 144, 64, 0.3);
  color: var(--c-gold);
}

.br-andere-link svg { flex-shrink: 0; color: var(--c-gold); }


/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {

  .br-hero { padding-block: var(--sp-32); }

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

  .br-anforderungen-layout { grid-template-columns: 1fr; gap: var(--sp-20); }

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

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

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

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


/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {

  .br-hero { padding-block: var(--sp-24); }

  .br-hero-h1 { font-size: clamp(1.5rem, 5.5vw, 2.1rem); }
  .br-hero-lead { font-size: 0.95rem; }
  .br-hero-sub  { font-size: 0.875rem; }

  .br-nav-grid { grid-template-columns: 1fr; }

  .br-anforderungen-layout { grid-template-columns: 1fr; }

  .br-leistungen-grid { grid-template-columns: 1fr; }

  .br-leistungen-grid .br-leistung-card:nth-child(4),
  .br-leistungen-grid .br-leistung-card:nth-child(5) { grid-column: auto; }

  .br-steckbrief-grid { grid-template-columns: 1fr; }

  .br-ablauf-grid { grid-template-columns: 1fr; }

  .br-andere-grid { grid-template-columns: 1fr; }
}
