body{
font-family: "Nunito"; 
display:grid; 
grid-gap: 0.5em 0.5em; 
ggrid-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;
}

table {
	width: 66%;
	margin: 20px 0 20px 40px; 
	border-collapse: collapse; 
	font-size: 18px; 
	background-color: #FFF8DC; 
	border-radius: 10px;
}

th, td {
	border: 2px solid;
	padding: 10px;
	text-align: left; 
}

th {
	background-color: #F4E4E1;
}

td {
	background-color: #FFF8DC;
}	

.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: #e9e9e9; 
	padding:2em; 
	font-style:arial;
	padding-left: 140px;
	padding-right: 140px;
}
.aside {
	grid-area:aside; 
	background-color: #FFF4B8; 
	color:black;
	font-style:arial;
}
.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;
}
.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;
}

.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;
}

.kontakt-container {
    max-width: 650px; 
    margin: 40px auto; 
    background-color: #f7f3fb; 
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
}

.input-group label {
    display: block; 
    font-weight: bold;
    margin-bottom: 5px;
}

/* --- FLEXBOX FÜR DIE ZWEI SPALTEN --- */

.input-row {
    display: flex; /* Macht die Kinder nebeneinander */
    justify-content: space-between; /* Schiebt Vorname und Nachname auseinander */
    gap: 20px; /* Fügt Abstand zwischen den Feldern hinzu */
}

/* Die halbe Breite für Vorname/Nachname */
.input-group.half {
    width: 50%;
}

/* --- STYLING DER EINGABEFELDER (Input und Textarea) --- */

.kontakt-container input[type="text"],
.kontakt-container input[type="email"],
.kontakt-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 15px; /* Starke Rundung */
    font-size: 16px;
    background-color: white;
    box-sizing: border-box; /* Wichtig, damit Padding die Breite nicht sprengt */
    transition: all 0.2s;
}

.kontakt-container textarea {
    resize: vertical; /* Nur vertikale Größenänderung erlauben */
}

/* --- STYLING DES ABSENDE-BUTTONS --- */

.submit-button {
    background-color: #F8BBD0; /* Dein bekanntes helles Rosa */
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #F48FB1; /* Dein neuer, stärkerer Hover-Ton */
}
