/* --- VARIALBEN & GRUNDLAGEN --- */
:root {
    --bg-color-main: #f0f8ff; /* Sehr helles Blau (ähnlich dem Hintergrund im Bild) */
    --color-primary: #004c8c; /* Dunkles Blau für Text/Akzente */
    --color-accent-red: #cc5540; /* Rot des Tintenfischs/Fischs */
    --color-accent-grey: #aab5b5; /* Graugrün des Fischs */
    --color-accent-blue: #007bff; /* Helles Blau des Fischs */
    --font-family-header: 'Helvetica Neue', Arial, sans-serif; /* Ähnliche Schriftart */
}

body {
    font-family: var(--font-family-header);
    margin: 0;
    padding: 0;
    background-color: #fff; /* Haupt-Hintergrund weiß */
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Oben beginnen */
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    background-color: var(--bg-color-main); /* Linke Seite hellblau */
    display: flex;
    flex-direction: column;
    padding-bottom: 30px; 
}

/* --- HEADER & LOGO --- */
header {
		background-color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    position: relative;
    z-index: 10;
    min-height: 50px; /* Platz für den Oktopus */
}

.logo {
		background-image: url('kinderpraxis.png');
    position: absolute;
		height: 100px;
		width: 200px;
    top: 10px;
    left: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* --- OKTOPUS (Einfache CSS-Darstellung) --- */
.octopus {
		height: 100px;
		width: 100px;
		background-image: url('octopus.png');
    position: absolute;
    top: 40px;
    right: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
}

/* --- CONTENT BEREICH --- */
.content-area {
    padding: 40px;
    width: 100%;
    max-width: 90%; /* Fokus auf der linken Seite */
    box-sizing: border-box;
}

main {
    padding-left: 0; 
}

.slogan {
		font-family: "Helvetica Neue", 
                 Helvetica, 
                 Arial, 
                 sans-serif;
    font-size: 3em;
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 50px 0;
    color: #031E26; 
}

.info {
	position: relative;
	clear: both;
	width: 100%; 
}
.contact {
    position: relative;
		float: left;
    width: 440px;
    margin-bottom: 50px;
}

/* --- FISCHE (Einfache CSS-Darstellung) --- */
.fish-container {
    position: relative;
		float: left;
    height: 200px; /* Höhe für die Fische */
    margin-bottom: 50px;
		margin-left: 0;
}

.fish {
    position: absolute;
    width: 120px;
    height: 35px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.fish-grey {
		background-image: url('fishgrey.png');
    top: 20px;
    left: 100px;
}

.fish-red {
		background-image: url('fishred.png');
    top: 80px;
    left: 50px;
}

.fish-blue {
		background-image: url('fishblue.png');
    top: 140px;
    left: 120px;
}

/* --- ABONNEMENT --- */
.subscribe {
    margin-top: 40px;
}

.subscribe h3 {
    font-size: 1.4em;
    margin-bottom: 5px;
}

.subscribe p {
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #666;
}

.subscribe form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
    max-width: 350px;
}

.subscribe input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.subscribe button {
    padding: 12px 20px;
    background-color: var(--color-accent-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.subscribe button:hover {
    background-color: #0056b3;
}

/* --- FOOTER --- */
footer {
    padding: 20px 40px;
    margin-top: 50px;
    font-size: 0.8em;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
}

/* --- RESPONSIVITÄT --- */
@media (max-width: 768px) {
    .logo {
        top: 0px;
				padding-bottom: 20px;
    }
    .octopus {
        right: 20px;
    }
    .content-area {
        padding: 20px;
    }
    .slogan {
        font-size: 2.5em;
    }
    .subscribe form {
        width: 100%;
    }
    footer {
        padding: 20px;
    }
}
