@font-face{
    font-family: 'Monument Extended Regular';
    src: url('./assets/fonts/monumentextended-regular-webfont.woff');
 }

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

html, body {
    width: 100%;
    height: 100vh;
    background: #FFF899;
    overflow: hidden;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2em 1em 2em 2em;
    font-family: 'Monument Extended Regular', Arial, sans-serif;
}

nav > * {
    position: relative;
}

nav a {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    padding: 0 1em;
    font-size: 12px;
    font-weight: 300;
}

@media(max-width: 900px) {
    nav .nav-links {
        display: none;
    }

    nav {
        justify-content: center;
    }

    header h1 {
        font-size: 70px !important;
    }
    
    .header-right {
        display: none;
    }
}

header {
    width: 100%;
    height: 30vh;
    padding: 2em;
    display: flex;
    align-items: center;
}

header .col {
    width: 60%;
}

header .col:nth-child(2){
    width: 40%;
}

header .item h1 {
    position: relative;
    font-family: 'Monument Extended Regular', Arial, sans-serif;
    font-size: 100px;
    text-transform: uppercase;
    line-height: 0.8;
    margin: 0;
}

.play-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    background: url('./assets/pawel-czerwinski-BPrk2cOoCq8-unsplash.jpg') no-repeat 50% 50%;
    background-size: cover;
    border-radius: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.4em;
    transition: filter 0.3s;   
}

.play-wrapper:hover {
    filter: grayscale(100%)
}

.play-btn {
    width: 70px;
    height: 70px;
    background: black;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;   
    color: #FFF899;
    cursor: pointer;
}

.play-btn:hover {
    background-color: #96b8d7;
    color: white;
  }

.pattern {
    text-align: center;
    padding: 1em 0;
    letter-spacing: 10px;
    opacity: 0.2;
}

.copy p {
    font-family: 'Monument Extended Regular', Arial, sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.5;
}

.btn-container {
    width: 100%;
    padding: 2em;
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.btns {
    display: flex;
    /* width: 100%; */
}

.btn {
    border: 1px solid black;
    margin-right: 1em;
    padding: 0.9em 1.5em;
    border-radius: 20px;
    font-family: 'Monument Extended Regular', Arial, sans-serif;
    font-size: 10px;
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;   
}

.btn:hover {
    background-color: #96b8d7;
    color: white;
    /* border: 1px solid white; */
}

.divider {
    width: 65%;
}

.hr {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.9);
    /* opacity: 0.2; */
}

.hero {
    position: relative;
    width: 95%;
    height: 50vh;
    border-radius: 40px 40px 0 0;
    margin: 2em auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero img {
    width: 100%;
    object-fit: fill;
    object-position: -20%, 0;
   
    transition: filter 0.3s;  
}

.hero img:hover {
 filter: grayscale(100%); 
}

.hero-wrapper {
    position: absolute;
    width: 0;
    height: 100%;
    background: #FFF899;
}

.arrow {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgb(45, 45, 45);
    border-radius: 100%;
    background: black;
    top: -1.4em;
    right: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #FFF899;
    font-family: "Dahlia", Arial, sans-serif;
    transform: rotate(-45deg);
    transition: background-color 0.3s;
    cursor: pointer;
}

.arrow:hover {
    background-color: #96b8d7;
    color: white;
  }


.marquee {
    position: absolute;
    bottom: 0%;
    width: 100%;
    margin: 0 auto;
    padding: 0.1em 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 3;
    background: black;
    display: flex;
    align-items: center;
    font-style: italic;
}

.marquee span {
    font-family: 'Monument Extended Regular', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #FFF899;
    mix-blend-mode: normal !important;
    font-size: 4em;
    text-transform: uppercase;
    padding-left: -10%;
    animation: marquee-animation 80s linear infinite; 
    transition: color 0.3s;   
}

.marquee span:hover {
    color: #96b8d7;
    /* color: white; */
  }


@keyframes marquee-animation {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}