/* deichgui.css – Seitenspezifisches + hero */

.hero{
  padding:clamp(2rem, 5vw, 4rem) 0;
  background:linear-gradient(180deg, var(--bg-blue), #fff);
  border-bottom:1px solid var(--gray-200);
}
.hero__title{ font-size:clamp(1.5rem, 2.6vw, 2rem); margin:0 0 .4rem; color:var(--blue-900); }
.hero__sub{ margin:0; color:var(--gray-600); }


/* Schnellauswahl – vorhandene Struktur als Grid stylen (ohne HTML-Änderung) 
.public-container h1 { margin-top: 1.2rem; }
.public-container h3 { margin-top: 1.6rem; }

.public-container > div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.public-container > div a {
  display: block;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-1);
  text-decoration: none;
  color: inherit;
}

.public-container > div a:hover { background: var(--gray-100); }

.public-container hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 1.5rem 0;
} */

/* Startseite: Mini-Hero (Logo + Überschrift) */
.start-hero{
  display:flex; align-items:center; gap:1rem;
  padding: 1.25rem 0 .5rem 0;
}
.start-hero__logo{
  margin-bottom:15px; width:150px; height:150px; border:1px solid var(--gray-300); border-radius:10px; object-fit:contain;
}
.start-hero h1{ margin:0; color: var(--brand); }

/* CTA-Buttons */
.cta-group{ display:flex; gap:.75rem; flex-wrap:wrap; margin:.75rem 0 1.25rem; }
.btn-xl{ padding:.9rem 1.2rem; font-size:1.05rem; border-radius:12px; }
.btn-accent{ background:var(--brand); border-color:var(--brand); color:#fff; }

/* Hover-Fix – keine weißen Buttons mehr */

/* 1) Neutrale Buttons: helle Fläche + dunkle Schrift beim Hover */
.btn:hover{
  background: var(--gray-100);
  color: var(--gray-800);
}

/* 2) Akzent-Buttons: beim Hover dunkler, Text bleibt weiß */
.btn.btn-accent:hover{
  background: var(--brand-dark);
  color: #fff;
  filter: none; /* überschreibt evtl. alte brightness-Regel */
}

/* 3) Deaktivierte Buttons: Hover ignorieren */
.btn.disabled:hover,
.btn[aria-disabled="true"]:hover{
  background: inherit;
  color: inherit;
}


/* Platzhalter-Buttons (nicht klickbar) */
.btn.disabled,
.btn[aria-disabled="true"]{
  opacity:.5; pointer-events:none; cursor:not-allowed;
}

/* Schnellauswahl: 3x3 Grids mit einheitlichen Buttons */


:root{
  /* sanftere Töne */
  --soft-red:    #e57373;  /* helles Rot */
  --soft-red-h:  #d65a5a;  /* Hover */
  --soft-orange: #ffcc80;  /* helles Orange */
  --soft-orange-h:#f2b35d; /* Hover */

  /* neue, leicht dunklere Rahmenfarben */
  --soft-red-border:    #c95f5f;
  --soft-red-border-h:  #b95454;
  --soft-orange-border: #e0b16a;
  --soft-orange-border-h:#d19f54;
}


.schnell-wrap { padding: 1.5rem 0; }

.schnell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: .75rem 0 1.5rem;
}

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

.schnell-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  padding: 0 1rem;
  height: 84px;                     /* einheitliche Größe */
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: var(--shadow-1);
  user-select: none;
}

/* Text max. 2 Zeilen */
.schnell-btn > span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
}

/* Farben */

.schnell-btn:hover{
  border-color: rgba(0,0,0,.22);
}

/* Schnellauswahl – Farben wie framed-red / framed-yellow */

/* Rot: Hintergrund = var(--bg-red), Rahmen/Text = var(--red-700) */
.schnell-btn.is-red{
  background: var(--bg-red);        /* #ffecec */
  border-color: var(--red-700);     /* #b22222 */
  color: var(--red-700);
}
.schnell-btn.is-red:hover{
  background: #ffdede;              /* ein Hauch satter */
  border-color: #8f1c1c;            /* etwas dunklerer Rand */
}

/* Gelb/Orange: Hintergrund = var(--bg-yellow), Rahmen = var(--yellow-500) */
.schnell-btn.is-orange{
  background: var(--bg-yellow);     /* #fffbea */
  border-color: var(--yellow-500);  /* #ffa500 */
  color: var(--gray-800);           /* bessere Lesbarkeit auf Gelb */
}
.schnell-btn.is-orange:hover{
  background: #fff3c9;              /* leicht satter */
  border-color: #e59400;            /* leicht dunklerer Rand */
}


/* Tastaturfokus sichtbar */
.schnell-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
