/*THIS CSS STYLIZES ANY LOCKED FRONT GATE PAGES*/
html {
    background-color: black;
}

/* Sens Fortress Front Img */
body {
    background-image: url("Contents/Sens-Open.png"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


#bonfire img {
    width: 300px;
    height: auto;
    position: absolute;
    left: 50vw;
    top: 500px;
    transform: translateX(-40%);
}

/* Bonfire background animation */
#bonfire-bg {
    position: absolute;
    width: 100vw;
    height: 100px;
    top: 44%;
    background-color: rgba(8, 6, 6, 0.486);
    filter: blur(3px);

    animation: fadeIn 4s ease-in-out forwards;
}

/* Bonfire text animation */
.bonfire-text {
    font-family: "Optimus Princeps", serif;
    position: absolute;
    bottom: -17%;
    left: 25%;
    font-weight: normal;
    color: #f08040;
    font-size: 120px;
    filter: blur(2px);

   
    animation: fadeIn 3s ease-in-out forwards;
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
        
        filter: blur(10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(2px);
    }
    100%{
        opacity: 0;
        
        filter: blur(10px);
    }
}


/* Front Gate Animation */
#FrontgateL {
    
    width: 200px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 5%;
    
    
}

#FrontgateF {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: -200px;
    width: 600px;
    height: 50px;
    border-top: 1px rgb(155, 102, 32) solid; 
    border-bottom: 1px rgb(155,102,32) solid; 
    margin-top: 60%;
    opacity: 0;  /* Initially hidden */
    transition: opacity 0.5s ease-in-out; /* Add transition for smooth fade-in */
}

#FrontgateL:hover > #FrontgateF{
    opacity: 1;
}

.Promptext{
    font-family: "Adobe Garamond", serif;
    position: absolute;
    bottom: 25%;
    left: 25%;
    font-weight: narrow;
    color: rgb(255, 255, 255);
    font-size: 20px;
    
}

/*Locked Door is now Unlocked*/
#RightD{
    

    width: 20vw;
    height: 60vh;
    position: absolute;
    Right: 15vw;
    top: 5%;
    
    
}



