:root {
  --primary-color: #403c31;
  --secondary-color: #ffffff;
  --primary-hover: #6d685c;
  --bg-color: #fef3e9;
  --font-display: "Abhaya Libre", serif;
  --font-brand: "Crescent Slim Demo", sans-serif;
}

@keyframes shown1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}

@keyframes shown2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes mobileMenuShown {
  0% {
    right: -360px;
  }
  100% {
    right: 0px;
  }
}

@font-face {
  font-family: "Crescent Slim Demo";
  src: url("../assets/fonts/CrescentSlimDemo.otf") format("opentype");
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-color);
}

/* GENERIC */

.btn {
  padding: 0.8rem 2.5rem;
  font-size: 2rem;
  display: block;
  border-radius: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  max-width: max-content;
  cursor: pointer;
  border: 0;
}

.btn.btn-1 {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn.btn-1:hover {
  filter: brightness(0.8);
}

.btn.btn-2 {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn.btn-2:hover {
  background-color: var(--primary-hover);
}

.title {
  font-size: 6rem;
  font-family: var(--font-display);
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.subtitle {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* LOADER */
#loading-screen {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-image: url(../assets/img/hero-bg.png);
  background-size: cover;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--secondary-color);
}

.loader .loading {
  font-size: 1.6rem;
  text-align: center;
  animation: shown2 1s linear infinite alternate-reverse;
}

.loader .conf {
  text-align: center;
}

.loader .conf h2 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 12rem;
}
.loader .conf p {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: -3rem;
  opacity: 0.8;
}

#content {
  display: none;
}

/* HEADER */

