@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");


body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-style: normal;
    font-weight: 700;
}

/* Nur Bootstrap-Elemente ohne Rundungen */
.btn,
.card,
.navbar,
.form-control,
.input-group,
.alert,
.badge,
.modal-content,
.dropdown-menu {
    border-radius: 0 !important;
}
/* Bootstrap Rundungen deaktivieren */
:root {
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-border-radius-xl: 0;
}

/* LOGO */
#logo {
    position: relative;
    top: -8px; /* hebt das Logo leicht an, ohne Layout-Verschiebung */
    height: 50px !important;
    width: auto !important;
    vertical-align: middle;
    transition: all 0.2s ease;
}
#logo_span {
    position: relative;
    top: -5px;
    left: 10px;
}
.navbar-brand {
    margin-bottom: -19px !important;
}

.top_navigation{
    background-color: rgb(26, 26, 26) !important; /* Standard-Hintergrund */
    color: white !important;
}
.top_navigation a{
    color: white !important;
    font-weight: 700 !important;
}
.top_navigation a:hover{
    color: #f7830f !important;
    font-weight: 700 !important;
}
.top_navigation img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease-in-out;
}
/* Hoverzustand: Orange (#f7830f) */
.top_navigation img:hover {
  filter: brightness(0) saturate(100%) invert(61%) sepia(74%) saturate(1100%) hue-rotate(352deg) brightness(99%) contrast(105%);
}

@media (max-width: 768px) {
    #logo {
        height: 36px !important;
        top: 0;
    }
    #logo_span {
        position: relative;
        top: 0;
        left: 10px;
    }
    .navbar-brand {
        margin-bottom: 0 !important;
    }
}

:root {
    --primary-blue: #004b5d;
    --accent: #1de9b6;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: rgb(26, 26, 26); /* Standard-Hintergrund */
}

.header-bg {
    height: 700px;
    position: relative;
    z-index: 1;
}

.breadcrumb-section {
    background-color: #333333 !important;
    color: #fff !important;
    padding-top: 5px;
    text-align: center; /* zentriert Textinhalt und inline-Elemente */
}
.breadcrumb-item{
    color: #fff !important;
}
.breadcrumb-section a{
    color: red !important;
    text-decoration: none;
}

.breadcrumb-section .breadcrumb {
  justify-content: center !important; /* sorgt für echte Flex-Zentrierung */
}

.breadcrumb-section .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #ffffff !important;
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

main {
    color: #ececec !important;
    text-align: justify !important;
}

main h1, main h2, main h3 {
    color: #00b7c2 !important;
}   

main table {
    text-align: left !important;
}

/* Weißer Header */
.main-header {
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.main-header .nav-link {
    font-weight: 500;
    color: #000;
}

.main-header .nav-link:hover {
    color: #00313d;
    text-shadow: rgba(0, 0, 0, 0.507) 0px 0px 5px;
}

main a{
    color: #e4e4e4 !important;
}

/* Hero */
.hero-text {
    color: white;
}

.hero-btn {
    background-color: #228d86;
    border: none;
}

.hero-btn:hover {
    background-color: #1de9b6;
    color: #000;
}

/* Icon Cards */
.info-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

/* Termin-Karten */
.event-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
}

footer {
    background: #0f1c2b;
    color: white;
}

footer a {
    color: white;
    margin-right: 1rem;
}

footer a:hover {
    color: var(--accent);
}

/* Container der Toolbar */
.accessibility-toolbar {
    position: fixed; /* fixiert am Bildschirm */
    top: 80px; /* Abstand von oben */
    right: 10px; /* Abstand vom rechten Rand */
    z-index: 2000; /* ganz vorne sichtbar */

    background: rgba(255, 255, 255, 0.9); /* leicht transparenter Hintergrund */
    padding: 0.5rem; /* Innenabstand */
    border-radius: 0px; /* abgerundete Ecken */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* dezenter Schatten */

    display: flex; /* Flexbox aktivieren */
    flex-direction: column; /* Elemente untereinander */
    gap: 0.25rem; /* Abstand zwischen Buttons */
    align-items: stretch; /* Buttons füllen die ganze Breite */
}

/* Kopfbereich mit Icon */
.accessibility-toolbar .toolbar-header {
    font-size: 2rem; /* Icon etwas größer */
    color: #004b5d; /* Vereinsblau als Akzentfarbe */
}

