

/* Allgemeine Styles */
body {
    font-family: 'Open Sans', Arial, sans-serif;
	text-align: left;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #336633; /* Grün */
}

a:hover {
    color: #336633; /* Grün */
}

a:visited {
    color: #336633; /* Grün */
}

/* Header Styles */
header {
	background-color: #336633; /* Grün */
    color: #ffffff; /* Weiß */
    text-align: center;
    padding: 20px;
    position: relative; /* Positionierung für die Infobox */
}

.header-info {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #99CC99; /* Hellgrün */
    font-size: 12px;
	color: #336633; /* Grün */
    padding: 5px 10px;
    border-radius: 5px;
}

header h1 {
    font-family: jargon, sans-serif;
    color: white;
    font-size: 5.5rem;
    margin: 0;
}

header h2 {
    font-family: Arial, sans-serif;
    color: yellow;
    margin: 0;
}

header h3 {
    font-family: Impact-Label, Arial, sans-serif;
    color: black;
    margin: 0;
}

/* Navigation Styles */
nav {
    text-align: center;
	background-color: #99CC99; /* Hellgrün */
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #336633; /* Grün */
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    color: #ffffff; /* Weiß */
}

/* Sektionsstyles nach Bedarf hinzufügen */
section {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap; /* Erlaubt Zeilenumbruch bei kleineren Bildschirmen */
}

section .section-content {
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

section .section-pic {
    width: 100%; /* Vollständige Breite auf mobilen Geräten */
    max-width: 112px; /* Maximalbreite auf Desktops */
    height: auto;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover; /* Steuert die Größe des Bildes */
}

section .contact-link {
    width: 72px; /* Vollständige Breite auf mobilen Geräten */
	height: auto;
	opacity: 0.2; /* Transparenter Layer */
    margin-right: 20px; /* Platz neben den Bildern */
	margin-bottom: 20px; /* Platz unter den Bildern */
}

.up-link {
    display: block;
    text-align: right;
    margin-top: 10px;
    text-decoration: none;
    color: #336633; /* Grün */
    font-weight: bold;
}

.up-link:hover {
    color: #ffffff; /* Weiß */
}

/* Klasse für externe Links */
.external-link {
	color: #336633; /* Grün */
	padding-right: 20px; /* Platz für das Icon */
	background-image: url('icons/external-link.png'); /* Pfad zur Grafik */
	background-repeat: no-repeat;
	background-position: right center;
}

.external-link:hover {
	color: #336633; /* Grün */
	padding-right: 20px; /* Platz für das Icon */
	background-image: url('icons/external-link.png'); /* Pfad zur Grafik */
	background-repeat: no-repeat;
	background-position: right center;
}

.external-link:visited {
	color: #336633; /* Grün */
	padding-right: 20px; /* Platz für das Icon */
	background-image: url('icons/external-link.png'); /* Pfad zur Grafik */
	background-repeat: no-repeat;
	background-position: right center;
}

/* Stil für den Text neben dem Icon */
.external-link span {
	color: #336633; /* Grün */
  display: inline-block;
  padding-right: 20px; /* Abstand zwischen Text und Icon */
}

/* Klasse für pdf */
.pdf {
	color: #336633; /* Grün */
	padding-right: 20px; /* Platz für das Icon */
	background-image: url('icons/Aniket-Suvarna-Box-Bxs-file-pdf.16.png'); /* Pfad zur Grafik */
	background-repeat: no-repeat;
	background-position: right center;
}

/* Hintergrundbild nur für Desktops */
body::after {
    content: "";
    background-image: url('pics/tbone28239_Nighttime_in_the_middle_of_a_grassy_meadow_the_stars_068d97cb-18d9-424f-817a-0d34f1d65251.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.2; /* Transparenter Layer */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1; /* Hinter den anderen Elementen */
}

/* Footer Styles */
footer {
    text-align: right;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f0f0; /* Hellgrau */
}

/* Media Queries */
@media only screen and (max-width: 768px) {
    section .section-content {
        width: 80%;
    }
}

@media only screen and (max-width: 480px) {
    section .section-content {
        width: 100%;
    }
}

/* Stile für ein- und ausklappbare Zwischenüberschriften */
.collapsible {
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.collapsible:hover {
    background-color: #ddd; /* Hellgrau bei Hover */
}

.content {
    display: none;
    padding: 0 18px;
    overflow: hidden;
    background-color: #f1f1f1; /* Hellgrau für den Inhalt */
}