/* =========================================================
   Cassiopeia – eigene grüne Grundfarbe
   ========================================================= */

:root {
    --cassiopeia-color-primary: #2e7d32;
    --cassiopeia-color-hover: #1b5e20;
    --cassiopeia-color-link: #2e7d32;
}

/* ---------------------------------------------------------
   Alle Links
   --------------------------------------------------------- */

a {
    color: #2e7d32 !important;
}

a:hover,
a:focus {
    color: #1b5e20 !important;
}


/* ---------------------------------------------------------
   Seiten-/Menüüberschriften
   z.B. "Main menu en-GB"
   --------------------------------------------------------- */

.card-header {
    color: #2e7d32 !important;
}


/* ---------------------------------------------------------
   Menü-Links
   --------------------------------------------------------- */

.mod-menu a,
.metismenu a {
    color: #2e7d32 !important;
}

.mod-menu a:hover,
.mod-menu a:focus,
.metismenu a:hover,
.metismenu a:focus {
    color: #1b5e20 !important;
}


/* ---------------------------------------------------------
   Primäre Buttons
   --------------------------------------------------------- */

.btn-primary {
    background-color: #2e7d32 !important;
    border-color: #2e7d32 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #1b5e20 !important;
    border-color: #1b5e20 !important;
    color: #fff !important;
}


/* ---------------------------------------------------------
   Aktive / ausgewählte Menüeinträge
   --------------------------------------------------------- */

.mod-menu .current > a,
.mod-menu .active > a,
.metismenu .current > a,
.metismenu .active > a {
    color: #1b5e20 !important;
}


/* ---------------------------------------------------------
   Breadcrumbs / "You are here"
   --------------------------------------------------------- */

.breadcrumb a {
    color: #2e7d32 !important;
}


/* ---------------------------------------------------------
   Artikel- und Kategorie-Links
   --------------------------------------------------------- */

.item-title a,
.category-list a,
.blog a {
    color: #2e7d32 !important;
}

.item-title a:hover,
.category-list a:hover,
.blog a:hover {
    color: #1b5e20 !important;
}

/* 1. Sets your header background to green */
.container-header {
/*    background-color: #27ae60 !important;  This is a nice emerald green. Change the hex code if you have a specific green! */
    background-color: #ffffff !important; 
  
    background-image: none !important;    /* Removes default blue gradients */
}

/* 2. Hijacks Joomla's internal theme variables so links don't turn dark blue */
:root {
    --cassiopeia-color-link: #ffffff !important;
    --cassiopeia-color-hover: #f1c40f !important;
}

/* 3. Forces the Title Text to stay readable on top of your green background */
.navbar-brand,
.navbar-brand a,
.brand-logo,
.brand-logo a,
.site-title,
.site-title a {
    color: #ffffff !important;         /* Forces text to pure white for crisp contrast */
    text-decoration: none !important;  /* Removes underline */
}