header,
header .row,
header .col-6 {
  height: 100vh;
}

header .row {
  padding: 1vh 7vw;
}

header .col-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

header {
  color: white;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.849), rgb(0, 0, 0)),
    url('/assets/img/backgrounds/headerBG.webp');
  background-position: center center;
  background-size: cover;
}

header span {
  color: var(--primaryColor);
  font-weight: bolder;
}

header h1,
header h2 {
  font-size: 7vh;
  font-weight: normal;
}

header p {
  font-size: 2vh;
  margin-top: 2vh;
  opacity: 0.7;
  text-shadow: black 1vh 1vh 1vh;
}

header .headerButtons {
  margin-top: 4vh;
  display: flex;
}

.headerButton {
  color: white;
  text-decoration: none;
  border: 0.1vh solid var(--primaryColor);
  padding: 1vh 1vw;
  border-radius: 1vh;
  margin-right: 1vw;
  transition-duration: 0.3s;
  display: block;
  font-size: 1.9vh;
  font-weight: normal;
  background-color: transparent;
  cursor: pointer;
}

.headerButton:hover {
  background-color: var(--primaryColor);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-color: var(--primaryColor);
}

header a:hover {
  rotate: -1.5deg;
  translate: 0vh -1vh;
}

header .imageReference {
  width: 55vw;
  filter: brightness(0.7);
  transform: translateX(35vw)translateY(3vh);
  z-index: 1;
  transition-duration: 0.3s;
}

header .imageReferenceTwo {
  width: 55vw;
  filter: brightness(0.7);
  transform: translateX(-10vw)translateY(-3vh);
  z-index: 0;
  transition-duration: 0.3s;
}

header .imageReference:hover {
  transform: translateX(35vw)translateY(1vh);
}

header .imageReferenceTwo:hover {
  transform: translateX(-10vw)translateY(-5vh);
}

header .headerButtons .buttonDecorator {
  width: 0;
  height: 0;
  pointer-events: none;
}

header .headerButtons .buttonDecorator img {
  filter: invert();
  opacity: 0.7;
  height: 50vh;
  transform: translateY(-16vh) translateX(-6vw);
  pointer-events: none;
}



#aboutUs {
  padding: 15vh 7vw 5vh 7vw;
  color: white;
  background: linear-gradient(195deg, rgb(30 2 2 / 97%), rgb(0, 0, 0)), url(/assets/img/backgrounds/featureBG.webp);
  background-position: center center;
  background-size: cover;
}

#aboutUs .row {
  margin-bottom: 10vh;
}

#aboutUs h2 {
  font-size: 2vh;
  text-align: center;
}


#aboutUs h1 {
  font-size: 5vh;
  font-weight: bold;
}

#aboutUs p {
  width: 50%;
  margin-bottom: 8vh;
  margin-top: 2vh;
  opacity: 0.7;
  font-size: 2vh;
}

#aboutUs .featureCard {
  padding: 5vh 2vw;
  border: 0.1vh solid var(--primaryColor);
  border-radius: 1vh 0vh 1vh 0vh;
  background: linear-gradient(35deg, rgba(78, 55, 55, 0.068), black);
  display: flex;
  justify-content: left;
  align-items: center;
  transition-duration: 0.3s;
  min-height: 35vh;
}

#aboutUs .featureCardContainer {
  width: 100%;

}



#aboutUs .iconContainer {
  width: fit-content;
  font-size: 3vh;
  background: linear-gradient(35deg, rgba(78, 55, 55, 0.068), rgba(255, 0, 0, 0.192));
  color: var(--primaryColor);
  padding: 0.5vh 1vh;
  border-radius: 1vh;
}

#aboutUs .iconContainer i {
  opacity: 0.3;
  transition-duration: 0.3s;
}

#aboutUs .featureCard h1 {
  font-size: 3vh;
  font-weight: bold;
}

#aboutUs .featureCard p {
  font-size: 2vh;
  width: 100%;
  margin: 0;
}


#aboutUs .featureCard:hover {
  box-shadow: rgba(255, 0, 0, 0.192) 0px 0px 1vh;
  transform: translateY(-2vh) rotate(-2deg);
}

#aboutUs .featureCard:hover .iconContainer i {
  opacity: 1;
}

#aboutUs .featureCardHeader {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 2vh;

}

#aboutUs .headerButton {
  margin-left: 1vh;
}


#aboutUs .socialIcons {
  padding-bottom: 5vh;
}

#aboutUs .socialIcons a {
  color: white;
  text-decoration: none;
  font-size: 3vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
  text-decoration: dashed;
  border: 0.1vh solid var(--primaryColor);
  background: linear-gradient(35deg, #4e373711, black);

  padding: 1vh 0vh;
  font-weight: bolder;
  border-radius: 1vh;
}

#aboutUs .socialIcons a:hover {
  transform: translateY(-1vh);
}



#aboutUs .socialIcons a svg {

  background: linear-gradient(35deg, rgba(78, 55, 55, 0.068), rgba(255, 0, 0, 0.192));
  border-radius: 100%;
  padding: 2vh;
  border: 0.1vh solid var(--primaryColor);
  box-shadow: rgba(255, 0, 0, 0.192) 0px 0px 1vh;
  transition-duration: 0.66s;
  width: 5vw;
  height: max-content;
}

