/**
 * Bootstrap Package Custom CSS
 * Eigene Styles – werden nach Bootstrap geladen und überschreiben Bootstrap-Klassen
 */


/* =============================================================
   FARBEN & TYPO
   ============================================================= */

/* Beispiel: Eigene Primärfarbe */
/*
:root {
    --bs-primary: #005f9e;
    --bs-primary-rgb: 0, 95, 158;
}
*/


/* =============================================================
   NAVIGATION
   ============================================================= */

/* Beispiel: Navbar-Hintergrund anpassen */
/*
.navbar {
    background-color: #005f9e !important;
}
*/


/* =============================================================
   CONTENT-ELEMENTE
   ============================================================= */

/* Abstände zwischen Content-Elementen */
/*
.frame {
    margin-bottom: 2rem;
}
*/


/* =============================================================
   FOOTER
   ============================================================= */

/*
footer {
    background-color: #222;
    color: #fff;
}
*/


/* =============================================================
   RESPONSIVE ANPASSUNGEN
   ============================================================= */

@media (max-width: 768px) {
    /* Mobile-spezifische Styles hier */
}

@media (min-width: 1200px) {
    /* Desktop-spezifische Styles hier */
}
