*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:black;
    color:white;
    overflow-x:hidden;
}


/* =================
INTRO
================= */

.intro{
    position:fixed;
    inset:0;
    background:black;
    z-index:100;

    display:flex;
    justify-content:center;
    align-items:center;

    animation:introFade 2.3s forwards;
}


.cobra-eyes{
    display:flex;
    gap:120px;
}


.cobra-eyes span{

    width:100px;
    height:35px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #ff0000,
        transparent
    );

    clip-path:polygon(
        0 50%,
        25% 10%,
        75% 10%,
        100% 50%,
        75% 90%,
        25% 90%
    );

    box-shadow:
    0 0 25px red,
    0 0 80px red,
    0 0 150px crimson;

    animation:eyeOpen .5s forwards;
}


.cobra-eyes span::after{

    content:"";

    position:absolute;

    height:45px;
    width:10px;

    background:black;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}



@keyframes eyeOpen{

from{
    opacity:0;
    transform:scale(.2);
}

to{
    opacity:1;
    transform:scale(1);
}

}



@keyframes introFade{

0%,75%{
    opacity:1;
}

100%{
    opacity:0;
    pointer-events:none;
}

}



/* =================
SMOKE
================= */

.smoke{

    position:fixed;
    inset:-50%;

    background:

    radial-gradient(
        circle,
        rgba(255,255,255,.16),
        transparent 35%
    );

    filter:blur(70px);

    animation:
    smokeMove 12s infinite alternate;

    pointer-events:none;
}



@keyframes smokeMove{

from{
    transform:translate(-5%,-5%);
}

to{
    transform:translate(5%,5%) scale(1.2);
}

}



/* =================
MAIN
================= */

.hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:

    radial-gradient(
        circle,
        rgba(212,175,55,.15),
        transparent 40%
    ),

    black;

}



.content{

    text-align:center;

    position:relative;

    z-index:5;

}



h1{

    font-size:90px;

    letter-spacing:10px;

    color:#D4AF37;

    text-shadow:

    0 0 20px gold,

    0 0 80px orange;

}



h3{

    margin-top:20px;

    font-size:28px;

    letter-spacing:8px;

}



.est{

    margin-top:25px;

    font-size:22px;

    letter-spacing:8px;

    color:#D4AF37;

}



.quote{

    margin-top:35px;

    font-size:25px;

    letter-spacing:5px;

    font-style:italic;

}



h2{

    margin-top:45px;

    font-size:45px;

    letter-spacing:8px;

}



/* =================
COBRA SVG
================= */


.cobra-link{

    display:inline-block;

    margin-top:55px;

    background:transparent;

}



#cobra-container{

    background:transparent;

    display:flex;

    justify-content:center;

    align-items:center;

}



#cobra-container svg{

    width:300px;

    height:auto;

    display:block;

    background:transparent;

    overflow:visible;

    cursor:pointer;

    transition:.4s;

    filter:

    drop-shadow(0 0 20px gold);

}



.cobra-link:hover svg{

    transform:scale(1.15);

    filter:

    drop-shadow(0 0 30px red)

    drop-shadow(0 0 80px orange);

}



.cobra-link:active svg{

    animation:strike .3s;

}



@keyframes strike{

50%{

    transform:

    translateX(40px)

    scale(1.2);

}

}



.click{

    margin-top:20px;

    letter-spacing:5px;

    opacity:.7;

}



/* =================
CONTACT
================= */


.contact{

    margin-top:100px;

}



.contact h4{

    font-size:30px;

    letter-spacing:8px;

    color:#D4AF37;

}



.contact-box{

    margin-top:35px;

    padding:40px;

    background:

    rgba(255,255,255,.03);

    border:

    1px solid rgba(212,175,55,.5);

    backdrop-filter:blur(10px);

    box-shadow:

    0 0 40px rgba(212,175,55,.15);

}



.contact input,

.contact textarea{

    width:100%;

    background:black;

    color:white;

    border:

    1px solid #D4AF37;

    padding:18px;

    margin-bottom:20px;

    letter-spacing:3px;

}



.contact textarea{

    height:150px;

    resize:none;

}



.contact input:focus,

.contact textarea:focus{

    outline:none;

    box-shadow:

    0 0 20px gold;

}



.contact button{

    width:100%;

    padding:18px;

    background:#D4AF37;

    border:none;

    font-weight:bold;

    letter-spacing:6px;

    cursor:pointer;

    transition:.3s;

}



.contact button:hover{

    background:white;

    box-shadow:

    0 0 40px gold;

}



/* =================
MOBILE
================= */


@media(max-width:700px){


h1{

font-size:42px;

}


h2{

font-size:25px;

}


.cobra-link svg{

width:180px;

}


}