body {
    font-family: Arial, sans-serif;
    background: #1E1E1E;
    color: black;
    margin: 0;
    align-content: center;
}

.dropdown .menu {
    display: none;
}
.dropdown .menu a {
    color: #000;
    text-decoration: none;
}

#menuToggle:checked ~ .menu {
    display: block;
}

.menu-label {
    cursor: pointer;
}


.hero-overlay {
    background: #D0D0D0;
    padding: 32px 40px;
    border-radius: 10px;
    text-align: center;
	
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

nav {
    margin-top: 24px;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
}

nav a:hover {
    background: #BC2B54;
    color: white;
}


main {
    max-width: 950px;
    margin: 0 auto;
    padding: 1em;
}


.bio-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5em;
    background: #C5C5C5;
    border-radius: 14px;
    padding: 2em 1.5em;
    margin-top: -60px;
    margin-bottom: 2em;
    box-shadow: 0 10px 20px rgba(0,0,0,0.30);
    border: 2px solid #BC2B54;
    position: relative;
    z-index: 2;
}

.bio-portrait {
	    display: block;
    margin: 0 auto;
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.30);
    border: 2px solid #BC2B54;
}

.bio-content {
    flex: 1;
}

.bio-name {
    margin-top: 0;
    margin-bottom: 0.6em;
}


.bio-accordion-card {
    background: radial-gradient(circle at top left, #BC2B54 0%, #1D1D1D 45%, #111 100%);
    border-radius: 14px;
    padding: 1px; 
    margin-bottom: 1em;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.bio-accordion-card::before {
    content: "";
    display: block;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(0,0,0,0.7));
    opacity: 0.5;
    mix-blend-mode: screen;
    pointer-events: none;
}

.bio-toggle {
    display: none;
}

.bio-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75em;
    padding: 0.9em 1em;
    background: rgba(10,10,10,0.9);
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.bio-accordion-title {
    display: flex;
    flex-direction: column;
}

.bio-accordion-title span {
    font-weight: 600;
    font-size: 1.05rem;
}

.bio-accordion-title small {
    font-size: 0.8rem;
    color: #ccc;
}


.bio-accordion-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #BC2B54;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bio-accordion-icon::before,
.bio-accordion-icon::after {
    content: "";
    position: absolute;
    background: #f5f5f5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.bio-accordion-icon::before {
    width: 12px;
    height: 2px;
}

.bio-accordion-icon::after {
    width: 2px;
    height: 12px;
}


.bio-accordion-body {
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.85);
    border-radius: 0 0 12px 12px;
    padding: 0 1em;
    transition: max-height 0.4s ease, padding 0.4s ease;
	scroll-behavior: auto;
}

.bio-accordion-body p {
    margin: 0.8em 0 1em 0;
    line-height: 1.5;
}


.bio-toggle:checked + .bio-accordion-header + .bio-accordion-body {
    max-height: 400px; 
    padding: 0.8em 1em 1em 1em;
}


.bio-toggle:checked + .bio-accordion-header .bio-accordion-icon {
    background: #BC2B54;
    transform: rotate(180deg);
}

.bio-toggle:checked + .bio-accordion-header .bio-accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}


#playButton {
    background-color: #BC2B54;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5em;
}

#playButton::before {
    content: "\266B";
    margin-right: 8px;
    font-size: 20px;
}

#playButton:hover {
    background-color: #e23c6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#playButton:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.gallery-group {
    background: #C5C5C5;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.17);
    margin: 30px auto;
    padding: 24px 12px;
    max-width: 980px;
    border: 2px solid #BC2B54;
}

.gallery-group h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #BC2B54;
    letter-spacing: 0.02em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gallery-item img {
	width: 100%;
max-width: 1000px;	
	 height: auto;
    display: block;
}

.responsive-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}


.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    background: #aaa;
    object-fit: cover;
   
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(188,43,84,0.33);
}


h1, h2, h3 {
    margin-top: 0;
}


@media (max-width: 768px) {
    .bio-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-content {
        width: 100%;
    }

    .bio-accordion-header {
        justify-content: space-between;
    }

    .gallery-group {
        padding: 15px 2px;
        border-radius: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
		
    }

    .bio-portrait {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

#backToTop {
    position: fixed;       /* fixiert an Bildschirmposition */
    bottom: 20px;          /* 20px vom unteren Rand */
    right: 20px;           /* 20px vom rechten Rand */
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background-color: #BC2B54;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.2s;
    z-index: 9999;
}

#backToTop:hover {
    background-color: #e23c6e;
    transform: translateY(-2px);
}

