body {
    background-image: url('../../Images/Background/DuoImage.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    min-height: 250vh; /* Increased the height to make the website longer */
    overflow-y: scroll;
    position: relative;
}

.gradient-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 15%;
    transform: translateY(-50%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.034), rgb(3, 22, 0), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 10; /* Ensures visibility */
}

.fixed-footer {
    position: absolute;
    bottom: -30px; /* Moves the footer further down */
    left: 0;
    width: 100%;
    background: linear-gradient(160deg, #4b53208a, #53290b8f); /* Groene en bruine tinten */
    color: #ffffff; /* Witte tekst voor beter contrast */
    border-top: 2px solid #3f3e08; /* Bruine rand bovenaan */
    text-align: center;
    padding: 10px 0;
    z-index: 10; /* Ensures it stays above other elements */
    font-family: 'MagicalNeverland', cursive; /* Fantasy-stijl lettertype */
    box-shadow: 0 0 15px rgba(85, 40, 3, 0.959), 0 0 30px rgba(67, 114, 9, 0.753); /* Gloed in bruine en groene tinten */
}

.PortfolioAboutPage .fixed-footer {
    position: fixed; /* Zorgt ervoor dat de footer altijd onderaan blijft */
    bottom: 0; /* Plaatst de footer aan de onderkant van de pagina */
    width: 100%; /* Zorgt ervoor dat de footer de volledige breedte beslaat */
    margin-top: 0; /* Verwijder extra ruimte boven de footer */
    z-index: 10; /* Zorg ervoor dat de footer boven andere elementen blijft */
}

.header-section {
    position: absolute;
    top: 13%; /* Move the header section slightly further down */
    left: 8%;
    color: white;
    text-align: left;
    transform: rotate(-5deg); /* Tilt the header section slightly */
}

.header-section h1 {
    font-size: 3em;
    margin: 0;
}

.header-section h2 {
    font-size: 1.5em;
    margin-left: 7%;
    margin-top: 0%;
}

.floating-buttons {
    position: fixed;
    top: 5%; /* Moves the section slightly up */
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 15; /* Ensures it stays above other elements */
}

.music-button {
    font-size: 1em;
    padding: 10px 20px;
    font-family: 'MagicalNeverland', cursive;
    background: linear-gradient(150deg, #4b5320, #552a0b);
    color: #ffffff;
    border: 2px solid #3f3e08;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(105, 50, 11, 0.8), 0 0 30px rgba(75, 83, 32, 0.5);
}

.music-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgb(102, 51, 14), 0 0 50px rgba(75, 83, 32, 0.8);
}

.language-buttons {
    display: flex;
    gap: 10px;
}

.language-button {
    font-size: 1em;
    padding: 5px 15px;
    background-color: #f0f0f0;
    color: black;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.language-button.nl {
    align-self: flex-start;
}

.language-button.eng {
    align-self: flex-end;
}

.BookImgSection {
    min-height: calc(100vh - 150px); /* Zorg ervoor dat de sectie voldoende ruimte biedt boven de footer */
}

