/* You can add global styles to this file, and also import other style files */
@import 'assets/fonts/fonts.css';

html{
  scroll-behavior: smooth;
  scroll-padding: 10vh 0 0 0;
}
:root{
  --accent: #33a9e2;
}

body{
  width: 100%;
  background-color:black;
  scroll-padding-top: 50px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
  font-family: "AvenirNextBold";
  color: white;
  text-transform: uppercase;
}

.navbar{
  background-color: black;
  width: 100%;
}

p{
  font-family: Helvetica, Arial, sans-serif;
}

section, footer{
    width: 100%;
}


.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  /* border-bottom: 1px solid transparent; */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active{
  color: var(--accent);
  /* border-bottom: 1px solid var(--accent); */
  transition: all 0.2s ease-in-out;
}



.navbar-toggler:hover{
  outline: var(--accent) solid;
}


div.bar{
  width: 45%;
  height: 15px;
  margin: 2.5rem 0;
  margin-left: auto;
}


div.bar.full-bar{
  width: 100%;
}

.bg-black{
  background-color: black;
  color: white;
}

.bg-white{
  background-color: white;
  color: black;
}


.home{
  display: flex;
  flex-flow: column wrap;
  align-items: flex-end;
  justify-content: space-around;
  padding-right: 2rem;
  background-image: url('assets/images/home.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #060606;
  min-height: 90vh;

}

#main-logo{
  width: 40%;
  margin-bottom: auto;
}

#home-spacer{
    height: 30vh;
}
  
  
#lead{
  text-transform: capitalize;
  text-align: center;
  color: white;
  font-size: 3rem;
  font-family: "AvenirNextBold", sans-serif;
  justify-self: flex-start;
  text-shadow: black 2px 2px 4px;

}

  
#lead>.passion{
  color: var(--accent);
  font-family: MinionPro;
  font-size: 1em;
  text-shadow: black 2px 2px 4px;
}

.card-parent{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
} 

.service-card{
  flex: 1 1 175px;
  margin: 0.75rem;
  padding: 0.5rem;
  border-radius: 0;
  background-color: black;
  color: white;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center; 
}

.collab-logo{
  width: 100%;
  padding: 1rem;
}

#email-address{
  text-transform: lowercase;
  font-size: 2rem;
}
  

#linkedin{
  font-size: 1.35rem;
  font-family: "AvenirNextBold", sans-serif;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

#linkedin>a,#email-address>a{
  color: white;
}

#linkedin>a:hover,#email-address>a:hover{
  color: var(--accent);
}

#linkedin>a:visited,#email-address>a:visited{
  color: white;
}



#linkedin-logo {
  fill: white;
  width: 24px;
  height: 24px;
}

#footer-logo{
  width: clamp(180px,75%,275px);
  padding: 1rem;
}


@media screen and (max-width: 1024px) {
  .home{
    justify-content: flex-end;
    align-items: center;
    background-image: url('assets/images/home-mobile.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-right: 0;
  }

  #main-logo{
    width: 100%;
    margin-bottom: 0;
  }
  
  #home-spacer{
    margin-top: auto;
    height: 0;
  }



}

@media screen and (max-width: 768px) {


  #lead{
    font-size: 2.5rem;
  }

  #lead>.passion{
    font-size: 1.1em;
  }

  #email-address{
    font-size: 1.5rem;
  }

  #linkedin-logo {
    fill: white;
    width: 24px;
    height: 24px;
  }
  
  #linkedin{
    font-size: 1rem;
    white-space: nowrap;
  }

  div.bar{
    height: 10px;
  }
}

@media screen and (max-width: 576px) {


  #lead{
    font-size: 1.4rem;
  }
  

  #email-address{
    font-size: 1.25rem;
  }

  
  #linkedin-logo {
    fill: white;
    width: 16px;
    height: 16px;
  }
  
  #linkedin{
    font-size: 0.7rem;
    white-space: nowrap;
  }
}