/* Buttons */
.accessibility-toolbar button {
    width: 100%; /* volle Breite */
    text-align: left; /* Text links, Icon vorne */
}

body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}
body.highlight-links a {
    outline: 2px solid #ff0;
    background: #000;
    color: #ff0 !important;
}

/* ============================
   MOBIL: Toolbar horizontal
   ============================ */
@media (max-width: 767.98px) {
    .accessibility-toolbar {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;

        width: 100%;
        z-index: 3000;

        background: rgba(255, 255, 255, 0.95);
        border-bottom: 2px solid #004b5d;

        display: flex;
        flex-direction: row; /* statt Spalte -> horizontal */
        justify-content: space-around;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.25rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    /* Icon-Kopf ausblenden oder verkleinern */
    .accessibility-toolbar .toolbar-header {
        display: none; /* oder z. B. font-size: 1.5rem; */
    }

    /* Buttons horizontal anpassen */
    .accessibility-toolbar button {
        width: auto;
        flex: 1 1 auto;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }

    /* Optional: kleine Symbole ausblenden, wenn zu eng */
    .accessibility-toolbar button i {
        margin-right: 0.25rem;
    }

    /* Damit der restliche Inhalt nicht unter die Toolbar rutscht */
    body {
        padding-top: 3rem; /* entspricht ca. der Toolbar-Höhe */
    }
}

/* Kalender Monatsansicht: gleiche Breite aller Spalten */
.calendar-table {
    table-layout: fixed; /* erzwingt feste Breiten */
    width: 100%; /* volle Breite */
}

.calendar-table th,
.calendar-table td {
    width: 14.28%; /* 100% / 7 Spalten */
    min-height: 120px !important;
    height: 120px !important; /* erzwingt Mindesthöhe */
    vertical-align: top; /* Inhalt am oberen Rand */
    padding: 0.5rem;
}

.calendar-year-table td.has-event {
    font-weight: bold;
    background-color: #e7f1ff; /* hellblau, Bootstrap-like */
    border-radius: 4px;
}

.carousel-text-inner {
    text-align: center; /* Text mittig ausrichten */
    padding: 1.5rem 2rem; /* Innenabstand für Luft um den Text */
    position: relative; /* nötig, damit das Pseudo-Element (::after) relativ zum Container positioniert wird */
    display: inline-block; /* Container so groß wie der Inhalt */
    margin-top: -100px !important; /* hebt den Text etwas an, damit er nicht zu nah am unteren Rand ist */
}

.carousel-text-inner::after {
    content: ""; /* erzeugt die dekorative Linie */
    position: absolute; /* absolute Positionierung innerhalb des Containers */
    left: 0; /* Linie links bündig */
    right: 0; /* Linie rechts bündig */
    bottom: 0; /* Linie am unteren Rand platzieren */
    height: 3px; /* Dicke der Linie */
    background: linear-gradient(
        to right,
        #004b5d 0%,
        /* Start: Vereinsfarbe (Dunkelblau) */ #ffd700 50%,
        /* Mitte: Gold als Akzent */ #004b5d 100%
            /* Ende: wieder Vereinsfarbe */
    );
}

.carousel-text-inner .carousel-header {
    font-size: 3rem; /* große Schrift für Haupttitel */
    font-weight: 800; /* sehr fett für Betonung */
    color: #004b5d; /* Vereinsfarbe für Haupttitel */
    text-transform: uppercase; /* alles in Großbuchstaben */
    letter-spacing: 2px; /* etwas mehr Zeichenabstand für edlen Look */
    margin-bottom: 0.5rem; /* Abstand nach unten */
}

.carousel-text-inner .carousel-subheader {
    font-size: 1.5rem; /* kleinere Schrift für Untertitel */
    font-weight: 400; /* normaler Schriftschnitt */
    color: #ffd700; /* Gold als Kontrastfarbe */
    letter-spacing: 1px; /* leichter Zeichenabstand */
}

#slg_logo {
    height: 150px;
    width: auto !important;
    margin-top: 20px;
}

/* Container */
.textpic-custom {
    width: 100%;
}

/* Überschrift oben */
.textpic-custom-header {
    margin-bottom: 1rem;
}

