@charset "UTF-8";
/* CSS Document */

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
	background-color: #fff7ec;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    background-color: #d4edfc;
    background-image: url('/images/Tagesmama_Logo.png');
    background-size: 592px 294px;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 2rem;
    text-align: center;
    height: 294px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Responsive Anpassung für das Header-Bild */
@media (max-width: 592px) {
    .header {
        background-size: 100% auto;
        height: auto;
        min-height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
}

.header h1 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.header p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


/* Navigation */
.nav {
    background-color: #fff7ec;
    padding: 0 1rem;
	max-width: 1200px; /* Gleiche Breite wie der Container */
    margin: 0 auto; /* Zentriert die Navigation */
    width: 100%;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}



.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 1rem;
}

.nav li {
    margin: 0;
}

.nav a {
    display: block;
    color: #5eb1e3;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
}

.nav a:hover {
    color: #005091;
 
}

.nav a.active {
    color: #005091;
    font-weight: bold;
}

/* Wellenlinie als separates Element */
.wave-line {
    width: 100%;
    height: 10px; /* Deine Höhe */
	background-image: url('/images/Tagesmama_Welle_klein.jpg'); /* Dein Bildpfad */
    background-repeat: repeat-x;
    background-position: left top;
    background-size: auto 100%;
   /* max-width: 1200px; /* Gleiche Breite wie Navigation und Container */
    margin: 0 auto; /* Zentriert */
	padding: 0;
}

/* Container für die Spalten */
.container {
    display: flex;
    min-height: calc(100vh - 240px);
    gap: 1rem;
    padding: 1rem 1rem;
    max-width: 1200px; /* Maximale Breite des Containers */
    margin: 0 auto; /* Zentriert den Container horizontal */
    width: 100%; /* Nutzt die verfügbare Breite bis zur max-width */
}

/* Linke Spalte */
.left-column {
    flex: 1;
    background-color: #fff7ec;
    padding: 2rem 2rem;
    border-radius: 8px;
}

/* Rechte Spalte */
.right-column {
    flex: 1;
    background-color: #fff7ec;
    padding: 2rem 0;
    border-radius: 8px;
}

.sidebar-image {
    width: 100%;
    max-width: 484px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Anpassung für das Sidebar-Bild */
@media (max-width: 768px) {
    .sidebar-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #d4edfc;
    color: white;
    padding: 1.5rem 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .header {
        padding: 1rem;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
    }

    .nav a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #2c3e50;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer {
        padding: 1rem;
    }
}

/* Styling für bessere Lesbarkeit */
h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
  /*  border-bottom: 2px solid #3498db; */
    padding-bottom: 0.5rem;
	font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    text-align: left;
}

.highlight {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
}
ul { 
	padding-left

}