/* Google Fonts Setup */
body {
    margin: 0;
    padding: 0;
    font-family: 'Delius Swash Caps', cursive;
    background-color: #f4c2c2; /* Baby-Rosa */
    color: #FFFFFF;
    box-sizing: border-box;
    min-height: 100vh;
   overflow: auto;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* Links */
a, a:visited, a:hover, a:active {
    color: #c867e6;
    text-decoration: none;
}

/* Header & Footer */
header, footer {
    position: fixed;
    left: 50px;
    right: 50px;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
}

header {
    top: 0;
}

.header-inner {
    flex: 1;
    text-align: right;
    padding-right: 20px;
}

footer {
    bottom: 0;
    justify-content: center;
}

header h1 {
    font-family: 'Fleur De Leah', cursive;
    font-weight: 300; /* falls die Schriftart das untersttzt */
    -webkit-font-smoothing: antialiased;
    font-size: 2rem;
    margin: 0;
}

.content h2 {
    font-family: 'Delius Swash Caps', cursive;
    font-weight: 300; /* falls die Schriftart das untersttzt */
    -webkit-font-smoothing: antialiased;
    font-size: 2rem;
    margin: 0;
}

/* Weie Linie innerhalb von Header/Footer */
.line {
    position: fixed;
    top: 80px; /* exakt unter dem Header */
    left: 25px;
    right: 25px;
    height: 1px;
    background-color: white;
    z-index: 99;
}
.fline {
    position: fixed;
    bottom: 80px; /* exakt unter dem Header */
    left: 25px;
    right: 25px;
    height: 1px;
    background-color: white;
    z-index: 99;
}

/* Header: Linie unten */
header .line {
    align-self: stretch;
    margin-top: auto;
}

/* Footer: Linie oben */
footer .fline {
    align-self: stretch;
    margin-bottom: auto;
}

/* Content-Bereich */
.content {
    position: absolute;
    top: 81px;            /* unter Header + Linie */
    bottom: 81px;         /* ber Footer + Linie */
    left: 50px;
    right: 50px;
    overflow-y: auto;
    padding: 20px;
}

        .group-container {
            margin-bottom: 40px;
        }

        .bar-wrapper {
            width: 600px;
            margin: 20px 0;
            text-align: center;
        }

        .bar {
            height: 20px;
            border-radius: 10px;
            margin: 5px 0;
        }



/* Box Sizing fr alles */
*, *::before, *::after {
    box-sizing: inherit;
}

/* Wunschliste-Kachel-Layout */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 30px;
}

.card {
    text-align: center;
    width: 400px;
    flex: 0 0 auto;
}

.image-container {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.image-container img.base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-container img.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card a,
.card div {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: 300;
}