
/* Gesamtstruktur */
body {
    font-family: 'Helvetica', sans-serif;
    color: #333333;
    margin: 0;
    padding: 20px;
}


strong {
    display: inline; /* Standardwert, da wir den Text inline lassen wollen */
    text-decoration: underline; /* Fügt eine Unterstreichung hinzu */
    text-decoration-color: blue; /* Setzt die Farbe der Unterstreichung auf blau */
}


/* Layout with margins for screens */
@media (min-width: 25cm) {
    body {
        margin-left: 0.5cm;
        margin-right: 0.75cm;
    }
}

@media (max-width: 25cm) {
    body {
        margin-left: 0.25cm;
        margin-right: 0.5cm;
    }
}

/* Navigationsleiste */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #ddd;
    width: 97%;
}

.navbar img {
    max-height: 1.5cm;
    max-width: 50%;
    margin-left: -0.6cm;
}

/* Menü für größere Bildschirme */
.nav-links {
    display: none;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    margin-left: 20px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Vollbild-Hamburger-Menü */
.nav-menu {
    display: none;
    position: fixed; /* Feststehend, um die gesamte Seite zu überlagern */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Halbtransparentes Schwarz */
    z-index: 100; /* Über alles legen */
    flex-direction: column;
    justify-content: center; /* Menüeinträge zentrieren */
    align-items: center;
    padding: 0;
}

.nav-menu a {
    padding: 20px;
    font-size: 14px; /* Schriftgröße auf 14px angepasst */
    color: #fff; /* Textfarbe im Menü auf Weiß setzen */
    text-align: center;
    display: block;
    border-bottom: none;
}

.nav-menu a:hover {
    text-decoration: underline;
    color: #fff; /* Text bleibt weiß beim Hover */
}

/* Hamburger-Icon bleibt sichtbar */
.hamburger {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 101;
}

/* Sichtbarkeit der Menüpunkte bei breiteren Bildschirmen */
@media (min-width: 25cm) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-links a {
        margin-left: 20px;
    }
}

/* Fußzeile - gleiche Breite wie die Navigation */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #333;
    font-size: 0.9rem;
    position: relative;
    bottom: 0;
    width: 97%;
    border-top: 1px solid #ddd;
}

/* H1-Stil */
h1 {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.5rem; 
    font-weight: 300; 
    color: #333333; 
    text-align: left; 
    margin-top: 0.6cm; 
    margin-bottom: 0.2cm;
    text-transform: uppercase;
    letter-spacing: 0.2rem;

    display: inline-block; /* Ermöglicht vertikale Abstände */
    background-image: linear-gradient(to bottom, rgba(30, 144, 255, 0.2) 0%, rgba(30, 144, 255, 0.2) 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0 5px; /* Optionaler Abstand um den Text */

}

/* H2 und H3 Stile */
h2, h3 {
    font-family: 'Helvetica', sans-serif;
    color: #333333;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: 300;
}

h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666666; 
}

/* Paragraphen & Blockquote */
p {
    font-size: 12pt;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 1rem;
}

blockquote {
    font-size: 12pt;
    font-style: italic;
    color: #333333;
    border-left: 4px solid #dddddd;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Absätze mit unterschiedlichen Größen */
p.paragraph-bigger {
    font-size: 1.5rem;
    font-weight: 400;
}

p.paragraph-smaller {
    font-size: 0.875rem;
}

p.paragraph-de-emphasized {
    color: #999999;
    font-size: 1rem;
}

p.paragraph-tiny {
    font-size: 0.75rem;
    color: #999999;
}

/* Link-Stil */
a {
    color: #333333;
    text-decoration: underline;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

/* Button-Stil */
button, .button {
    background-color: #333333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
}

button:hover, .button:hover {
    background-color: #555555;
}

button.small, .button.small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Listenstile (angepasst auf p-Tag Schriftgröße und Abstand) */
ul, ol {
    font-size: 12pt;
    line-height: 1.5;
    margin-bottom: 2rem;
}

ul {
    list-style-type: disc;
    margin-left: 2rem;
}

ol {
    list-style-type: decimal;
    margin-left: 2rem;
}

ul.square {
    list-style-type: square;
}

ul.circle {
    list-style-type: circle;
}

ol.upper-alpha {
    list-style-type: upper-alpha;
}

ol.lower-alpha {
    list-style-type: lower-alpha;
}

/* Überschriften "Jumbo" */
.heading-jumbo {
    font-size: 4rem;
    font-weight: 300;
    color: #333333;
}

.heading-jumbo-bold {
    font-size: 4rem;
    font-weight: 600;
}

/* Weitere Überschriften (Heading 4 bis 6) */
h4, h5, h6 {
    font-family: 'Helvetica', sans-serif;
    color: #333333;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

/* Formularstile */
input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    margin-bottom: 1rem;
    font-size: 1rem;
    border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #666666;
}

/* Fett -> Textmarker */

