
.content-initial,
.content-garten,
.content-music {
    display: none;
}

/* Show the INITIAL content when 'toggle-initial' is checked */
#toggle-initial:checked ~ .tag-cloud .content-initial {
    display: block;
}

/* Show the GARTEN content when 'toggle-garten' is checked */
#toggle-garten:checked ~ .tag-cloud .content-garten {
    display: block;
}

/* Show the MUSIC content when 'toggle-music' is checked */
#toggle-music:checked ~ .tag-cloud .content-music {
    display: block;
}



body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(159deg, #e1d99a 0%, #88ad71 100%);
    margin: 0;
    padding: 40px 40px 120px 40px;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#impressum_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 0;
    text-align: center;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    height: 80px;
    box-sizing: border-box;
}

#impressum_footer p {
    margin: 5px 0;
    font-size: 0.85em;
    line-height: 1.3;
    color: #ddd;
}

.tag-cloud {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag {
    display: inline-block;
    margin: 10px 15px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.tag-back {
    background-color: #000000cc;
    transition: none;
    color: white;
}
.tag-back:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

/* Verschiedene Größen für unterschiedliche Gewichtung */
.tag-xl {
    font-size: 2.5em;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: white;
}

.tag-lg {
    font-size: 2em;
    padding: 10px 20px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
}

.tag-md {
    font-size: 1.5em;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
}

.tag-sm {
    font-size: 1.2em;
    background: linear-gradient(45deg, #d09bd4, #cb54d2);
    color: white;
}

.tag-xs {
    font-size: 1em;
    background: linear-gradient(45deg, #e4a793, #f34812);
    color: white;
}

h1, h2, h3, h4, h5, h6, a {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    margin: 10px 0 20px 0;
    font-weight: 300;
}

.tag-cloud hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 20px 0 30px 0;
    border-radius: 1px;
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.tag-xl { animation: float 3s ease-in-out infinite; }
.tag-lg { animation: float 3.5s ease-in-out infinite 0.5s; }
.tag-md { animation: float 4s ease-in-out infinite 1s; }
.tag-sm { animation: float 3.2s ease-in-out infinite 1.5s; }
.tag-xs { animation: float 3.8s ease-in-out infinite 2s; }
