@import url('https://fonts.googleapis.com/css2?family=BioRhyme+Expanded:wght@200;300;400;700;800&family=BioRhyme:wght@200..800&display=swap');

*{
  box-sizing: border-box;
}
li{
  all: unset;
}
a{
  all: unset;
  cursor: pointer;
}

body {
  margin: 0 auto;
}

:root{
  --text: #0e2429;
  --main-color: #36C4B6;
  --main-color-2: #EA4681;
  --secondary-color: #106B5B;
  --secondary-color-2: #6D1A56;
  --secondary-color-3: #E1F56B;
  --tertiary-color: #EEFEAC;
  --tertiary-color-2: #F9FFE0;
  --background-color: #FFE5F2;
  --bakground-color-2: #E9FFFD;

}
/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(-40%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}


/* Nav Bar */


nav {
  margin-top: 3em;
  height: 100px;
  width: 100%;
  background-color: var(--tertiary-color);
  position: relative;
  z-index: 20;
}

nav > .nav-header {
  display: inline;
}

nav > .nav-btn {
  display: none;
}
#nav-logo{
  display: block;
  margin: 0 auto;
  text-align: center;
  z-index: 100;

}

#nav-logo img{
  width: 375px;
  max-width: 380px ;
  margin-top: -2.8em;
  text-align: center;
  z-index: 100;
  animation: .3s fadeInUp ease-in-out normal;
}
nav > .nav-links {
  padding: 13px 40px;
  justify-content: space-between;
  display: block;
  font-size: 18px;
  z-index: -2;
  margin-top: -170px;
}
nav li:nth-child(1),
nav li:nth-child(2){
    float: left;
}
nav li:nth-child(3),
nav li:nth-child(4){
    float: right;
}

nav > .nav-links > ul > li{
  font-family: BioRhyme, monospace, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2em;
  text-decoration: none;
  color:var(--secondary-color);
}
nav > .nav-links > ul > li{
  padding: 0 50px;
  
}

nav > .nav-links > ul > li > a:hover {
  color: var(--main-color-2);
}

nav > #nav-check {
  display: none;
}

#about-page nav .nav-links ul li:nth-child(1) a,
#activities-page nav .nav-links ul li:nth-child(2) a,
#vendors-page nav .nav-links ul li:nth-child(4) a,
#tickets-page nav .nav-links ul li:nth-child(3) a{
  color: var(--main-color);
}
@media (max-width:1300px) {
  nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    padding: 1.2em;
    bottom: 0;
  }
  nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  nav > .nav-btn > label:hover, nav  #nav-check:checked ~ .nav-btn > label {
    background-color: var(--secondary-color-3);
  }
  nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 3px solid var(--secondary-color);
  }

  nav{
    padding: 8em 0;
    margin-top: 0;
    
  }
  #nav-logo img{
    margin-top: -6.5em;
    text-align: center;
  }
  .nav-links {
    
    width: 100%;
    background-color: var(--tertiary-color);
    height: 0px;
    text-align: center;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 60px;
    left: 0px;
  }
  .nav-links ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 9em;
    padding-left: 0;
    text-align: center;

  }
  
  nav > .nav-links > a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  nav > .nav-links > ul > li{
    padding-bottom: 2em;

  }
  nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y:hidden;
  }
}
/* Nav Bar End */  


main{
  margin: 0 auto;
  
}



h1{
  font-family: BioRhyme Expanded, monospace, sans-serif;
  color: var(--main-color-2);
  text-align: center;
  letter-spacing: -2.2%;
  font-size: 2.4em;
  font-weight: 400;
  text-transform: uppercase;
  background-color: var(--background-color);
  margin: 1.1em auto;
  line-height: 120%;
  padding: 1em .6em;
  font-feature-settings: "swsh" on;
  
}
h2{
  font-family: BioRhyme, monospace, sans-serif;
  color: var(--text);
  letter-spacing: -2.2%;
  font-weight: normal;
  font-size: 2.3em;
  text-align: center;
  padding-top: 1.1em ;
  text-transform: uppercase;
  -moz-font-feature-settings: "swsh" 1;
  -webkit-font-feature-settings: "swsh" 1;
  font-feature-settings: "swsh" 1;
}
h3{
  font-family: BioRhyme, monospace, sans-serif;
  color: var(--text);
  letter-spacing: -2.2%;
  font-weight: 900;
  font-size: 1.9em;
  -moz-font-feature-settings: "swsh" 1;
  -webkit-font-feature-settings: "swsh" 1;
  font-feature-settings: "swsh" 1;

}
@media screen and (max-width: 1022px){
  h1{
    font-size: 1.8em;
    
  }
  h2{
    font-size: 1.6em;

  }
}
