@font-face {
    font-family: 'Lulo';
    src: url('../fonts/lulo-clean-w01-one-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
*  margin: 0;
*  padding: 0;
*  box-sizing: border-box;
*  }
*
*  html,
*  body {
*       width: 100%;
*       height: 100%;
*       overflow-x: hidden;
*       font-family: Arial, Helvetica, sans-serif;
*       background: #000;
*       }
*
*/**************************************************
HEADER
**************************************************/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    background: #07131b;
    z-index: 1000;
}

.header-inner {
    width: 96%;
    max-width: 1450px;
    height: 54px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/**************************************************
 * NAVIGATION
 * **************************************************/

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 18px;
}

nav li {
    position: relative;
}

nav a {
    display: block;
    line-height: 54px;
    color: #fff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 400;
    transition: color .4s;
}

nav a:hover {
    color: #d7d7d7;
}

/**************************************************
 * DROPDOWN
 * **************************************************/

.dropdown ul {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    width: 180px;
    list-style: none;
    background: #07131b;
}

.dropdown:hover ul {
    display: block;
}

.dropdown ul a {
    display: block;
    padding: 10px 16px;
    line-height: normal;
}

.dropdown ul a:hover {
    background: #12222d;
}

/**************************************************
 * SOCIAL ICONS
 * **************************************************/

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.socials img {
    width: 16px;
    height: 16px;
    opacity: .95;
    transition: .2s;
}

.socials img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/**************************************************
 * HERO
 * **************************************************/

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(214,198,170,.24);
}

/**************************************************
 * CONTENT
 * **************************************************/

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 20;
}

/**************************************************
 * TITLE
 * **************************************************/

.binary-title {
    display: inline-block;
    margin-bottom: 28px;
    font-family: "Lulo", sans-serif;
    font-size: 112px;
    line-height: 1;
    letter-spacing: -.23em;
    text-transform: uppercase;
    background-image: url("../images/binary.jpg");
    background-repeat: repeat;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter:
        drop-shadow(0 2px 0 rgba(0,0,0,.9))
        drop-shadow(0 5px 8px rgba(0,0,0,.45));
}

/**************************************************
 * SIGNATURE
 * **************************************************/

.signature {
    display: block;
    width: 46vw;
    min-width: 560px;
    max-width: 1200px;
    margin: 0 auto;
}

/**************************************************
 * FOOTER
 * **************************************************/

footer {
    background: #07131b;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 13px;
}

/**************************************************
 * RESPONSIVE
 * **************************************************/

@media (max-width:1100px) {
    .binary-title { font-size: 78px; }
    .signature { width: 75vw; min-width: 0; }
}

@media (max-width:700px) {
    header { height: auto; }
    .header-inner { flex-direction: column; height: auto; padding: 10px 0; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .socials { margin-top: 10px; }
    .binary-title { font-size: 48px; }
    .signature { width: 90vw; }
}

.hero-tagline {
    margin: 28px 0 55px;
    color: rgba(255,255,255,.95);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.signature {
    display: block;
    width: 46vw;
    min-width: 560px;
    max-width: 500px;
    margin: 60px auto 0;
}
