body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: black;
    height: auto;
    background-image: url('pics/backgrounds/background12.png');
    background-size: cover;
    background-position: top;
}





.title-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
}

/* Shared base animation state */
.title-large,
.title-small,
.title-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.4s ease forwards;
}

/* Stagger timing */
.title-large {
    animation-delay: 0s;
    font-size: 140px;
    color: white;
}

.title-small {
    animation-delay: 0.2s;
    font-size: 30px;
    color: white;
    margin-top: 10px;
}

.title-button {
    animation-delay: 0.4s;
    margin-top: 15px;
    cursor: pointer;
    width: 100px;   /* adjust freely */
    height: auto;   /* keeps aspect ratio */
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







.scene-container {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: none; /* keep hidden initially */

    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.scene-image {
    max-height: 100%;
    max-width: 100%;

    height: auto;
    width: auto;

    opacity: 0;
    transition: opacity 0.3s ease;

    display: block;
}
.scene-visible {
    opacity: 1;
}



.scene-click-area {
    position: absolute;
    cursor: pointer;
    z-index: 10;

    display: none;

    /* ALWAYS fully transparent */
    background-color: transparent;

    /* stronger base glow */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);

    /* smooth glow transition */
    transition: box-shadow 0.2s ease;
}

/* hover = ONLY glow increases */
.scene-click-area:hover {
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.5);
}
/* scene 1 click area */
.scene-click-area-1 {
    width: 300px;
    height: 500px;

    top: 30%;
    left: 48%;
}
.scene-click-area-2 {
    width: 500px;
    height: 400px;

    top: 34%;
    left: 57%;
}
/* scene 3 click area */
.scene-click-area-3 {
    width: 300px;
    height: 500px;

    top: 30%;
    left: 44%;
}
/* scene 4 click area */
.scene-click-area-4 {
    width: 250px;
    height: 450px;

    top: 30%;
    left: 44%;
}

/* scene 5 click area */
.scene-click-area-5 {
    width: 300px;
    height: 380px;

    top: 18%;
    left: 53%;
}
.scene-click-area-6 {
    width: 230px;
    height: 580px;

    top: 18%;
    left: 30%;
}
.scene-click-area-7 {
    width: 360px;
    height: 700px;

    top: 20%;
    left: 44%;
}
.scene-click-area-8 {
    width: 480px;
    height: 850px;

    top: 14%;
    left: 23%;
}
.scene-click-area-9 {
    width: 400px;
    height: 100%;


    left: 51.5%;
}
/* second clickable area for scene 9 */
.scene-click-area-9b {
    position: absolute;
    cursor: pointer;
    z-index: 10;

    display: none;

    /* customize position/size */
    width: 180px;
    height: 500px;

    top: 16%;
    left: 37.5%;

    /* debug */

}

.scene-click-area-10 {
    width: 270px;
    height: 70px;
    z-index: 9999;
    top: 90%;
    left: 16%;
}

/* base scene text */
.scene-text {
    position: absolute;
    z-index: 20;

    display: none; /* hidden by default */

    color: white;
    font-size: 40px;

    /* you can edit these */
    width: 400px;
    height: auto;

    top: 90%;
    left: 15%;
}

/* scene 10 specific text */
.scene-text-10 {
    /* customize freely */
}







/*TEXT CSS EFFECTS*/
.white-outline {
    text-shadow: 
        2px 0 0 white,
        -2px 0 0 white, 
        0 2px 0 white, 
        0 -2px 0 white;
}
.black-outline {
    text-shadow: 
        2px 0 0 black, 
        -2px 0 0 black, 
        0 2px 0 black,
        0 -2px 0 black; 
    color: white;   
}
.thick-black-outline {
    text-shadow: 
        7px 0 0 black, 
        -7px 0 0 black, 
        0 7px 0 black,
        0 -7px 0 black; 
    color: white;   
}

