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

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

/* -------------------- */
/* PAGE */
/* -------------------- */

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    height:100%;
}

body{
    background:#F8F7F3;
    color:#111;
    -webkit-font-smoothing:antialiased;
}

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

.hero{

    position:relative;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* -------------------- */
/* LOGO */
/* -------------------- */

.logo{

    display:block;

    width:270px;

    height:auto;

    transform:translateY(-52px);

}

/* -------------------- */
/* SCROLL */
/* -------------------- */

.arrow{

    position:absolute;

    left:50%;

    bottom:28px;

    transform:translateX(-50%);

    text-decoration:none;

    font-family:Helvetica, Arial, sans-serif;

    font-size:15px;

    font-weight:300;

    color:#111;

    opacity:.35;

    transition:opacity .25s ease;

    user-select:none;

}

.arrow:hover{

    opacity:.65;

}

/* -------------------- */
/* NEXT SECTION */
/* -------------------- */

.next-section {

    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #F8F7F3;
}

.intro-line {

    font-family: Helvetica, Arial, sans-serif;

    font-size: 17px;

    font-weight: 400;

    color: #111111;

    letter-spacing: 0;

    line-height: 1.5;

    transform: translateY(-24px);
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width:1440px){

    .logo{

        width:240px;

    }

}

@media (max-width:1024px){

    .logo{

        width:200px;

    }

}

@media (max-width: 600px) {
    .logo {
        width: 165px;
        transform: translateY(-32px);
    }

    .arrow {
        font-size: 14px;
        bottom: 22px;
    }

    .intro-line {
        font-size: 16px;
    }
}

/* -------------------- */
/* LATEST MIX */
/* -------------------- */

.mix-section{

    width:100%;
    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    background:#F8F7F3;

}

.mix-card{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.mix-cover{

    width:320px;

    height:auto;

    display:block;

    margin-bottom:28px;

}

.mix-title{

    font-family:Helvetica, Arial, sans-serif;

    font-size:18px;

    font-weight:400;

    color:#111;

    margin-bottom:8px;

    text-align:center;

}

.mix-meta{

    font-family:Helvetica, Arial, sans-serif;

    font-size:15px;

    font-weight:400;

    color:#555;

    text-align:center;

}