/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ---------- BODY ---------- */

body{

   font-family:'Poppins', sans-serif;

}

/* ---------- HERO ---------- */

.hero{

    height:100vh;

    background-image:
        linear-gradient(
            rgba(0,0,0,.15),
            rgba(0,0,0,.45)
        ),
        url("../images/hero.jpg");

    background-size:cover;

    background-position:center center;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    position:relative;


}

/* ---------- HERO CONTENT ---------- */

.hero-content{

   width:100%;

    text-align:center;

    color:white;

    padding-top:70px;


}

.hero h1{

   font-size:5rem;

    letter-spacing:8px;

    text-shadow:0 3px 12px rgba(0,0,0,.45);

    margin-bottom:20px;


}

.tagline{

       font-size:1.9rem;

    font-weight:300;

    text-shadow:0 2px 8px rgba(0,0,0,.45);

}

.button{

    display:inline-block;

    background:#d96b1d;

    color:white;

    text-decoration:none;

    padding:18px 55px;

    border-radius:50px;

    font-size:1.5rem;

    font-weight:600;

    transition:all .3s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

.adventure-prompt{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    width:100%;

    text-align:center;

}

.navbar{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:35px 60px;

    box-sizing:border-box;

}

.nav-logo{
    font-size:1.3rem;

    font-weight:700;

    letter-spacing:3px;

    color:white;

    text-shadow:0 3px 10px rgba(0,0,0,.45);

}

.nav-links a{
    color:white;

    text-decoration:none;

    margin-left:38px;

    font-size:1rem;

    font-weight:500;

    letter-spacing:.5px;

    transition:.3s ease;

    text-shadow:0 2px 8px rgba(0,0,0,.45);

}

.nav-links a:hover{
    color:#d96b1d;

}

.upload-page{
    max-width:700px;
    margin:80px auto;
    padding:40px;
    font-family:'Poppins', sans-serif;
}

.upload-page h1{
    color:#d96b1d;
    margin-bottom:20px;
}

.upload-page p{
    margin-bottom:25px;
}

.upload-page form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.upload-page label{
    font-weight:600;
}

.upload-page select,
.upload-page input{
    padding:14px;
    font-size:1rem;
}

.upload-page button{
    background:#d96b1d;
    color:white;
    border:none;
    padding:16px;
    border-radius:40px;
    font-size:1.1rem;
    cursor:pointer;
}

.upload-page button:hover{
    background:#bf5d16;
}

.upload-message{
    background:#f4e5d8;
    padding:15px;
    border-radius:8px;
}