/* Textblock volle Breite */
.textpic-custom-text {
    width: 100%;
}

/* Galerie rechts im Textfluss */
.textpic-custom-right .textpic-custom-gallery-inline {
    float: right !important;
    margin: 0 0 1rem 1rem;
    max-width: min(40%, 320px);
}

/* Galerie links im Textfluss */
.textpic-custom-left .textpic-custom-gallery-inline {
    float: left !important;
    margin: 0 1rem 1rem 0;
    max-width: min(40%, 320px);
}

/* Container fixen */
.textpic-custom::after {
    content: "";
    display: block;
    clear: both;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
    .textpic-custom-left .textpic-custom-gallery-inline,
    .textpic-custom-right .textpic-custom-gallery-inline {
        float: none;
        display: block;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }
}

/* ==========================================================
   SLG Galerie – Bootstrap-kompatibel mit funktionierendem Abstand
   ========================================================== */
.slg-gallery {
    padding: 0 10px;
    margin-top: 180px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Bootstrap Gutter – Abstand zwischen den Spalten */
.slg-gallery .row {
    --bs-gutter-x: 16px; /* etwas mehr Abstand sichtbar */
    --bs-gutter-y: 16px;
}

/* Galerie-Item */
.slg-gallery__item {
    position: relative;
    border-radius: 8px;
    transition: transform 0.3s ease;
    padding: 0 !important; /* verhindert doppelten Innenabstand */
    overflow: visible; /* ✨ WICHTIG: Abstand bleibt sichtbar! */
}

/* Bildcontainer im 1:1 Verhältnis */
.slg-gallery__cropper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

/* Bild + Hover-Zoom */
.slg-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    display: block;
    border-radius: 8px;
}

/* Zoom-Effekt */
.slg-gallery__item:hover .slg-gallery__img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* ==========================================================
   Responsive Varianten – exakte Berechnungen
   ========================================================== */

/* mittlere Screens (4 Bilder/Zeile) */
@media (max-width: 992px) {
    .slg-gallery__item {
        flex: 1 1 calc(25% - 12px);
        max-width: calc(25% - 12px);
    }
}

/* kleine Tablets (3 Bilder/Zeile) */
@media (max-width: 768px) {
    .slg-gallery__item {
        flex: 1 1 calc(33.333% - 12px);
        max-width: calc(33.333% - 12px);
    }
}

/* Smartphones (2 Bilder/Zeile) */
@media (max-width: 576px) {
    .slg-gallery__item {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

/* Anfangszustand: unsichtbar und leicht verschoben */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Wenn sichtbar */
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Verzögerung für jedes Element */

/* ==========================================================================
   NEWS-LISTE (Masonry-Layout)
   Anpassung für EXT:news – Twb5 Template Override
   Datei: EXT:slg_stade_hagen/Resources/Public/Css/news.css
   ========================================================================== */

/* --- GRID-CONTAINER ------------------------------------------------------ */
/* Das Grid wird per CSS Columns realisiert, um unterschiedlich hohe Boxen 
   fließend nebeneinander darzustellen ("Masonry-Effekt"). */
.news-grid {
    column-count: 3; /* Anzahl der Spalten auf Desktop */
    column-gap: 1.2rem; /* horizontaler Abstand zwischen Spalten */
    orphans: 1; /* verhindert unschöne Umbrüche */
    widows: 1;
}

/* --- EINZELNE BOX / KARTE ------------------------------------------------ */
/* Jede News wird als Karte dargestellt, die sich automatisch an die Höhe
   des Bildes und Inhalts anpasst. */
.news-card {
    display: inline-block; /* notwendig für column layout */
    width: 100%; /* Karte füllt Spalte vollständig */
    margin: 0 0 1.2rem; /* vertikaler Abstand zwischen Karten */
    border-radius: 0px; /* leicht abgerundete Ecken */
    background: #fff; /* weißer Hintergrund für Kontrast */
    overflow: hidden; /* verhindert Überlappung bei Schatten */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18); /* stärkerer, weicher Schatten */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    break-inside: avoid; /* verhindert, dass eine Karte in Spalten geteilt wird */
}

/* Hover-Effekt: Karte hebt sich leicht an */
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* --- BILDER -------------------------------------------------------------- */
/* Bilder füllen die gesamte Kartenbreite aus und passen sich in der Höhe an */
.news-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- INHALTSBEREICH ------------------------------------------------------ */
/* Typografie und Abstände innerhalb der Karte */
.news-card-content {
    padding: 1rem 1.25rem 1.25rem; /* gleichmäßiger Innenabstand */
}

/* Titel der News */
.news-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #003366; /* dunkles Blau für bessere Lesbarkeit */
}

