/* Verwijder alle stijlen die verband houden met de paper-sections */

/* Stijl voor de dynamische sectie in het midden van de pagina */
.BookImgSection {
    z-index: 35;
    position: absolute;
    top: 60%; /* Verplaatst van 50% naar 60% */
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-image: url('../../Images/Paper/Paper.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;

    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(82, 100, 3, 0.8), 0 0 30px rgba(75, 83, 32, 0.5);
    background-color: rgba(255, 255, 255, 0.2); /* Tijdelijke achtergrondkleur voor debugging */
    border: 2px dashed red; /* Tijdelijke rand voor debugging */
}

.BookImgSection .content {
    text-align: center;
    color: #ffffff;
    font-family: 'MagicalNeverland', cursive;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Voeg een subtiele schaduw toe voor betere zichtbaarheid */
}

/* Verwijderde secties */

/* Verwijder de stijlen voor de top-sections, left-section en right-section */
.BookImgSection .content .top-sections {
    display: none;
}

.BookImgSection button {
    margin-top: 20px;
    padding: 10px 20px;
    font-family: 'MagicalNeverland', cursive;
    background: linear-gradient(150deg, #4b5320, #552a0b);
    color: #ffffff;

    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);
}

.BookImgSection button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgb(102, 51, 14), 0 0 50px rgba(75, 83, 32, 0.8);
}

/* Maak de afbeelding nog groter dan de sectiebreedte */
.BookImgSection .content img {
    width: 150%; /* Vergroot naar 120% van de sectiebreedte */
    height: auto; /* Houd de aspectratio intact */
    box-shadow: 0 0 100px rgba(105, 50, 11, 0.767), 0 0 100px rgba(80, 55, 3, 0.842);
}

/* Verwijder de fogEffect animatie */
.BookImgSection {
    animation: none; /* Verwijder de animatie */
}