
.accordion-item, .accordion-button, .accordion-body, .accordion-collapse, .accordion-header, .accordion-button:not(.collapsed) {
    background: #525252;
    color: #ffffff;
    
    
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #333;
}

.accordion {
    padding: 1rem;

}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-button {
    border: none;
    
}

.accordion-button::after {
    filter: invert(1);
}

.layout {
    display: flex;
    height: 100vh;
}

.donation-panel {
    color: #ffffff;
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: none
}

.music-panel {
    flex: 0 0 auto;
    height: 100vh;
    aspect-ratio : 2/3;
    display: flex;
    flex-direction: column;
    background: #303030
}

.music-panel iframe {
    width: 100%;
    height: 100%;
    max-width: 700px;
    border: 0;
}

.donate-btn {
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    border-radius: 2rem;
}

.org-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 15px;
    flex-shrink: 0;
}

.accordion-button {
    border: none;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    /* was ~1rem by default, this cuts it down */
}

.org-logo {
    width: 36px;
    /* was 50px */
    height: 36px;
    margin-right: 10px;
    /* was 15px */
}

.accordion-item {
    border-radius: 1rem;
    overflow: hidden;
    border: 6px solid #525252;
    /* was 10px, thinner border = slimmer look */
}

.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item {
    border-radius: 2rem;
    overflow: hidden;
    border: 10px solid #525252;
}

/* MOBILE */
@media (max-aspect-ratio: 3/2) {
    .layout {
        flex-direction: column;
        height: 100vh;
    }
    
    .donation-panel {
        flex: none;
        overflow-y: auto;
        height: calc(100% - 300px);
    }

    .music-panel {
        position: fixed;
        bottom: 0;
        left:0;
        width: 100%;
        height: 300px;
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

}

.accordion-item:not(:first-of-type) {
    border-top: 10px solid #525252;
}
.page-intro {
    padding: 2rem 2rem 0;
    max-width: 900px;
    color: #cccccc;
}

body {
    position: relative;
    /* needed so the pseudo-element can position against it */
    color: #ffffff;
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    top: calc(var(--scroll-progress, 0.5) * -20vh);

    width: 100%;
    height: 120vh;

    background-image: url('../images/Cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -2;
    filter: grayscale(100%);
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background-color: rgba(0, 0, 0, 0.7);
    /* the dark overlay — adjust 0.6 for more/less darkness */
}

.titre-mouvement {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0rem;
}
.titre-projet {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0 0;
}

.donation-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

html {
    
    scrollbar-width: thin;
    /* Options: auto, thin, none */
    scrollbar-color: #525252 #303030;
    /* format: "thumb_color track_color" */
}