:root{
  font-size:16px;
  font-family: 'Montserrat';
  --text-primary: #b6b6b6;
  --text-secondary: #ececec;
  --bg-primary: rgba(32,32,32,0.8);
  --bg-secondary: rgba(200,200,200,0.3);
  --transition-speed: 600ms;
}

body {
  color: black;
  background-color: black;
  background-image: url(images/background.jpg);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
}

body::-webkit-scrollbar {
  width: 0.25rem;
}
body::-webkit-scrollbar-track {
  background: #1e1e24;
}
body::-webkit-scrollbar-thumb {
  background: #2fd3e9;
}


/* NAVBAR DROPDOWN */
.dropdown {
  list-style: none;
  width: 100%;
  position: relative;
  left: -2.5em;
  
  display: none;
}

.dropdown a:hover {
  background: var(--bg-primary);
  color: var(--text-secondary);
}

.dropdown a {
  justify-content: center;
  display: flex;
  align-items: center;
  height: 2rem;
  background: var(--bg-secondary);
  color: rgb(15, 15, 15);
  text-decoration: none;
  font-weight: bold;
  transition: 0.1s;
}

ul li:hover .dropdown {
  display: block;
}
/* NAVBAR DROPDOWN */

/* NAVBAR2 DROPDOWN */



.nav2 {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  background: linear-gradient(black, var(--bg-primary));
  color: var(--text-primary);
  top: 0px;
  left: 0px;
  min-height: 5rem;
  width: 100vw;
  z-index: 2;
}



.dropdown2 {
  list-style: none;
  width: 100%;
  position: relative;
  left: -3em;
  top: 0.8em;
  display: none;
}

.dropdown2 a:hover {
  color: var(--bg-secondary);
}




.nav2 a {
  text-decoration: none;
  color: var(--text-primary);
  transition: 0.3s;
}

.dropdown2 a {
  justify-content: left;
  display: flex;
  align-items: center;
  margin-left: 7vw;
  height: 2rem;
  color: rgb(15, 15, 15);
  text-decoration: none;
  transition: 0.1s;
}

ul li:hover .dropdown2 {
  display: block;
}
/* NAVBAR2 DROPDOWN */


.article {
  border-style: solid;
  border-color: var(--bg-primary);
  color: var(--text-primary);
  text-align: left;
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  padding: 1rem;
  margin: 1rem;
  border-radius: 0.5rem;
}

.article a {
  color: var(--text-secondary);
  text-decoration: none;
}

.article a:hover {
  color: var(--bg-secondary);
}

.article h1 {
  text-align: center;
}


/* CONTACT FORM */
.contact-form {
  margin: 3em 0 3em 0;
  text-align: center;
  width: 100%;
  font-size:16px;
  font-family: 'Montserrat';
}
.contact-form input {
  width: 40rem;
  max-width: 80%;
  margin-bottom: 0.5em;
  background-color: rgb(230,230,230);
  font-size:16px;
  font-family: 'Montserrat';
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
}
.contact-form textarea {
  resize: none;
  padding: 0.5rem;
  height: 20rem;
  width: 40rem;
  max-width: 80%;
  margin-bottom: 0.5em;
  background-color: rgb(230,230,230);
  font-size:16px;
  font-family: 'Montserrat';
  border-radius: 0.5rem;
  border: none;
}
.contact-form button {
  width: 10rem;
  height: 2rem;
  margin: 0;
  font-weight: bold;
  font-size:16px;
  font-family: 'Montserrat';
  border-radius: 0.5rem;
  border-color: black;
  color: var(--bg-primary);
  background-color: var(--text-primary);
}
.contact-form button:hover {
  color: var(black);
  background-color: var(--text-secondary);
}
/* PAGE CONTENT */



.footer {
  font-size: 12px;
  border-style: solid;
  border-color: var(--bg-primary);
  color: var(--text-primary);
  text-align: left;
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  padding: 1rem;
  margin: 1rem;
  border-radius: 0.5rem;
  column-count: 2;
  column-gap: 2em;
}

