/* Global Variables */

:root {
  /* Colors */
  --light-bg-color: #f2f2f2;
  --orange-color: #ff6000;
  --button-color: #ff002a;
  --black-color: #000000;
  --gray-bg-color: #cfcfcf;
  --green-color: #88ba00;

  /* COntainer Width */
  --container-width: 1182px;
}

@font-face {
  font-family: "Myriad";
  src: url("./assets/fonts/MYRIADPRO-REGULAR.OTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Myriad-Bold";
  src: url("./assets/fonts/MYRIADPRO-BOLD.OTF") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Arboria";
  src: url("./assets/fonts/Arboria-Book.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Arboria-Bold";
  src: url("./assets/fonts/Arboria-Bold.otf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.625rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}
/* Custom Styles */

.hidden-label {
  visibility: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Myriad", sans-serif;
  font-size: 16px;
  color: var(--black-color);
  overflow-x: hidden !important;
  height: 100dvh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arboria-Bold", sans-serif;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Navbar Styles */

header {
  height: 550px;
  background-image: url("./assets/images/akademikmain.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 70%;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  background-color: var(--light-bg-color);
  padding: 2rem 0 0.5rem 0;
  position: relative;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 20rem;
}

.navbar .igsa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  border: 6px solid var(--light-bg-color);
  width: 225px;
  height: 225px;
  border-radius: 50%;
  object-fit: cover;
}

.contact .number {
  text-align: right;
}

.hero-title {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title-top {
  display: flex;
  flex-wrap: wrap;
  gap: 7.3rem;
  position: relative;
  margin-bottom: 1rem;
}

.green-title,
.orange-title {
  color: #fff;
  font-family: "Arboria-Bold", sans-serif;
  font-size: 2.5rem;
}

.green-title {
  margin-left: -6rem;
}

.orange-title {
  margin-left: -5.5rem;
}

.green-rectangle {
  position: absolute;
  width: 969px;
  height: 60px;
  left: -720px;
  background-color: var(--green-color);
  z-index: -1;
}

.orange-hero-rectangle {
  position: absolute;
  width: 1025px;
  height: 60px;
  right: -800px;
  background-color: var(--orange-color);
  z-index: -1;
}

.hero-title-bottom {
  justify-content: flex-end;
  margin-top: auto;
  color: #fff;
  font-family: "Arboria-Bold", sans-serif;
  font-size: 3rem;
  background-color: var(--black-color);
  width: 100vw;
  text-align: center;
}

/* Banner Section */
.banner {
  padding-top: 1.5rem;
  padding-left: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-title {
  font-family: "Myriad-Bold", sans-serif;
  font-size: 2.25rem;
}

.banner .banner-text {
  font-size: 1.5rem;
  font-family: "Arboria", sans-serif;
  margin-bottom: 1.5rem;
}

.banner .banner-bold-text {
  font-family: "Arboria-Bold", sans-serif;
  margin-bottom: 1.5rem;
}

.banner-description,
.banner-bottom-text {
  font-size: 1.35rem;
  line-height: 1.5;
  width: 70%;
  margin-bottom: 2rem;
}

.banner-description .bold-text {
  font-family: "Myriad-Bold", sans-serif;
}

.banner-bottom-text {
  margin-bottom: 1.5rem;
}

.banner-image {
  width: 100%;
  max-width: 1177px;
  height: 308px;
  object-fit: cover;
  margin: 0 auto;
  text-align: center;
  margin-right: 22rem;
  padding-right: 2rem;
  margin-bottom: 1.5rem;
}

/* Program Section */

.program {
  position: relative;
  margin-bottom: 2rem;
}

.program-container {
  padding-left: 4rem;
}

.program-title {
  color: #fff;
  margin-bottom: 2rem;
}

.orange-rectangle {
  position: absolute;
  top: 0;
  left: -50px;
  width: 1500px;
  height: 50px;
  background-color: var(--orange-color);
  z-index: -1;
}

.program-table-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  border-bottom: 1px solid var(--gray-bg-color);
  width: 80%;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.program-table-title {
  text-decoration: underline;
}

.program-table-date {
  font-family: "Arboria", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}

.program-table-right {
  margin-top: 0.3rem;
  position: relative;
}

.program-info {
  font-family: "Myriad", sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.program-table-left .badge-info {
  font-family: "Arboria", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  background-color: var(--orange-color);
  color: #fff;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}

/* Drawing Info */
.drawing-info {
  padding-left: 8rem;
  margin-bottom: 3rem;
}

.info-title-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.info-title {
  color: #fff;
}

.orange-title-rectangle {
  position: absolute;
  top: 0;
  left: -5px;
  width: 430px;
  height: 40px;
  background-color: var(--orange-color);
  z-index: -1;
}

.orange-short-rectangle {
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 280px;
  height: 38px;
  background-color: var(--orange-color);
  z-index: -1;
  transition: background-color 0.3s ease;
}
.text-wrapper {
  position: relative;
}
.img-wrapper:hover .text-wrapper .orange-short-rectangle {
  background-color: black;
}

.underlined-title {
  text-decoration: underline;
  margin-bottom: 2rem;
}

.animation-text-wrapper {
  display: flex;
  position: relative;
  gap: 2rem;
  background: transparent;
}

.animation-img {
  width: 100%;
  max-width: 324px;
  height: 380px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.img-container {
  position: relative;
  display: inline-block;
}

.img-container::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 25px;
  background: rgba(255, 98, 0, 0.568);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.img-container:hover::after {
  opacity: 1;
}

.info-title.short-text {
  margin-left: 3rem;
  cursor: pointer;
  padding-bottom: 0.25rem;
  transition: all 0.3s ease-in-out;
}

.tikla {
  position: absolute;
  width: 100%;
  max-width: 62px;
  height: 80px;
  bottom: -30px;
  left: 190px;
  transition: all 0.3s ease-in-out;
}

.tikla:hover {
  transform: scale(1.1);
}

.tikla-link {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.tikla-link:hover {
  background-color: var(--black-color);
}

.img-wrapper {
  transition: all 0.3s ease-in-out;
  background: transparent;
  overflow: hidden;
}

.animation-content {
  width: 50%;
}

.animation-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  word-spacing: 2;
}

.animation-content:last-child {
  margin-bottom: 0;
}

.bold-animation-text {
  font-family: "Myriad-Bold", sans-serif;
  font-size: 1.2rem;
}

.animation-list {
  padding-left: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-family: "Myriad", sans-serif;
  font-weight: 400;
  width: 90%;
}
/* FAQ Section */
.faq {
  padding-left: 8rem;
}

.faq-container {
  max-width: 1087px;
  background-color: #fff;
  border: 1px solid var(--gray-bg-color);
  margin-bottom: 2rem;
}

.faq-title {
  font-family: "Arboria-Bold", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  background-color: var(--orange-color);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.5rem;
  width: 92%;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  display: none; /* Hide the default checkbox */
}

.faq-question {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.125rem;
  color: #333;
  position: relative;
  user-select: none;
  font-family: "Myriad-Bold", sans-serif;
  padding-left: 5rem;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.plus-icon {
  position: absolute;
  left: 20px;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1;
  width: 37px;
  height: 37px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  margin-right: 3rem;
}

.faq-toggle:checked + .faq-question .plus-icon {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.faq-list {
  padding-left: 1rem;
}

.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 800px;
  padding: 20px 0 20px 20px;
  margin-bottom: 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--black-color);
  line-height: 1.6;
  font-family: "Myriad", sans-serif;
}
/* Attending Form Section */
input,
textarea,
select {
  font-family: inherit;
}

textarea {
  resize: none;
}

.attending-form {
  padding-left: 8rem;
  margin-bottom: 3rem;
}

form {
  margin-top: 2rem;
}

.attending-form-btn {
  display: none;
}

.input-group {
  margin-bottom: 25px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.125rem;
  color: var(--black-color);
  font-family: "Myriad", sans-serif;
}

.attending-form-input {
  width: 92%;
  padding: 1rem 1.125rem;
  font-size: 16px;
  color: var(--black-color);
  transition: all 0.3s ease;
  background-color: #dbdbdb;
  border: none;
}

.attending-form-input:focus {
  border-color: var(--button-color);
  outline: none;
}

textarea.attending-form-input {
  resize: vertical;
  min-height: 100px;
}

.attending-form-button {
  display: block;
  width: 30%;
  padding: 1rem 1.25rem;
  background-color: var(--button-color);
  color: #ffffff;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  text-decoration: none;
  margin-top: 1.25rem;
  font-family: "Arboria", sans-serif;
}

.attending-form-button:hover {
  background-color: var(--black-color);
}

.attending-form-button:active {
  transform: translateY(0);
  background-color: var(--orange-color);
}
input[type="radio"] {
  accent-color: #ff6000;
}

/* Payment Info Section */

.payment-info {
  padding-left: 8rem;
}

.section-title {
  background-color: var(--black-color);
  color: #fff;
  text-align: center;
  margin-right: 6rem;
  padding-right: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.payment-title {
  margin-top: 2rem;
  font-family: "Myriad-Bold", sans-serif;
  font-size: 1.25rem;
}

.payment-info-text {
  line-height: 1.5;
  font-size: 1.2rem;
  font-family: "Myriad", sans-serif;
  font-weight: 400;
  width: 90%;
}

.not {
  margin-top: 2rem;
  font-size: 1rem;
  display: inline-block;
}
/* Contact Section */
.contact {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 8rem;
}

.contact-orange-rectangle {
  position: absolute;
  top: 0;
  left: -90px;
  width: 750px;
  height: 50px;
  background-color: var(--orange-color);
  z-index: -1;
}

.contact-number {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 4rem;
  line-height: 1.5;
  font-size: 1.2rem;
  font-family: "Myriad", sans-serif;
  font-weight: 400;
  width: 90%;
  margin-bottom: 3rem;
}

h1 {
  font-size: 3rem;
}

/* Footer */
footer {
  background-color: var(--gray-bg-color);
  margin-bottom: 3rem;
  height: 200px;
  padding-left: 8rem;
}

.footer-logo {
  width: 100%;
  max-width: 163px;
  height: 163px;
  border: 4px solid #fff;
  border-radius: 50%;
  margin-top: 1rem;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-wrapper .footer-content h3 {
  font-size: 2.25rem;
}

.footer-wrapper .footer-content p {
  font-size: 1.5rem;
  font-family: "Arboria", sans-serif;
  font-weight: 400;
}

/* Form Security */
.honeypot-field {
  display: none;
}
.hidden-label {
  display: none;
}

/* Media Queries */
/* Tablet */

@media (max-width: 1080px) {
  .contact {
    padding-left: 0;
  }

  .navbar .container {
    gap: 10rem;
  }

  .orange-short-rectangle {
    bottom: 27.8%;
    width: 284px;
  }

  .faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 800px;
  }
}
/* Mobile */

@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  header {
    height: 365px;
  }

  .avi {
    width: 64px;
    height: 64px;
  }

  .hero-title-bottom {
    font-size: 1.5rem;
  }

  .program-table-left .badge-info {
    width: fit-content;
  }

  .green-title,
  .orange-title {
    font-size: 1rem;
    margin-left: 0;
  }

  .green-title {
    margin-left: -3rem;
    padding-top: 0.2rem;
  }

  .orange-title {
    margin-left: -6rem;
    padding-top: 0.2rem;
  }

  .green-rectangle {
    position: absolute;
    width: 400px;
    height: 30px;
    left: -200px;
    background-color: var(--green-color);
    z-index: -1;
  }

  .orange-hero-rectangle {
    position: absolute;
    width: 400px;
    height: 30px;
    right: -300px;
    background-color: var(--orange-color);
    z-index: -1;
  }

  .navbar .container {
    gap: unset;
  }

  .navbar .igsa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    border: 6px solid var(--light-bg-color);
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
  }

  .contact {
    padding-left: 9.5rem;
  }

  .contact h3 {
    font-size: 0.8rem;
    text-align: center;
  }

  .banner {
    padding-left: 0;
  }

  .orange-rectangle {
    left: 13px;
    width: 347px;
  }

  .banner-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .banner-text,
  .banner-bold-text {
    font-size: 1.25rem;
  }

  .banner-description,
  .banner-bottom-text {
    width: 100%;
    font-size: 1.125rem;
  }

  .banner-image {
    display: none;
  }

  .program-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .program-info {
    font-size: 1.25rem;
  }

  .program-table-left .badge-info {
    display: block;
    top: 82px;
    right: 179px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .drawing-info {
    padding-left: 0;
    padding-right: 1rem;
  }

  .info-title {
    white-space: wrap;
    text-wrap: balance;
  }

  .orange-title-rectangle {
    width: 343px;
    height: 78px;
  }

  .animation-text-wrapper {
    flex-direction: column;
  }

  .animation-content {
    width: 100%;
  }

  .orange-short-rectangle {
    bottom: 59.8%;
    width: 284px;
  }

  .tikla {
    bottom: -9%;
  }

  .faq {
    padding-left: 0;
  }

  .faq-title {
    width: 100%;
  }

  .faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 800px;
  }

  .attending-form {
    padding-left: 0;
  }

  .section-title {
    margin-right: 0;
    padding-right: 0;
    font-size: 1.5rem;
  }
  .attending-form-button {
    width: 100%;
  }

  .payment-info {
    padding-left: 0;
  }

  .contact.contact-bottom {
    padding-left: 0;
  }

  .contact-orange-rectangle {
    left: 15px;
    width: 340px;
  }

  .contact-number {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }

  .contact-number h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  footer {
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .footer-wrapper {
    flex-direction: column;
  }

  .footer-logo {
    max-width: 69px;
    height: 69px;
  }

  .footer-wrapper .footer-content h3 {
    font-size: 1.5rem;
  }

  .footer-wrapper .footer-content p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .orange-short-rectangle {
    bottom: 6.8%;
    width: 284px;
  }
}

@media screen and (max-width: 414px) {
  .orange-short-rectangle {
    bottom: 6.8%;
    width: 284px;
  }
}

@media screen and (max-width: 389px) {
  .orange-short-rectangle {
    bottom: 9.7%;
    width: 284px;
  }
}

@media screen and (max-width: 375px) {
  .hero-title-bottom {
    font-size: 1.5rem;
  }

  .green-title,
  .orange-title {
    font-size: 1rem;
    margin-left: 0;
  }

  .green-title {
    margin-left: -3rem;
    padding-top: 0.2rem;
  }

  .orange-title {
    margin-left: -6rem;
    padding-top: 0.2rem;
  }

  .green-rectangle {
    position: absolute;
    width: 400px;
    height: 30px;
    left: -200px;
    background-color: var(--green-color);
    z-index: -1;
  }

  .orange-hero-rectangle {
    position: absolute;
    width: 400px;
    height: 30px;
    right: -300px;
    background-color: var(--orange-color);
    z-index: -1;
  }
}

@media screen and (max-width: 360px) {
  .orange-short-rectangle {
    bottom: 8.8%;
    width: 284px;
  }
}

@media screen and (max-width: 320px) {
  .orange-short-rectangle {
    bottom: 11.8%;
    width: 284px;
  }
}
