body {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  color: white;
}

.aot {
  background-image: url(./img/header.png);
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

header img {
  width: 100px;
}

.navLink {
  color: white;
  text-decoration: none;
  margin-left: 16px;
}

.navLink:hover {
  color: #b48a4e;
  cursor: pointer;
}

.navImg {
  height: 24px;
  width: auto;
  margin-left: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.navImg:hover {
  filter: drop-shadow(0px 0px 4px #ffffff);
  cursor: pointer;
}
h1 {
  font-family: "Viga-Regular";
  font-size: 84px;
  font-weight: 100;
  margin-block-start: 0;
  margin-block-end: 0;
  text-align: center;
}

.button {
  background-color: #b48a4e;
  color: white;
  text-decoration: none;
  padding: 16px;
}

.section-quicklinks {
  background-color: black;
  padding: 80px 80px;
  display: flex;
  justify-content: space-between;
  gap: 16px; /* remove when need width 30% */
}

.quicklink {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-size: 24px;
  color: #b48a4e;
  font-weight: 700;
  gap: 8px;
  /* width: 30%; */
  flex: 1; /* to be discussed with designer  */
}

.quicklink img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.buy-ticket-section {
  background-color: #272727;
  display: flex;
  align-items: center;
}

.buy-ticket-img-left {
  height: 360px;
}
.festival-info {
  padding: 40px;
  height: 240px;
  flex: 1;
}

h2 {
  margin-block-start: 0;
}

.seperator {
  background-color: white;
  width: 1px;
  height: 200px;
  margin-right: 10px;
}

.buy-ticket-container {
  width: 300px;
  display: flex;
  justify-content: center;
}

.playlist-section {
  padding: 80px 80px;
  color: #b48a4e;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.video-section {
  background-image: url("./img/bottom.png");
  height: 800px;
  background-size: cover;
  background-position: center;
}

footer {
  display: flex;
  background-color: black;
  padding: 80px 80px;
}

.half-width {
  width: 50%;
}

.footer-social-media-icon {
  width: 40px;
}

.footer-left {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  padding-right: 16px;
}

.footer-center {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

input {
  height: 45px;
  border-width: 0px;
  flex: 1;
}

input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  padding-left: 16px;
}

.button-footer {
  width: 200px;
  border-width: 0px;
}

.footer-form {
  display: flex;
}

@media (max-width: 950px) {
  .buy-ticket-section {
    flex-direction: column;
  }

  .buy-ticket-img-left {
    width: 100%;
    object-fit: cover;
  }

  .seperator {
    display: none;
  }

  .buy-ticket-container {
    padding-bottom: 40px;
  }

  .button {
    width: 45%;
    text-align: center;
  }

  .button-footer {
    width: 50%;
  }

  p {
    margin-block-start: 0;
    margin-block-end: 0;
  }
}

@media (max-width: 700px) {
  .hide-mobile {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }

  .full-width-mobile {
    width: 100%;
  }

  .footer-left {
    text-align: center;
    margin-bottom: 32px;
    padding-right: 0;
  }

  .festival-info {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .section-quicklinks {
    flex-direction: column;
    gap: 100px;
  }
}