.nav-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding:0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.home-link {
  text-decoration: none;
  transition: var(--transition-speed);
}

.home-link:hover {
  color: var(--text-secondary);
}

.nav-intro h2 {
  letter-spacing: 4px;
}

.nav-intro h3 {
  color: var(--bg-primary);
  pointer-events: none;
}

.nav-divider {
  border-style: hidden;
  width: 90%;
  height: 1px;
  margin: 0.5rem 0 0.5rem 0;
  background-color: var(--bg-primary);
}

.nav-item {
  width: 100%;
}

.nav-item:last-child {
  margin-top: auto;
}

.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  height: 2.5rem;
  color: rgb(15, 15, 15);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition-speed);
}

.nav-link:hover {
  background: var(--bg-primary);
  color: var(--text-secondary);
}

.social {
  display: flex;
  justify-content: center;
  padding-bottom: 1em;
}

.social img {
  height: 2.5em;
  opacity: 0.7;
  transition: var(--transition-speed);
}

.social img:hover {
  color: var(--bg-primary);
  filter: invert();
  transition: var(--transition-speed);
}


@media only screen and (min-width: 954px) {

  .main {
    margin-left: 20rem;
  }
  
  .navbar {
    padding-top: 2rem;
    border-radius: 0.5rem;
    position: fixed;
    background: linear-gradient(rgba(32,32,32,0.3), rgba(32,32,32,0.1));
    border-style: solid;
    border-color: var(--bg-primary);
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    bottom: 0;
    width: 19rem;
    margin: 1rem;
    display: block;
  }

  .nav2 {
    display: none;
  }

  .home-link {
  color: black;
  }

  .logo img {
    max-width: 8rem;
  }

  .nav-intro {
    margin-top: 1rem;
    text-align: center;
    line-height: 50%;
  }

}


@media only screen and (max-width: 954px) {
  
  .main {
    margin-top: 6rem;
    font-size: 14px;
  }

  .footer {
    font-size: 11px;
    column-count: 1;
  }

  .navbar {
    display: none;
  }

  .logo2 img {
    max-width: 4rem;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
  }

  .nav-intro {
    margin-top: 0;
  }

  .nav-intro h2 {
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: 0;
    transition: 0.3s;
  }

  .nav-intro h2:hover {
    color: var(--bg-secondary);
  }

  .nav-intro h3 {
    display: none;
  }


  .nav2 {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    background: linear-gradient(black, var(--bg-primary));
    color: var(--text-primary);
    top: 0px;
    left: 0px;
    min-height: 5rem;
    width: 100vw;
    z-index: 2;
  }

  .nav2 a {
    text-decoration: none;
    color: var(--text-primary);
    transition: 0.3s;
  }

  .nav2 a:hover {
    color: var(--bg-secondary);
  }
    

  .menu{
    width: 95vw;
    max-height: 0;
    overflow: hidden;
  }
  
  label {
    display: fixed;
    margin-left: auto;
  }
  
  label img {
    filter: invert();
    height: 1.8em;
    margin-right: 2.5em;
    z-index: 4;
    opacity: 0.6;
    transition: 0.3s;
  }

  /* label img:hover {
    filter: invert(0);
  } */

  #toggler {
    display: none;
  }

  #toggler:checked~.menu {
    max-height: 100%;
  }

  .social2 {
    display: flex;
    justify-content: center;
    padding-bottom: 0.5em;
    margin-right: 10vw;
  }
  
  .social2 img {
    height: 2em;
    opacity: 0.6;
    filter: invert();
    transition: 0.3s;
  }
  
  .social2 img:hover {
    color: var(--bg-primary);
    filter: invert(0);
  }
  
  .list {
    display: flex;
    list-style: none;
    gap: 1.5em;
    flex-direction: column;
    align-items: left;
    margin-left: 10vw;
  }  

}

.video {
  max-height: 400px; 
  max-width: 100%; 
  aspect-ratio: 16 / 9;
}


@media only screen and (max-width: 600px) {

  .nav-intro h2 {
    font-size: 0.8rem;
  }
}