/* Teasertext / Vorschautext */
.news-card-teaser {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.45;
    margin-bottom: 0.8rem;
}

/* "Weiterlesen"-Link */
.news-card-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0056b3;
    text-decoration: none;
}
.news-card-more:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE BREAKPOINTS --------------------------------------------- */
/* Für Tablets und kleinere Bildschirme wird die Spaltenanzahl reduziert */
@media (max-width: 992px) {
    .news-grid {
        column-count: 2; /* zwei Spalten */
        column-gap: 1rem;
    }
}

/* Für Smartphones: eine Spalte, kein Spaltenabstand */
@media (max-width: 600px) {
    .news-grid {
        column-count: 1; /* eine Spalte */
        column-gap: 0;
    }
}

/* ==========================================================
   SLG Lightbox – Finale Version mit Icons & sanften Transitions
   ========================================================== */

/* Overlay */
.slg-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slg-lightbox.is-open {
    display: flex;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* sanftes Ausfaden beim Schließen */
.slg-lightbox.is-closing {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Bühne / Stage */
.slg-lightbox__stage {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Bild */
.slg-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65);
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slg-lightbox.is-open .slg-lightbox__img {
    transform: scale(1);
    opacity: 1;
}

/* Caption */
.slg-lightbox__caption {
    position: absolute;
    bottom: -52px;
    left: 0;
    right: 0;
    color: #e4e4e4;
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.slg-lightbox.is-open .slg-lightbox__caption {
    opacity: 1;
}

/* ==========================================================
   Navigation / Buttons / Icons – Sichtbar & richtig positioniert
   ========================================================== */

.slg-lightbox__btn,
.slg-lightbox__close {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    user-select: none;
    opacity: 0.85;
    z-index: 10000;
}

/* Hover-Effekt */
.slg-lightbox__btn:hover,
.slg-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    opacity: 1;
}

/* Buttons Position – sichtbar links/rechts am Bildrand */
.slg-lightbox__btn--prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.slg-lightbox__btn--next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.slg-lightbox__close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
}

/* ==========================================================
   Icons (Pfeile + X via CSS)
   ========================================================== */

.slg-lightbox__icon {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}

/* Pfeil nach links */
.slg-lightbox__icon--prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

/* Pfeil nach rechts */
.slg-lightbox__icon--next::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

/* Schließen (X) */
.slg-lightbox__icon--close::before,
.slg-lightbox__icon--close::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 4px;
    width: 12px;
    height: 2px;
    background: #fff;
}
.slg-lightbox__icon--close::before {
    transform: rotate(45deg);
}
.slg-lightbox__icon--close::after {
    transform: rotate(-45deg);
}

/* ==========================================================
   Responsive Anpassungen – Buttons rücken bei Mobil näher
   ========================================================== */
@media (max-width: 768px) {
    .slg-lightbox__btn--prev {
        left: 8px;
    }
    .slg-lightbox__btn--next {
        right: 8px;
    }
    .slg-lightbox__close {
        top: 10px;
        right: 10px;
    }
    .slg-lightbox__icon {
        width: 16px;
        height: 16px;
    }
}

.news-grid-equal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.news-grid-equal .news-card {
    flex: 1;
    max-width: 33%;
    display: flex;
    flex-direction: column;
}

.news-grid-equal .news-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-single img {
    border-radius: 0.5rem;
}