#aboutUs .socialIcons span {
  margin-left: 1vw;
}

#aboutUs .socialIcons a:hover {
  color: var(--primaryColor);
}

#aboutUs .socialIcons a:hover svg {
  transform: rotateY(360deg) translateY(-0.5vh);
}

#events {
  padding: 20vh 7vw 1vh;
  background-color: black;
  color: white;
}

#events .buttonsCol {
  display: flex;
  justify-content: right;
  align-items: center;
}

#events .buttonsCol .headerButtons a {
  width: fit-content;
}


#events .eventCard {
  min-height: 10vh;
}

#events .eventCard .eventCardHeader {
  height: 30vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-left: 0.1vh solid var(--primaryColor);
  border-right: 0.1vh solid var(--primaryColor);
  border-top: 0.1vh solid var(--primaryColor);
  border-radius: 1vh 1vh 0vh 0vh;
  overflow: hidden;
}

#events .eventCard .eventCardHeader .row {
  height: 100%;
}

#events .eventCard .eventCardHeader .col-6 {
  display: flex;
  justify-content: center;
  align-items: end;
}

#events .eventCard .eventCardHeader p {
  background-color: black;
  font-size: 1.75vh;
  padding: 0.5vh 1vw;
  border-radius: 0vh 1vh 0vh 0vh;
  width: fit-content;
  margin-bottom: 0px;
  font-weight: bolder;
  color: rgba(255, 255, 255, 0.479);
}

#events .eventCard .eventCardHeader i {
  color: white;
  margin-right: 1vh;
}

#events .eventContainer {
  padding: 1vh 1vw;
}

#events .eventCardBody {
  border-left: 0.1vh solid var(--primaryColor);
  border-right: 0.1vh solid var(--primaryColor);
  border-bottom: 0.1vh solid var(--primaryColor);
  border-radius: 0vh 0vh 1vh 1vh;
  min-height: 50vh;
  padding: 3vh 2vw;
}

#events .eventCardBody .eventTitle {
  font-size: 2vh;
  font-weight: bold;
  min-height: 3vw;
}

#events .eventCardBody .eventDescription {
  font-size: 2vh;
  font-weight: normal;
  opacity: 0.7;
  min-height: 17vw;
}

#events .eventCardBody .headerButtons {
  margin: 4vh 0vh 1vh 0vh;
  text-align: center;
}

#events h1 {
  font-size: 5vh;
  font-weight: bold;
}

#events .col-8,
#events .col-4 {
  margin-bottom: 7vh;
}

#partners {
  color: white;
  text-align: center;
  width: 100vw;
}

#partnerCarousel {
  padding: 7vh 7vw 8vh 7vw;
  background-color: black;

}


#partners h1 {
  font-size: 3vh;
  padding-bottom: 8vh;
  text-align: left;
  font-weight: bold;
}

#partners p {
  font-size: 2vh;
  font-weight: bold;
  color: white;
  transition-duration: 0.3s;

}

#partners a {
  text-decoration: none;
  opacity: 0.7;
  transition-duration: 0.3s;
}

#partners a:hover {
  opacity: 1;
}





#partners img {
  height: 5vh;
  margin-bottom: 3vh;
  filter: grayscale();
  width: max-content;
  max-width: 20vh;
}

#partners a:hover img {
  filter: none;
}

@media (max-width: 1024px),
(max-aspect-ratio: 13/9) {

  header .col-6 {
    width: 100%;
    text-align: center;
  }

  header h1 {
    font-size: 5vh;
  }

  header p {
    font-size: 2vh;
  }


  header .headerButtons {
    display: inline-flex;
    width: 100%;
  }

  header .headerButton {
    width: 100%;
    margin: 0vh 2vw;
  }

  header .headerButtons .buttonDecorator img {
    filter: invert();
    opacity: 0.7;
    height: 40vh;
    transform: translateY(17vh) translateX(-40vw);
    rotate: 35deg;
  }

  #aboutUs .col-3 {
    width: 50%;
    margin-bottom: 4vh;
  }

  #aboutUs {
    text-align: center;
  }

  #aboutUs p {
    width: 100%;
  }

  #aboutUs .featureCardHeader {
    display: inline-block;
  }

  #aboutUs .iconContainer {
    display: inline-block;
    margin-bottom: 2vh;
    font-size: 5vh;
  }

  #aboutUs .featureCard {
    min-height: 40vh;
    height: max-content;
  }

  #aboutUs .featureCardContainer p {
    font-size: 1.5vh !important;
  }

  #aboutUs .col-3 {
    width: 100%;
  }

  #aboutUs .socialIcons a svg {
    margin-right: 5vw;
    height: 10vh !important;
    width: 10vh !important;

  }

  #events .col-8,
  #events .col-4 {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center !important;
  }

  #events .eventCardBody {
    padding: 3vh 10vw;
  }

  #partnerCarousel .col-3 {
    width: 50%;
    margin-bottom: 3vh;

  }

  #partnerCarousel .col-3 p {
    display: none;
  }
}