.header {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D6E2F2;
    color: #003B79;

}
.header img {
    height: 50px;
    margin-left: 25px;
}
footer {
    background-color: #D6E2F2;
    color: #003B79;
    padding: 50px;
}
.footer-link {
    color: #003B79;
    text-decoration: none;
}
.footer-link:hover {
    color: #7398DC;
}
footer a img {
    transition: transform 0.2s ease-in-out;
}
footer a img:hover {
    transform: scale(1.2);
}
@font-face {
    font-family: 'PlaylistScript';
    src: url('fonts/PlaylistScript.otf') format('opentype');
}
h1{
    font-family: 'PlaylistScript';
    color: #003B79;
}
.carousel-item img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    border-radius: 15px;
}
body {
    color: #003B79;
    background-color: #D6E2F2;
}
.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.image-container img {
    object-fit: cover;
    width: 100%;
    height: 75vh;
    display: block;
    transition: transform 0.3s ease;	
}
.frosted-left {
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #003B79;
    font-size: 1.4rem;
    transform: translateX(-50%);
    transition: all 0.6s ease;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}
.frosted-right {
    position: absolute;
    top: 0;
    right: -50%; /* Startet rechts außerhalb */
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Transparenter Frost-Effekt */
    backdrop-filter: blur(8px); /* Frost-Glas Effekt */
    display: flex;
    flex-direction: column; /* Elemente vertikal anordnen */
    justify-content: center; /* Vertikal zentrieren */
    align-items: center; /* Horizontal zentrieren */
    color: #003B79;
    transition: all 0.6s ease-in-out; /* Bewegung */
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}
.image-container:hover img {
    transform: scale(1.1);
}
.image-container:hover .frosted-left {
    left: 0;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}
.image-container:hover .frosted-right {
    right: 0;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}
.frosted-left h2, .frosted-left p
.frosted-right h2, .frosted-right p {
    margin: 0;
    transform: translateX(-50%);
    opacity: 0;
    transition: transform 0.5s ease;
}
.frosted-left h2, .frosted-left p {
    transform: translateX(-50%);
}
.frosted-right h2, .frosted-right p {
    transform: translateX(50%);
}
.image-container:hover .frosted-left h2,
.image-container:hover .frosted-left p,
.image-container:hover .frosted-right h2,
.image-container:hover .frosted-right p {
    transform: translateX(0);
    opacity: 1;
}

.image-container:hover .frosted-left h2 {
    opacity: 1;
    transform: translateX(0);
}
.image-container:hover .frosted-left p {
    opacity: 1;
    transform: translateX(0);
}
.termine-container {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.termin-card {
    position: relative;
    width: 250px;
    height: 150px;
    background: #7398DC;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.termin-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.termine-container :hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.frosted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.6s ease;
    pointer-events: none;
}
.frosted-overlay h4 {
    color: #003B79;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}
.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    filter: blur(5px);
    pointer-events: none;
}
.card-content h5,
.card-content p {
    margin: 0;
    color: #003B79;
}
@media (max-width: 768px) {
    .termin-card {
        width: 200px;
        height: 120px;
    }
}
.Top-Logo {
    height: 100%;
}
.map-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 600px;
    height: 450px;
}