/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #0B0821;
    color: white;
    text-align: center;
  }
  
  
  
  /*NAVIGATION*/

  /*CS Fire hover*/
  .img-overlay {
    position: relative;
    display: inline-block;   /* shrink-wrap to image size */
  }
  
  .img-overlay img {
    display: block;
    position: relative;
    z-index: 1;              /* sit above the pseudo-element */
  }
  
  .img-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('../media/fire.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;    /* clicks still go through */
    z-index: 0;              /* behind the img */
    scale: 1.8;
  }
  
  .img-overlay:hover::before {
    opacity: 1;
  }


  nav.navbar{
    box-shadow: 0 20px 80px 0 rgba(255, 49, 49, 0.562);
  }
  
  
  a.nav-item{
    color:white;
    font-size:1.1rem;
    margin:0 10px;
    font-weight: bold;
  }
  
  div a.nav-item.active{
    
    color: rgba(255, 49, 49, 0.562) !important;
    text-shadow: 0 0 5px red;
  }
  a.nav-item:hover {
    color: red;
    text-shadow: 0 0 10px red;
  }
  

  .navbar .nav-link {
    display: inline-flex;
    align-items: center;
  }

  .nav-icon {
    width: 35px;
    height: auto;
    margin-left: 8px;
    opacity: 0;                 /* still takes up space */
    transition: opacity .2s;
    pointer-events: none;
  }

  @media (max-width: 991px) {
    .nav-icon {
      width: 35px;
      height: auto;
      margin-left: 8px;
      opacity: 1;                 /* still takes up space */
      pointer-events: none;
    }
  }
  

  
  .navbar .nav-link:hover .nav-icon {
    opacity: 1;
  }



  /* SOCIAL ICONS */

div.socials a img {
  width: 95px;
  margin: 10px 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}


div.socials a img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px red);
}

