/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

:root {
  --bs-body-font-family: Arial, sans-serif;
  --bs-primary: #0064a6;
  --bs-primary-rgb: 0, 100, 166;
}


h2 {
    font-size: 24px;
  font-weight: bold;
}

h3 {
    font-size: 20px;
  font-weight: bold;
}

.ls-logo {
    width: 8%; /* Größe des Logos */
    display: block; /* Block-Element für bessere Steuerung */
    text-align: left; /* Falls es sich in einem umschließenden <div> befindet */
    margin-left: 0; /* Falls es bereits zentriert war, auf links setzen */
}

.zhaw-button {
    background-color: #0064a6; /* Buttonfarbe*/
    color: white; /* Textfarbe */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.zhaw-button:hover {
    background-color: #4c4c4c;
    color: white;
}

a {
    color: #0064a6;
    text-decoration: none;
    font-size:18px;

}

a:hover {
    color: #4c4c4c;
    text-decoration: underline;
}

footer {
  padding: 30px 0 50px 0;   /* oben 30px, unten 50px */
}

.footer-links {
  display: flex;
  gap: 1rem; /* Abstand zwischen den Links */
    flex-wrap: wrap; /* Optional: bricht in neue Zeile bei zu wenig Platz */

}

.footer-links a {
    color: #0064a6; /* Link-Farbe */
    text-decoration: none; /* Kein Unterstrich */
    margin-right: 15px; /* Abstand zwischen Links */
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline; /* Unterstrich beim Hover */
}

#privacyModalLabel {
  color: #0064a6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 60px;    /* oder anpassen, falls du keinen Header-Abstand brauchst */
  padding-bottom: 0;
}
body > article {
  flex: 2;
}

.footer-divider {
  border: none;
  border-top: 2px solid #3c3a3a;
}

/*Zeilenabstand im Modal */
.modal-body {
  line-height: 1.5;
}