.news-card-small {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.object-fit-cover {
    object-fit: cover;
}

.news-card-single .card-body {
    background-color: #fff;
}

.news-card-single h2 {
    line-height: 1.3;
}

.card-body, .news-card-content{
    background-color: #333333 !important;
    color: #ffffff !important;
}
.news-card-content p{
    color: #ffffff;
}
.card-body a, .news-card-content a{
    color: #f7830f !important;
    text-decoration: none;
}

.news-card{
  border-collapse: separate; /* verhindert Zellrahmen-Verschmelzung */
  border-top: 5px solid #f7830f !important;
  border-bottom: 2px solid #f7830f !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 10px 10px 0 0; /* 50% würde zu stark sein, hier realistisch abgerundet */
  overflow: hidden; /* sorgt dafür, dass Rundung sichtbar bleibt */   
}

/* =====================================
   Bootstrap Warning Color Override
   Grundfarbe: #f7830f
   ===================================== */

/* Textfarbe */
.text-warning {
  color: #f7830f !important;
}

/* Hintergrundfarbe */
.bg-warning {
  background-color: #f7830f !important;
}

/* Rahmenfarbe */
.border-warning {
  border-color: #f7830f !important;
}

/* Button-Varianten */
.btn-warning {
  color: #fff;
  background-color: #f7830f;
  border-color: #f7830f;
}
.btn-warning:hover {
  color: #fff;
  background-color: #e4760d;
  border-color: #e4760d;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #e4760d;
  border-color: #e4760d;
  box-shadow: 0 0 0 0.25rem rgba(247, 131, 15, 0.4);
}
.btn-warning:disabled,
.btn-warning.disabled {
  color: #fff;
  background-color: #f7830f;
  border-color: #f7830f;
  opacity: 0.65;
}
.btn-warning.active,
.btn-warning:active {
  color: #fff;
  background-color: #d56e0c;
  border-color: #d56e0c;
}

/* Badge */
.badge-warning {
  color: #fff;
  background-color: #f7830f;
}

/* Alert */
.alert-warning {
  color: #664200;
  background-color: #ffe6c7;
  border-color: #ffd8a3;
}
.alert-warning .alert-link {
  color: #332100;
}

/* List Group Item */
.list-group-item-warning {
  color: #664200;
  background-color: #fff3e0;
}
.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  background-color: #ffebc2;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #f7830f;
  border-color: #f7830f;
}

/* Table */
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fff3e0;
}

/* Progress Bar */
.progress-bar.bg-warning {
  background-color: #f7830f;
}

/* Text- & Border Utilities für Hover (optional) */
a.text-warning:hover,
a.text-warning:focus {
  color: #d56e0c !important;
}


.tb-top5-bottom2 {
  --bs-border-width: 2px;
  border-top-width: 5px;
}

/* =====================================
   Custom-Style für Calendarize-Tabelle
   ===================================== */
.calendarize-table {
  border-collapse: separate; /* verhindert Zellrahmen-Verschmelzung */
  border-top: 5px solid #f7830f !important;
  border-bottom: 2px solid #f7830f !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 10px 10px 0 0; /* 50% würde zu stark sein, hier realistisch abgerundet */
  overflow: hidden; /* sorgt dafür, dass Rundung sichtbar bleibt */
}

/* Entfernt alle vertikalen (weißen) Zellränder */
.calendarize-table th,
.calendarize-table td {
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

/* Entfernt ggf. Bootstrap-Überschreibungen */
.table-bordered > :not(caption) > * > * {
  border-left: none !important;
  border-right: none !important;
}

.frame-container-default{
    width: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
}

.frame{
    padding: 0 !important;
}


.header-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* Kombi aus gleichmäßigem Overlay + radialer Vignette */
  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0) 60%,     /* innen transparent */
      rgba(0, 0, 0, 0.5) 100%   /* außen stärker abgedunkelt */
    ),
    rgba(0, 0, 0, 0.6);          /* gleichmäßige Grundabdunklung */

  background-blend-mode: multiply; /* sorgt für natürliche Überlagerung */
}

.carousel-text-inner{
    width: 100% !important;
}

.carousel-header.awesome.none.reveal.visible span.carusell_header {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 2px #f7830f !important;
  text-stroke: 2px #f7830f;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  font-weight: 800;
  /* Responsive Schriftgröße */
  font-size: clamp(3rem, 5vw, 6rem) !important;
}

.shadow_orange-sm { box-shadow: 0 0.125rem 0.25rem rgba(247, 131, 15, 0.4) !important; }
.shadow_orange    { box-shadow: 0 0.5rem 1rem rgba(247, 131, 15, 0.5) !important; }
.shadow_orange-lg { box-shadow: 0 1rem 3rem rgba(247, 131, 15, 0.6) !important; }


.bg-lchtgrau{
    background-color: #dbd5ce !important;
}