@font-face {
  font-family: "integral";
  src: url("fonts/IntegralCF-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "integral";
  src: url("fonts/IntegralCF-ExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "integral";
  src: url("fonts/IntegralCF-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "integral";
  src: url("fonts/IntegralCF-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "integral", Times, serif;
}

header {
  background: #f8d2b9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16%;
  position: relative;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #54247c;
  font-weight: 700;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffaa02;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section {
  background: #ff6a00;
}
.hero-section img {
  width: 100%;
  height: auto;
}

.form-section {
  background: #ff6a00;
  position: relative;
  padding: 7% 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.form-section .top-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -63%);
}
.form-section .form_header {
  font-size: 48px;
  color: #54247c;
  text-align: center;
  text-transform: uppercase;
}

.form-section .form_sub_header {
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin-top: 25px;
  text-transform: uppercase;
}

.form-section form {
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

.form-section form .form-input-wrapper {
  display: flex;
  align-items: center;

  gap: 20px;
}

.form-input-wrapper div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.form-input-wrapper p {
  position: absolute;
  bottom: -15px;
  left: 0;
  color: #fff;
  font-size: 9px;
}

.form-input-wrapper label {
  font-size: 14px;
  text-transform: uppercase;
  color: #54247c;
  font-weight: 400;
}

.form-input-wrapper input {
  width: 100%;
  padding: 13px;
  border: none;
  outline: none;
  background: #f8f8f8;
  color: #222222;
  font-weight: 400;
  font-size: 13px;
  /* font-family: "Times", Courier, monospace; */
  font-family: Arial, Helvetica, sans-serif;
}

.form-section form input[type="submit"] {
  padding: 10px 20px;
  background: #54247c;
  color: #ff6a00;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;

  box-sizing: border-box;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 50px;
  display: block;
  align-self: center;
}

.form-section .checkbox-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.past-event-section {
  background: #27043c;
  padding: 5% 10%;
  display: flex;
  flex-direction: column;

  align-items: center;
  gap: 40px;
}

.past-event-section hr {
  width: 80%;
  height: 2px;
  background: #f3cfb1;
  margin-top: 30px;
  margin-bottom: 50px;
}

.past-event-section .past_event_header_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
}

.past_event_header_wrapper h1 {
  font-size: 36px;
  color: #f8d2b9;
  text-align: center;
  text-transform: uppercase;
}

.past_event_header_wrapper p {
  font-size: 11px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.past_event_header_wrapper a {
  background: #fb8600;
}

.past_event_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
  align-items: center;
  text-align: center;
  color: #fff;
}

.past_event_content h3 {
  color: #ff6a00;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.past_event_content span {
  font-size: 13px;
}

.past_event_content p {
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  text-align: center;
  width: 90%;
  margin-top: 30px;
}

.past_event_content iframe {
  width: 800px;
  height: 450px;
  margin-top: 40px;
}

.more_btn {
  padding: 10px 20px;
  background: #ff6a00;
  color: #27043c;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;

  box-sizing: border-box;
  width: 100%;
  /* max-width: 200px; */
  margin: 0 auto;
  margin-top: 50px;
  display: block;
  align-self: center;
  letter-spacing: 1px;
  width: fit-content;
}

footer {
  background: #f8d2b9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16%;
  position: relative;
  height: 80px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.credit-text {
  color: #54247c;
  font-weight: 400;
}

.credit-text span {
  font-weight: 700;
}
.footer-links hr {
  width: 1px;
  outline: none;
  border: none;
  background: #54247c;
  height: 20px;
}

.footer-links a {
  color: #54247c;
  font-size: 14px;
  text-decoration: none;
}

.images-wrapper {
  margin-top: 50px;
}

.images-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  header {
    padding: 20px 5%;
  }

  header img {
    width: 75px;
  }

  header .social-icons {
    display: none;
  }

  .top-image {
    width: 60%;
  }
  .form-section {
    padding: 12% 0px;
  }
  .form-section .form_header {
    font-size: 20px;
  }

  .form-section .form_sub_header {
    font-size: 10px;

    margin-top: 15px;

    width: 70%;
  }

  .form-section form {
    width: 80%;
  }

  .form-section form .form-input-wrapper {
    align-items: initial;

    flex-direction: column;
  }

  .form-section .checkbox-label {
    font-size: 9px;
  }

  .form-section form input[type="submit"] {
    margin-top: 20px;
    font-size: 12px;
  }

  .past_event_header_wrapper h1 {
    font-size: 22px;
  }
  .past-event-section {
    padding: 10% 0;
    gap: 25px;
  }

  .past_event_content {
    width: 80%;
  }
  .past_event_content h3 {
    font-size: 24px;
  }

  .past_event_content p {
    width: 100%;
    margin-top: 10px;
  }
  .past_event_content iframe {
    width: 100%;
    height: initial;
    margin-top: 30px;
  }

  .images-wrapper {
    display: flex;
    justify-content: center;
  }

  .images-wrapper img {
    width: 90%;
  }

  footer {
    padding: 20px 5%;
    font-size: 14px;
    flex-direction: column;
    gap: 16px;
    height: fit-content;

    justify-content: center;
  }

  .footer-links a {
    font-size: 12px;
  }

  .more_btn {
    font-size: 12px;
  }
}
