body{
font-family: "Nunito"; 
display:grid; 
grid-gap: 0.5em 0.5em; 
grid-template-rows: auto; 
grid-template-columns: auto repeat(5, 1fr); 
grid-template-areas: 
"logo header header header header header"
"logo nav nav nav nav nav "
"main main main main main main"
"main main main main main main"
"footer footer footer footer footer footer";
}

h1, h2, h3 {
	font-family: "Fredoka", "Nunito", sans-serif; 
	font-weight: 600; 
	margin: 0;
}

.logo{
	grid-area:logo; 
	background-color: #E0F7E9;  
	font-style:arial;
	place-self: center;
}
.header{
	grid-area: header; 
	background-color:#E0F7E9; 
	font-style:arial;
	display: flex; 
	justify-content: center; 
	align-items: center; 
}

.nav{
	grid-area:nav; 
	height:50px;
	background-color:#F8BBD0;
}
.main{
	grid-area: main; 
	background-color: #F3E0FF; 
	padding:2em; 
	font-style:arial;
	padding-left: 140px;
	padding-right: 140px;
}
.aside {
	grid-area:aside; 
	background-color: #F3E0FF; 
	color:black;
	display: flex;
	flex-direction: column;
	gap: 600px; 
	padding-top: 100px
}
.footer{
	grid-area: footer; 
	background-color:#E0F7E9; 
	color:black; 
	padding: 25px 0;
    display: flex; 
    align-items: center;
    justify-content: flex-start;
    padding-left: 140px;
}

.footer-links {
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding-left: 140px;
	list-style: none; 
	gap: 40px; 
}

.footer-links a {
    color: #333; 
    text-decoration: none;
    font-weight: bold;
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    transition: color 0.2s; 
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: #777;
	margin-right: 120px;
}
.button1{background-color: #F8BBD0;
	width:200px;
	height:50px;
	display:inline-block;
	text-align:center;
	line-height:50px;
	font-family:"Fredoka", sans-serif;
	font-weight:bold;
	font-size:17px;
	color:black;
	border-bottom-left-radius:18px;
	border-bottom-right-radius:18px;
	border-top-left-radius:18px;
	border-top-right-radius:18px;
	text-decoration:none;
	vertical-align: top; 
}	
	
.button2{background-color: #F8BBD0;
	width:250px;
	height:50px;
	display:inline-block;
	text-align:center;
	line-height:50px;
	font-family:"Fredoka", sans-serif;
	font-weight:bold;
	font-size:17px;
	color:black;
	border-bottom-left-radius:18px;
	border-bottom-right-radius:18px;
	border-top-left-radius:18px;
	border-top-right-radius:18px;
	text-decoration:none;
	vertical-align: top; 
}

.dropdown{
	position: relative;
	display: inline-block;
	vertical-align: top; 
}

.dropdown-content{
	display: none; 
	position: absolute; 
	background-color: #F8BBD0; 
	min-width: 250px; 
	z-index: 1; 
	border-radius: 18px;
}

.dropdown-content a {
	color: black; 
	font-family: "Fredoka", sans-serif; 
	padding: 12px 16px; 
	text-decoration: none; 
	display: block; 
	text-align: left; 
	height: auto; 
	line-height: normal; 
	border-radius: 18px;
}
.button3{background-color: #F7D27C;
	border: 10px #F7D27C solid;
	width:200px;
	height:50px;
	display:inline-block;
	text-align:center;
	line-height:30px;
	font-family:"Fredoka", sans-serif;
	font-weight:bold;
	font-size:15px;
	color:black;
	border-bottom-left-radius:18px;
	border-bottom-right-radius:18px;
	border-top-left-radius:18px;
	border-top-right-radius:18px;
	text-decoration:none;
}	

/* Der Haupt-Container für einen Organ-Abschnitt */
.organ-section {
    background-color: #ffffff;  /* Weißer Hintergrund für die Box */
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;        /* Abstand zwischen den Organ-Blöcken */

    /* DER WICHTIGSTE TRICK: 
       Ein simpler Befehl, der verhindert, dass der Container 
       "kollabiert", wenn die Elemente darin schweben. */
    overflow: auto; 
}

/* Standard-Größen für Text- und Bild-Block */
.organ-text {
    width: 50%; /* Der Text bekommt den meisten Platz */
}
.organ-image {
    width: 45%; /* Das Bild bekommt 30% (lässt 5% Platz dazwischen) */
}

/* Sorgt dafür, dass das Bild schön in seinen Block passt */
.organ-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* --- Hier kommt die simple Zick-Zack-Logik --- */

/* STIL 1: BILD RECHTS */
.bild-rechts .organ-text {
    float: left;  /* Der Text-Block schwebt links */
}
.bild-rechts .organ-image {
    float: right; /* Der Bild-Block schwebt rechts */
}

/* STIL 2: BILD LINKS */
.bild-links .organ-text {
    float: right; /* Der Text-Block schwebt rechts */
}
.bild-links .organ-image {
    float: left;  /* Der Bild-Block schwebt links */
}