@font-face {
    font-family: "Archer-Semibold";
    src: url(../font/ArcherSemiboldPro.otf);
}

@font-face {
    font-family: "Kosugi";
    src: url(../font/Kosugi-Regular.ttf);
}

@font-face {
    font-family: "Tiltwarp";
    src: url(../font/TiltWarp[XROT\,YROT].ttf);
}




body {
    scroll-behavior: smooth;
    background-color: black;
    margin: auto;
}

#hero-header {
    background-image: url(../images/avengers-background.jpg);
    height: 100vh;
}

a {
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.2px;
}

a:hover {
    color: #EF156D;
}

#nav-list a {
    font-weight: 600;
}

#nav {
    display: flex;
    margin: 0;
    justify-content: space-around;
    align-items: center;
    top: 20px;
    background: rgb(131 131 131 / 32%);
    border-radius: 26px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.7px);
    -webkit-backdrop-filter: blur(5.7px);
    border: 1px solid rgba(255, 255, 255, 0.62);
    width: 85%;
    gap: 141px;
    position: sticky;
    margin-left: auto;
    margin-right: auto;
}

#nav-list {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 60px;
    padding: 0;
}


ul {
    list-style: none;
}

input {
    background: rgb(255 255 255 / 32%);
    border-radius: 26px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.7px);
    height: 28px;
    padding-left: 37px;
    border: 0.2px solid rgb(255 255 255 / 62%);
    background-image: url(../images/search-vector.png);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 8px;
}

input::placeholder {
    opacity: 0.7;
    color: rgb(255, 255, 255);
}

h1 {
    font-family: "Archer-Semibold";
    font-size: 125px;
    color: white;
    margin: 0;
}

h2 {
    font-family: "Archer-Semibold";
    font-size: 90px;
    color: white;
    margin: 0;
}

h3 {
    font-family: "Kosugi";
    font-size: 35px;
    color: #EF156D;
}

.reservez {
    height: 53px;
    width: 281px;
    background-color: white;
    border: none;
}

.reservez a {
    color: black;
    font-family: "Tiltwarp";
    font-size: 18px;
    letter-spacing: 0.9px;
    padding: 15px 27px 15px 27px;
}

button:hover {
    color: #EF156D;
}

.reservez a:hover {
    color: #EF156D;
}


#movie-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 47%;
    position: absolute;
    bottom: 267px;
}

/* responsive */

@media screen and (max-width: 768px) {


    #hero-header {
        background-image: url(../images/avengers-background.jpg);
        height: 100vh;
    }

   #nav {
        display: flex;
        margin: 0;
        justify-content: space-around;
        background: rgb(131 131 131 / 32%);
        border-radius: 26px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5.7px);
        -webkit-backdrop-filter: blur(5.7px);
        border: 1px solid rgba(255, 255, 255, 0.62);
        width: 80%;
        gap: 38px;
        flex-direction: column;
        width: 42vh;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

    #nav-list {
        flex-direction: column;
        align-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    input {
        background: rgb(255 255 255 / 32%);
        border-radius: 26px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5.7px);
        height: 28px;
        padding-left: 37px;
        border: 0.2px solid rgb(255 255 255 / 62%);
        background-image: url(../images/search-vector.png);
        background-repeat: no-repeat;
        background-position-y: center;
        background-position-x: 8px;
        margin-bottom: 15px;
    }

    #logo {
        margin-top: 15px;
    }

       #hero-header {
        background-image: url(../images/avengers-background.jpg);
       
        background-position: center;
        
        background-position: right;
    }

       #movie-info {
        display: flex
;
        flex-direction: column;
        align-items: center;
        width: 100%;
        bottom: 0px;
        gap: 15px;
        background-color: black;
        height: 35vh;
        justify-content: center;
    }

    h1 {
        font-family: "Archer-Semibold";
        font-size: 69px;
        color: white;
        margin: 0;
    }

        h2 {
        font-family: "Archer-Semibold";
        font-size: 44px;
        color: white;
        margin: 0;
    }

    h3 {
        font-family: "Kosugi";
        font-size: 24px;
        color: #EF156D;
    }

        .reservez {
        height: 41px;
        width: 251px;
        background-color: white;
        border: none;
    }

        .reservez a {
        color: black;
        font-family: "Tiltwarp";
        font-size: 15px;
        letter-spacing: 0.9px;
        padding: 15px 27px 15px 27px;

    }




}