@import "/css/globals.css";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Raleway:wght@300&family=Roboto:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tourney:wght@100&display=swap');

html{
    scroll-behavior: smooth;
}

header{
    background-image: url(https://images.unsplash.com/photo-1499209974431-9dddcece7f88?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80);
    background-size: cover;
    background-position: center;


}

.navigation-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.651);
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: sticky;
}

.header-links ul{
    display: flex;
    list-style-type: none;
}

.header-links ul li a{
    color: white
}



.header-links ul li{
    padding: 1rem;
    display: block;
    cursor: pointer;
}

.header-links ul li:hover{
    background-color: #222;
    color: lightcoral;
}

.header-links ul li:hover a{
    color: lightcoral;
}

.fas{
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
}


.fas:hover{
    color: crimson;
}

.fas span:hover{
    color: crimson;
}

.fas span{
    color: white;
    font-size: 1.3rem;
    font-family: monospace;
}

.hero{
    padding: 10rem 0rem;
    color: white;
    text-align: center;
}
.hero h1{
    font-size: 4rem;
    word-spacing: 1rem;
    font-family: 'Tourney', cursive;
}


.verse{
    color: white;
    background-color: #cc4d3d;
    width: 50%;
    border-radius: 1rem;
    box-shadow: 1px 1px 32px 5px black;
    font-size: 1.3rem;
    margin: -2rem auto 2rem auto;
    padding: 1rem;
    line-height: 1.6;
}

.verse p{
    font-style: oblique;
}

.verse .small{
    font-weight: bolder;
    padding: 1rem 0rem 0rem 0rem;
    font-family: monospace;
}

.hero button{
    cursor: pointer;
    margin-left: 2rem;
    margin-top: 1rem;
    background: transparent;
    border: none;
    color: tomato;
    border-bottom: 1px solid white;

}

.hero .buttons{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}




/*Welcome place*/

.welcome-note{
    text-align: center;
    width: 90%;
    margin: 2rem auto;
    padding: 2rem 0.5rem;
    border: 1px solid black;

    box-shadow: 10px 10px 10px 1px rgb(121, 121, 121);
}



.welcome-note p{
    color: black;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    line-height: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.welcome-note h2{
    color: salmon;
    font-family: monospace;
    font-size: 2.3rem;
}

.welcome-note img{
    width: 55%;
}






/*Welcome place*/



/*Events*/
.events{
    display: flex;
    width: 90%;
    margin: 3rem auto;
}

.text{
    display: grid;
}
ul{
    list-style-type: none;
}

.events-box{
    background-color: rgb(235, 235, 235);
    width: 90%;
    margin: 0 auto;
    padding: 1rem 0.5rem;
    height: 20rem;
    text-align: center;
}

.events-box h2{
    border-bottom: 5px solid blue;
    width: 40%;
    margin: 0 auto;
    margin-bottom: 1rem;

}

.events-box li{
    background-color: white;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 0rem;
    font-family: 'Raleway', sans-serif;
    font-weight: bolder;
}


.right-bar{
    width: 25%;
    height: 40rem;
    background-color: cornsilk;

}

#verse2{
    font-style: oblique;
    padding-bottom: 2rem;
}

.final-message{
    color: rgb(0, 0, 139);
    font-size: 2rem;
    font-family: sans-serif;
    padding: 2rem 0rem;
    width: 95%;
    text-align: center;
    border-bottom: 1px solid blue;
}

.right-bar img{
    width: 90%;
}







/*Events*/

footer{
    text-align: center;
    background-color: #052252;
    color: white;
    padding: 3rem 0rem;
    font-family: "Montserrat";
    position: relative;
}
#official-link{
    padding: 1.5rem 0rem;
}

#official-link a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.5s;
}

#official-link a:hover{
    color: cyan;
}

#go-to-top{
    position: absolute;
    bottom: 0;
    left: 30%;
    color: white;
    margin: 0 auto;
    width: 40%;
    padding: 1rem 0rem;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.651);
}











@media (max-width: 767px) {
    .header-links{
        display: none;
        width: 100%;
        position: absolute;
        top: 3.8rem;
        background-color: rgba(0, 0, 0, 0.651);
        border-bottom: 1px solid white;
    }

    .fas{
        opacity: 1;
    }

    .navigation-bar{
        flex-direction: column;
        align-items: flex-start;
    }

    .header-links ul{
        flex-direction: column;
        width: 100%;
    }


    .header-links.show{
        display: block;
    }

    .hero h1{
        font-size: 3.5rem;
    }

    .verse{
        width: 80%;
    }
    .events{
        display: grid;
    }

    .right-bar{
        display: none;
    }

}

/*https://images.unsplash.com/photo-1600738973956-729a6ae7324a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80*/
