:root {
    --white: white;
    --lightgrey : lightgrey;
    --grey : grey;
    --darkgrey: darkgrey;
    --black : black;
}

html{
    background-color: var(--lightgrey);
    scroll-behavior: smooth;
}

.main-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: monospace;
    gap: 5px;
}

.navbar{
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-radius: 0.5em;
    background-image: url("./pics/navbar-bgc.webp");
    color: var(--lightgrey);
}

.title{
    font-size: 3em;
    font-weight: bolder;
    margin: 0.5em 0;
}

.nav-link{
    padding: 0.3em 0;
    font-size: 1.35em;
    cursor: pointer;
    color: var(--lightgrey);
}

.nav-link:hover{
    color: var(--darkgrey);
}

.hero{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    background-image: url("pics/hero-bgc.webp");
    background-size: cover;
    background-position: center;
    color: var(--white);
    border-radius: 0.5em;
    height: 60vh;
    justify-content: center;
}

.main-hero{
    text-align: center;
}

.hero-title{
    font-size: 2em;
    padding: 1em 0 1.5em;
    font-weight: bold;
}

.hero-text{
    font-size: 1.1em;
    padding: 0 1em;
    font-style: italic;
}

.vr-lounge{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 80vh;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    align-items: center;
    border-radius: 0.5em;
    background-color: var(--lightgrey);
}

.lounge-image{
    height: 50%;
    width: 55%;
    border-radius: 1em;
}

.lounge-heading{
    font-weight: bold;
    font-size: 2em;
    font-family: SansSerif, monospace;
    padding: 0 1em;
}

.lounge-text{
    padding: 1em 3em 0;
    font-size: 1.3em;
    text-align: center;
}

.vr-hologram{
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    align-items: center;
    height: 80vh;
    background-image: url("pics/hologram-bgc.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0.5em;
}

.hologram-pic{
    height: 50%;
    width: 80%;
    margin: 2em 0 0.7em;
    border-radius: 0.5em;
    align-self: center;
    border: 1px solid var(--white);
}

.sub-heading{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
}

.sub-heading-title{
    font-size: 2.3em;
    color: var(--white);
    height: 50%;
    margin-bottom: 0.5em;
}

.sign-up, .explore-events{
    font-size: 1.3em;
    padding-bottom: 0.7em;
    color: var(--white);
    font-style: unset;
    cursor: pointer;
}

.sign-up:hover, .explore-events:hover{
    color: var(--white);
}

.contact-form-section{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    height: 85vh;
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
}

.contact-title{
    font-size: 2.3em;
    text-decoration: underline;
    text-align: center;
    background-color: transparent;
    margin-bottom: 0.5em;
}

.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 2;
    justify-content: space-evenly;
}

.form-pic{
    border-radius: 50%;
    height: 90%;
    width: 100%;
    border: 1px solid var(--black);
}

.form-inputs{
    width: 70%;
}

.form-pic-div{
    height: 20vh;
}

#name, #email, #message, #submit{
    display: block;
    width: 100%;
    border-radius: 1em;
    border: 1px solid var(--black);
    margin-bottom: 1em;
    height: 1.5em;
    justify-self: center;
}

#message{
    height: 3em;
    overflow: auto;
}

#submit{
    width: 30%;
    justify-self: center;
    margin-bottom: 0;
    cursor: pointer;
    background-color: var(--grey);
    border: none;
    font-weight: bold;
}

#submit:hover{
    background-color: var(--darkgrey);
}

#submit:active{
    background-color: var(--grey);
}

.footer{
    height: 30vh;
    width: 100%;
    background-image: url("./pics/footer-bgc.webp");
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.foot-socials a{
    color: var(--lightgrey);
}

.foot-socials a:hover{
    color: var(--darkgrey);
}

.foot-text, .foot-contact{
    padding-left: 1em;
}