
/* -------------------- */
/* -------------------- */
/* -------------------- */
/* -------------------- */

/* FONTS */
@font-face {
    font-family: heading-1;
    src: url(fonts/CinzelDecorative-Bold.ttf);
  }
  @font-face {
    font-family: heading-2;
    src: url(fonts/Kufam-Medium.ttf);
  }
  @font-face {
    font-family: body-regular;
    src: url(fonts/Kufam-Regular.ttf);
  }
  @font-face {
    font-family: body-italic;
    src: url(fonts/CrimsonPro-Italic-VariableFont_wght.ttf);
  }
  @font-face {
    font-family: body-bold;
    src: url(fonts/Kufam-Bold.ttf);
  }
  @font-face {
    font-family: decorative-regular;
    src: url(fonts/CinzelDecorative-Regular.ttf);
  }
  @font-face {
    font-family: decorative-bold;
    src: url(fonts/CinzelDecorative-Bold.ttf);
  }
  @font-face {
    font-family: decorative-black;
    src: url(fonts/CinzelDecorative-Black.ttf);
  }



header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1;
    transition: top 0.3s;
}

/* TOP NAVIGATION */

.topnav {
    overflow: hidden;
    background-color: var(--white);
  }
  
  .topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    color: var(--gray);
    font-family: body-regular;
  }
  
  .topnav a:hover {
    color: var(--black);
    background-color: var(--white);
    font-family: body-regular;
  }
  
  .topnav a.active {
    background-color: var(--black);
    color: var(--white);
    font-family: body-regular;
  }
  
  .topnav .icon {
    display: none;
  }
  

  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
      background-color: none;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .icon:hover:active {
        background-color: var(--black);
    }

    #myTopnav{
        background-color: var(--black);
    }
  
    .topnav a.active {
        display: none;
      }
  }

/* -------------------- */
/* -------------------- */
/* -------------------- */
/* -------------------- */

/* MOBILE NAVIGATION */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--black);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    text-align:center;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: var(--gray);
    display: block;
    transition: 0.3s;
  
  }
  
  .sidenav a:hover{
    color: var(--white);
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {font-size: 18px;}
  }