/* Helvetica Light als Standard */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVL__LM.TTF') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}

/* Helvetica Bold */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVB___S.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Helvetica Bold Oblique (Italic) */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVBO__S.TTF') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Helvetica Regular */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HV____S.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Helvetica Regular Oblique (Italic) */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVO___S.TTF') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Helvetica Light Oblique */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVLO__LM.TTF') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* Helvetica Narrow */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVN___S.TTF') format('truetype');
    font-weight: normal;
    font-stretch: condensed;
}

/* Helvetica Narrow Bold */
@font-face {
    font-family: 'Helvetica';
    src: url('fonts/HVNB__S.TTF') format('truetype');
    font-weight: bold;
    font-stretch: condensed;
}


body {
    background-image: url('../images/bk_wolken_2x.png'); /* Pfad entsprechend angepasst */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
	font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 300; /* Light */
}

/* um die Ränder kleiner zu bekommen */
.container {
    max-width: 1920px; /* Maximale Breite des Containers */
    padding-left: 15px; /* Standard-Padding für Bootstrap */
    padding-right: 15px; /* Standard-Padding für Bootstrap */
    margin-left: auto; /* Zentriert den Container horizontal */
    margin-right: auto; /* Zentriert den Container horizontal */
}

.col-md-8 {
    padding-left: 15; /* Entferne Padding */
    padding-right: 15; /* Entferne Padding */
}

/* Kursivschrift */
.emphasis {
    font-family: 'Helvetica', Arial, sans-serif;
    font-style: italic;
}

/* Condensed Schrift */
.narrow {
    font-family: 'Helvetica', Arial, sans-serif;
    font-stretch: condensed;
}

/* für zusammenhängende Texte oder Namen */
.no-break {
    white-space: nowrap;
}


/* Extra Bold für fettgedruckte Schrift */
b, strong {
    font-family: 'Helvetica';
    font-weight: 600; /* Extra fett (falls die Schriftart dies unterstützt) */
}

nav {
    background-color: rgba(255, 255, 255, 0.8); /* Halbdurchsichtige Leiste */
}

img {
    background: transparent; /* Hintergrund des Bildes transparent machen */
}

.navbar-nav .nav-link {
    color: black; /* Schwarze Schrift ohne Hover */
    background-color: #e0e0e0; /* Leicht dunkleres Grau als der Menübalken */
    margin-right: 15px; /* Abstand zwischen den Buttons */
    padding: 10px 20px; /* Innenabstand für den Button */
    border-radius: 5px; /* Runde Ecken für den Button-Stil */
    text-align: center;
    transition: background-color 0.3s ease; /* Weicher Übergang bei Hover */
}

.navbar-nav .nav-link:hover {
    background-color: #0056b3; /* Dunklere Farbe beim Hover */
    color: white; /* Weiße Schrift beim Hover */
}

.navbar-brand:hover {
  
    text-decoration: none; /* Optional: Unterstreichen beim Hover */
}

.language-switch {
    margin-left: auto;
}

.flag {
    width: 24px;
    height: 16px;
    margin-left: 10px;
}

a {
    color: black; /* Schwarze Schrift für normale und besuchte Links */
    text-decoration: underline; /* Unterstrichen */
    transition: color 0.3s ease; /* Weicher Übergang bei Hover */
}

a:hover {
    color: #0056b3; /* Dunkelblaue Schrift beim Hover */
    text-decoration: underline; /* Unterstrichen bleibt */
}

a:visited {
    color: black; /* Besuchte Links bleiben schwarz */
    text-decoration: underline; /* Unterstrichen */
}

a:active {
    color: red; /* Aktive Links werden rot */
    text-decoration: underline; /* Unterstrichen bleibt */
}



.text-box {
    background-color: #ffffff; /* Heller, angenehmer Hintergrund */
    border: 1px solid #ccc; /* Dünne Umrandung */
    border-radius: 10px; /* Leicht abgerundete Ecken */
    padding: 20px; /* Innenabstand für den Text */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schlagschatten */
    margin: 20px 0; /* Abstand nach oben und unten */
    text-align: justify; /* Rechtfertigt den Text, um den rechten Rand anzupassen */
}
.text-box p {
    text-align: left; /* Linksbündig */
    margin: 0; /* Entferne zusätzliche Margins */
}


/* Schlagschatten */
.shadow-lg {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.8);
}

.image-half {
    width: 50%; /* Bild nimmt 50% der Spaltenbreite ein */
}

p.text-center {
    margin-top: 10px; /* Abstand zwischen Bild und Caption */
    text-align: center;
}

.image-quarter {
        max-width: 25%; /* Halbiert die maximale Breite des Bildes */
    }
 
.video-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.video-thumbnail {
	width: 150px;
	height: 100px;
	background-color: #007bff; /* Blaue Hintergrundfarbe für das Bild */
	margin-right: 20px;
}

.video-content {
	max-width: 600px;
}

.video-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.video-description {
	color: #333;
}
 