/* basic file rules - apply to all */
html{
    scroll-behavior: smooth;

}
*{
    margin: 0px;
    font-family: 'Figtree', sans-serif;
}
body{
    margin: auto;
    overflow-x: hidden;
    font-family: 'Figtree', sans-serif;
    background-color: black; 
}
a:link { 
    text-decoration: none;
    transition-duration: .2s;
}
a:visited {
    text-decoration: none; 
}

/* the wall */
.wall-container{
    display: flex;
    justify-content: center;
    background-color: black;
    width: 100%;
}
.wall{
    width: 86%;
}

/* can't click and drag images */
img {
  pointer-events: none;
    background-color: #101010;
}

/* Typography rules */
a{
    color: white;
}
p{
    font-size: 20px;
    letter-spacing: .3px;
    font-weight: 300; 
    color: white;
    line-height: 170%;
}
h1{
    font-size: 18px;
    font-weight: 300;
    opacity: .5;
    color: white;
}
h2{
    font-size: 18px;
    font-weight: 300;
    color: white;
}
h3{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .3px;
    color: white;
}
h4{
    font-size: 24px;
    line-height: 150%;
    font-weight: 200;
    color: white;
}
h5{
    font-size: 50px;
    font-weight: 600;
    color: white;
}
h6{
    font-size: 35px;
    font-weight: 600;
    color: white;
}


/* NAVIGATION CONTAINER MAIN */
.nav-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding-top: 25px;
    z-index: 10; 
}
.nav-item-1{
   transition: .3s ease-in-out; 
}
.nav-item-2{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
/* UNDERLINE HOVER EFFECT */
.under{
    display: inline-block;
    position: relative;
}
.under:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -7px;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.under:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
    
}
/* NAVIGATION ELEMENTS */
.nav-but{
    color: white;
    font-size: 18px;
    font-weight: 300;
    margin-left: 15px;
    transition-duration: .2s;
    opacity: .5;
}
.nav-but:hover{
    opacity: 1;
}

/* button */
.button{
    display: flex;
}
.button-container{
    display: flex;
    border: 1.5px solid rgba(100,100,100, .5);
    border-radius: 100px;
    padding: 7px 7px 7px 15px;
}
.button-copy{
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* hover button arrow container turns white */
.arrow-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    padding: 10px;
    border-radius: 100px;
    width: 14px;
    height: 14px;
    background-color: none;
    transition: .2s ease-in-out;
    border: 1.5px solid white;
}
.button-container:hover .arrow-container{
    background-color: white;
}

/* hover arrow points down or up depending on button type */
.arrow-up{
   transition: .2s ease-in-out; 
}
.button-container:hover .arrow-up{
    transform: rotate(-90deg);
}
.arrow-down{
   transition: .2s ease-in-out; 
}
.button-container:hover .arrow-down{
    transform: rotate(90deg);
}

/* actual arrow color change */
.trigger{
    transition: .2s ease-in-out;
    fill: white;
}
.button-container:hover .trigger{
    fill: black;
}

/* pill header */
.pill{
    display: flex;  
}
.pill-copy{
    border: 1.5px solid rgba(100,100,100,.5);
    border-radius: 10px;
    padding: 7px 15px 7px 15px;
    color: white;
}

/* FOOTER */
.footer-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 25px;
}
.footer-item-container{
    width: 49%;
    
}

/* left side items */
.footer-item-top{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 60px;
}
.footer-item-bottom{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

/* right side items - 2 vertical boxes */
.footer-item-special-top{
    display: flex;
    justify-content: flex-end;
    height: 60px;
}
.footer-item-special-bottom{
    display: flex;
    justify-content: flex-end;
    align-items: center; 
}

/* footer nav items */
.f-nav{
    color: white;
    margin-right: 15px;
    font-size: 18px;
    font-weight: 300;
    opacity: .5;
    transition: .2s ease-in-out;
    line-height: 150%;
}
.f-nav:nth-child(6){
    margin-right: 0px;
}
.f-nav-special{
    color: white;
    margin-right: 15px;
    font-size: 18px;
    opacity: .5;
}
.f-nav:hover{
    opacity: 1;
}

/* copyright text */
.copyright-container{
    color: white;
}
.copyright{
    font-size: 16px;
    font-weight: 300;
    text-align: right;
    line-height: 150%;
    opacity: .5;
}

/* universal spacers */
.spacer-test{
    background-color: #101010;
    height: 15vh;
}
.spacer-test2{
    height: 145vh;
}
.spacer-half{
    height: 12vh
}
.spacer-zero{
    height: 8vh;
}
.spacer-one{
    height: 15vh;
}
.spacer-two{
    height: 20vh;
}

/* universal cogs - margin spacers */
.cog{
    margin: 1%;
}
.cog2{
    margin: 2%;
}
.cog3{
    margin: 3%;
}
.cog4{
    margin: 4%;
}
.cog5{
    margin: 5%;
}

.cog-logo{
    margin: 6%;
}
/* special cogs that require media queries */
.cog-vert{
    margin: 2%;
}
.cog-spacer{
    height: 120px;
}
.cog-right{
    margin-bottom: 20px;
}
.cog-masthead{
    margin: 1%;
}





/* index test */
#reduce{
    
    animation: reduce .5s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes reduce {
   from {
       transform: scale(100%);
 }
 to {
     transform: scale(90%);
 }
}

#inflate{
    
    animation: inflate .4s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes inflate {
   from {
       transform: scale(80%);
 }
 to {
     transform: scale(100%);
 }
}

#slide-in{
    
    animation: slide-in .1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes slide-in {
   from {
       transform: scale(80%);
 }
 to {
     transform: scale(100%);
 }
}










/* footer media queries */
@media only screen and (max-width: 700px){
    
    .footer-container{
        display: flex;
        flex-direction: column;
        
        
    }
    
    .footer-item-container{
        width: 100%;
    }
    
    .footer-item-top{
        justify-content: center;
    }
    .footer-item-bottom{
        justify-content: center;
    }
    .footer-item-special-top{
        margin-top: 20px;
        justify-content: center;
    }
    .footer-item-special-bottom{
        justify-content: center;
        margin-top: 20px;
    }
    .copyright{
        text-align: center;
    }

    
    

    
}

/* the wall media queries */
@media only screen and (max-width: 1200px){
    
    .wall{
        width: 94%;
    }
    
}
@media only screen and (min-width: 1400px){
    .wall{
        width: 80%;
    }
}
@media only screen and (min-width: 1600px){
    .wall{
        width: 60%;
    }
}



