.arial-mt {
  font-family: "Arial MT", sans-serif;
  font-family: "Arial MT Narrow", sans-serif;
  font-family: "Arial Rounded MT", sans-serif;
  font-family: "Arial Rounded MT Bold", sans-serif;
  font-family: "ArialMT", sans-serif;
  font-family: "Arial MT Black", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

video,
img {
  display: block;

  max-width: 100%;
}

h1{
  font-family: "Arial Rounded MT Bold";
  font-size: 50px;
  font-weight: 500;
}

h2 {
  font-family: "Arial Rounded MT Bold", Arial;
  font-size: 35px;

  padding: 35px 0;

  text-align: center;
}

p {
  font-family: Helvetica;
  font-size: 20px;
  font-weight: bold;
}

#music img,
#history img {
  width: 60%;

  padding-top: 35px;

  margin: auto;
}

#music p,
#history p {
  padding: 25px 60px;
}

header {
  position: relative;

  height: 50vh;
  min-height: 500px;

  overflow: hidden;
}

.logo {
  position: absolute;
  top: 11%;
  left: 54%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.logo img {
  width: 250px;
  max-width: 80%;
}

footer {
  background-color: black;
  padding: 50px 70px 100px;
}

.hyperlinks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;

  padding-left: 50px;
}

.link a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

footer a,
footer p {
  color: #FEE901;
  text-decoration: none;

  font-family: Helvetica;
  font-size: 25px;
  font-weight: bold;
}

footer img {
  width: 10%;
  height: auto;
}

.music-container,
.aboutus-container {
  background-color: #F5F5F5;
}

.history-container,
.music-container,
.aboutus-container {
  padding-bottom: 70px;
}

/* START Menu */
.menu-container {
  background-color: black;
}

.top-nav {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.top-nav .menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 60%;
  background: #727272;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 999;
  margin: 0;
  padding: 6rem 3rem;
  opacity: 0;
  pointer-events: none;
}

.top-nav .menu li {
  margin: 10px;
}

.top-nav .menu li a {
  text-decoration: none;
  font-size: 1.8rem;
  color: #FEE901;
  transition: color 0.3s ease, transform 0.3s ease;
  font-family: "Arial Rounded MT Bold", sans-serif;
}

.top-nav .menu-icon {
  display: inline-block;
  cursor: pointer;
  padding: 28px 20px;
  z-index: 1000;
  position: relative;
}

.top-nav .menu-icon .navicon {
  background: #FEE901;
  display: block;
  height: 2px;
  position: relative;
  width: 1.625rem;
  transition: 0.2s ease-out;
}

.top-nav .menu-icon .navicon:before,
.top-nav .menu-icon .navicon:after {
  background-color: #FEE901;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.top-nav .menu-icon .navicon:before {
  top: 7px;
}

.top-nav .menu-icon .navicon:after {
  top: -7px;
}

.top-nav .menu-btn {
  display: none;
}

.top-nav .menu-btn:checked~.menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.top-nav .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

.top-nav .menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}

.top-nav .menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
  top: 0;
}

/* END MENU */


/* HERO AREA start */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: -1;
}

.info{
  position: relative;

  color: #FEE901;
  background-color: rgba(0, 0, 0, 0.484);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  height: 50vh;
}

.info a{
  font-family: "Arial Rounded MT Bold";
  color: #FEE901;
  text-decoration: none;

  padding: 10px 20px;

  border-radius: 50px;
  border: 2px solid black;
  background-color: black;

  margin-top: 25px;

  position: relative;
}

.info a:hover{
  color: black;

  border: 2px solid #FEE901;
  background-color: #FEE901;
}
/* HERO AREA end */


/* ABOUT US SECTION start */
.aboutus-container {
  text-align: center;
  padding: 40px 20px;
}

.about-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #ffeb00;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: 0.2s ease;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.dots {
  margin-top: 10px;
  text-align: center;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.dot.active {
  background-color: #ffeb00;
}

.aboutus-text {
  margin-top: 50px;
  padding: 0 10px;
}
/* ABOUT US SECTION end */



@media screen and (min-width: 600px) {

  h1{
      font-size: 80px;
  }

  header {
    height: 100vh;
  }

  .logo {
    top: 7%;
  }

  footer {
    padding: 25px 0px 50px;

    height: 150px;

    display: flex;
    justify-content: end;
    align-items: center;
  }

  .hyperlinks {
    padding-left: 0;
  }

  footer a,
  footer p {
    font-size: 20px;
    font-weight: bold;
  }

  footer img {
    width: 10%;
  }

  /* MENU start */
  .menu-container {
    height: 7%;
    align-content: center;
  }

  .menu li {
    padding-right: 50px;
  }

  .top-nav .menu {
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }

  .top-nav .menu li a {
    font-size: 1rem;
    transform: none;
  }

  .top-nav .menu-icon {
    display: none;
  }
  /* MENU end */


  /* HERO AREA start */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: -1;
}

.info{
  height: 100vh;
}

.info a{
  font-size: 20px;
}
/* HERO AREA end */


  /* MUSIC SECTION start */
  .music {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
  }

  #music img {
    max-width: 300px;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }

  .music-text {
    max-width: 700px;
    line-height: 1.6;
    padding: 0;
  }

  #music p {
    padding: 0;
  }

  .music:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  /* MUSIC SECTION end */

  /* HISTORY SECTION start */
  .history {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    padding: 40px 0;
  }

  .history-images {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .top-row {
    display: flex;
    gap: 25px;
    justify-content: center;
  }

  .bottom-row {
    display: flex;
    justify-content: center;
  }

  #history img {
    margin: 0;
  }

  .history-images img {
    max-width: 250px;
    width: 100%;
    height: auto;
  }

  .history-text {
    max-width: 450px;
    line-height: 1.6;
  }

  #history p {
    padding: 0;
  }
  /* HISTORY SECTION end */

  /* ABOUT US SECTION start */
  .aboutus-container {
    padding: 60px 0;
  }

  .about-carousel {
    max-width: 900px;
    margin: 0 auto;
  }

  .slide img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
  }

  .arrow {
    width: 50px;
    height: 50px;
    top: 33%;
    font-size: 32px;

  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .dots {
    margin-top: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  .aboutus-text {
    max-width: 750px;
    margin: 40px auto 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
  /* ABOUT US SECTION end */
}