.header {
  height: 70px;
  width: 100%;
  background-color: var(--primary-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

.header .brand {
  font-family: var(--font-brand);
  color: var(--secondary-color);
  font-size: 3.2rem;
}

.header .nav {
  font-size: 2rem;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
}

.header .nav ul {
  display: flex;
  gap: 2.4rem;
}

.header .nav ul li {
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.header .nav ul li:hover {
  border-color: var(--secondary-color);
}

.header .contact {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.header .contact i {
  font-size: 2.8rem;
  color: var(--secondary-color);
}

.header .mobile-menu-btn {
  font-size: 3rem;
  color: var(--secondary-color);
  display: none;
}

/* MOBILE-MENU */
.mobile-area {
  position: fixed;
  display: flex;
  inset: 0;
  background: #00000065;
  backdrop-filter: blur(5px);
  z-index: 9999;
}

.mobile-area .mobile-scape {
  flex: 1;
}

.mobile-area .mobile-menu {
  width: 360px;
  background-color: var(--primary-color);
  box-shadow: -4px 1px 11px 0px #00000000;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3.2rem 2.4rem;
  align-items: center;
  position: relative;
  animation: mobileMenuShown 0.5s;
}

.mobile-area .mobile-menu .conf {
  text-align: center;
  color: var(--secondary-color);
}

.mobile-area .mobile-menu .conf h2 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 9rem;
}
.mobile-area .mobile-menu .conf p {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: -2.5rem;
  opacity: 0.8;
}

.mobile-area .mobile-menu nav {
  flex: 1;
  width: 100%;
}

.mobile-area .mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  font-size: 2rem;
  justify-content: center;
}

.mobile-area .mobile-menu nav ul li a:hover {
  border-color: var(--secondary-color);
}

.mobile-area .mobile-menu nav ul li a {
  display: block;
  border-bottom: 2px solid transparent;
  color: var(--secondary-color);
  padding: 0.5rem 2rem;
  max-width: max-content;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

.mobile-area .mobile-menu .mobile-menu-contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-area .mobile-menu .mobile-menu-contact .instagram {
  font-size: 2.8rem;
  color: var(--bg-color);
}

.mobile-area .mobile-menu .close {
  position: absolute;
  top: 2.4rem;
  right: 2rem;
  font-size: 1.6rem;
  padding: 0.5rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-hover);
  border-radius: 5px;
  color: var(--secondary-color);
}

.hide {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.mobile-html-overflow-hide {
  overflow: hidden;
}

/* HERO */

.hero {
  height: 800px;
  background-image: url(../assets/img/hero-bg.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .conf {
  margin-top: 200px;
  color: var(--secondary-color);
  margin-bottom: 6.4rem;
}

.hero .conf em {
  font-size: 3.6rem;
  text-transform: uppercase;
}

.hero .conf h1 {
  font-size: 19.6rem;
  line-height: 100%;
  font-family: var(--font-brand);
  font-weight: 400;
}

.hero .conf em.date {
  font-size: 2.8rem;
  display: block;
  text-transform: uppercase;
  margin-top: -20px;
}

.hero .count-down {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  margin-bottom: 5.2rem;
}

.hero .count-down .number {
  height: 8rem;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background-color: var(--primary-color);
  box-shadow: 5px 0px 4px #0000004f;
}

.hero .count-down .number span {
  font-size: 4.8rem;
  font-family: var(--font-brand);
  color: var(--secondary-color);
  margin-bottom: -1rem;
}

.hero .count-down .element {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.hero .count-down .label {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.hero .verses {
  max-width: 580px;
}

.hero .verses p {
  font-size: 1.4rem;
  color: var(--secondary-color);
}

.hero .conf-final {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin-bottom: 2rem;
  background-color: var(--primary-color);
  padding: 1.6rem;
  border-radius: 1rem;
  margin-top: -2.5rem;
  color: var(--secondary-color);
}

.hero .conf-final h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero .conf-final p {
  font-size: 1.4rem;
}

/* ABOUT */
.container.about-event {
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
}

.about-event .about-section {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.about-event p {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 4rem;
}

.about-event .about-texts {
  max-width: 693px;
  flex: 1;
}

.about-event .image {
  width: 45rem;
  height: 52rem;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 5px 5px 5px #57575773;
}

.about-event img {
  width: 100%;
  height: 100%;
}

.btn-none {
  display: none;
}

/* TSHIRT */

.container.tshirt {
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
}

.tshirt-container {
  display: flex;
  justify-content: space-between;
}

.tshirt-grid {
  display: flex;
  gap: 2.2rem;
}

.tshirt-view {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.tshirt .tshirt-area {
  width: 10rem;
  height: 10.5rem;
  background-color: var(--secondary-color);
  border-radius: 0.8rem;
  box-shadow: 0px 1px 5px #57575773;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tshirt .tshirt-view img {
  width: 16rem;
  height: auto;
}

.tshirt .tshirt-area.active {
  background-color: var(--primary-color);
}

.tshirt-model {
  width: 48em;
  height: 36rem;
  background-color: var(--secondary-color);
  box-shadow: 0px 1px 5px #57575773;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tshirt .tshirt-model img {
  width: 40rem;
  height: auto;
}

.tshirt-text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.tshirt-text h3 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

.tshirt-text .text-area {
  width: 42rem;
  height: 5.8rem;
  background-color: var(--primary-color);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 4.8rem;
  color: var(--secondary-color);
  padding-left: 1rem;
  padding-right: 1rem;
}

.tshirt-text .text-infor {
  font-size: 2.8rem;
  color: var(--primary-color);
}

.tshirt-text .price {
  font-size: 9.6rem;
  font-family: var(--font-brand);
  color: var(--primary-color);
  margin-left: -0.5rem;
}

/* JUV */

.juv {
  background-image: url(../assets/img/bg-juv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--primary-color);
}

.juv .container {
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
}

.juv .title {
  color: var(--secondary-color);
}

.juv-text {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  color: var(--secondary-color);
  max-width: 56rem;
  flex: 1;
}

.juv-text p {
  font-size: 1.8rem;
  font-weight: 300;
}

.juv h3 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.juv-container {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

.image-grid {
  width: max-content;
  height: max-content;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-grid .image-area {
  width: 60rem;
  height: auto;
  visibility: hidden;
  opacity: 0;
}

.image-grid .image-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.image-grid .image-item.item-1 {
  opacity: 0;
}

.juv-image-animation-1 {
  animation: shown1 4s ease-in-out 0s infinite alternate-reverse;
}
.juv-image-animation-2 {
  animation: shown2 4s ease-in-out 0s infinite alternate-reverse;
}

.juv .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.juv .right p {
  margin-top: 1rem;
  font-size: 2rem;
  color: var(--secondary-color);
  text-align: center;
  font-weight: 500;
}

.juv .badge {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.juv .badge div {
  width: 9rem;
  height: 3rem;
  min-width: 8rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.juv .badge p {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

/* ADDRESS */

.address.container {
  display: flex;
  justify-content: space-between;
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
  gap: 4rem;
}

.address .title {
  margin-bottom: 2rem;
}

.address .left {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  flex: 1;
}

.address .text-infor p {
  font-size: 1.8rem;
}

.address .right {
  min-width: 50rem;
  width: 100%;
  height: 46rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0px 1px 5px #57575773;
  flex: 1;
}

.address .right iframe {
  width: 100%;
  height: 100%;
}

/* FORM */

.form.container {
  display: flex;
  justify-content: space-between;
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
  gap: 2rem;
}

.form .right {
  max-width: 360px;
}

.form p {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.form .conf {
  text-transform: uppercase;
  color: var(--primary-color);
  margin-top: 4rem;
}

.form .conf.mobile {
  display: none;
}

.form .conf em {
  font-size: 1.2rem;
}

.form .conf h3 {
  font-family: var(--font-brand);
  font-size: 3.2rem;
}

.form .left {
  max-width: 600px;
  width: 100%;
}

.form .left form {
  width: inherit;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form .left .input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form .left .input-group label {
  font-size: 1.4rem;
  font-weight: 600;
}

.form .left .input-group input {
  height: 4rem;
  border: 0;
  border-radius: 0.6rem;
  color: var(--primary-color);
  padding: 0 1.6rem;
  font-size: 1.6rem;
  outline-color: var(--primary-color);
  border: 1px solid #ddd;
}

.form .left .input-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.form .left .input-group-grid small {
  font-weight: 400;
}

.form .left .input-group-radio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form .left .input-group-radio > label {
  font-size: 1.4rem;
  font-weight: 600;
}

.form .left .input-group-radio div {
  display: flex;
  gap: 1.6rem;
}

.form .left .input-group-radio .radio-label {
  display: flex;
  padding: 0 1.6rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.6rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.form .left .input-group-radio input {
  display: none;
}

.form .left .input-group-radio input[type="radio"]:checked + .radio-label {
  background-color: var(--primary-hover);
  color: var(--secondary-color);
}

/* FOOTER */
.footer-bg {
  background-color: var(--primary-color);
}

.footer.container {
  padding-top: 7.2rem;
  padding-bottom: 3rem;
}

.footer .main {
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.footer .left .footer-title {
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
}

.footer .left .social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}

.footer .left .social .social-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer .left .social a.social-item span:hover {
  text-decoration: underline;
}

.footer .left .social .social-item i {
  font-size: 1.8rem;
}

.footer .left .message {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}

.footer .left .invite {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.footer .center {
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.footer .center p {
  font-size: 10rem;
  font-family: var(--font-brand);

  font-weight: 400;
}

.footer .center em:first-child {
  font-size: 1.6rem;
}

.footer .center em:last-child {
  font-size: 1.4rem;
  margin-top: -1.6rem;
}

.footer .right ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer .right ul li {
  font-size: 1.6rem;
  text-align: right;
}

.footer .right ul li:hover {
  filter: brightness(0.8);
}

.footer .signature {
  display: flex;
  justify-content: space-between;
  color: var(--primary-hover);
  font-size: 1.2rem;
}

.footer .signature a {
  font-weight: 600;
}

.footer .signature a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.thanks {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  height: 100vh;
  position: relative;
}

.thanks .left {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.thanks .left .content {
  padding-left: 8rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.thanks .left .content h1 {
  color: var(--primary-color);
  font-size: 5.5rem;
}

.thanks .left .content .paragraph {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 90%;
}

.thanks .left .content p {
  font-size: 1.8rem;
  color: var(--primary-hover);
}

.thanks .right {
  background-image: url(../assets/img/event-cover-01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.thanks footer {
  position: absolute;
  bottom: 2rem;
  padding: 1rem;
  width: 100%;
  background: var(--secondary-color);
  text-align: center;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.thanks .left .content .conf {
  color: var(--primary-color);
  text-align: center;
  display: none;
}

.thanks .left .content .conf h2 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 12rem;
}

.thanks .left .content .conf p {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: -3rem;
}
