* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
body {
  color: #c1deca;
  background: url("../img/bg-image.jpg");
  background-size: cover;
  background-position: center;
  font-family: "Pompei_FS";
  position: relative;
  z-index: 1;
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #052714 30%, #052714bf 70%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.eng-text {
  font-family: "Pompei_FS";
}
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
  overflow: hidden;
}

.hero {
  width: min(1080px, 100%);
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.left {
  max-width: 350px;
}

.date {
  color: #241f21;
  background-color: #e0fce8;
  border-radius: 18px;
  padding: 20px 40px;
  max-width: 250px;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}
.date .yid {
  font-family: "Pompei_FS";
  font-size: 25px;
}

.location {
  margin-top: 16px;
  border: 2px solid #e0fce8;
  padding: 20px 24px;
  border-radius: 18px;
  max-width: 250px;
}
.location-title {
  font-size: 20px;
}
.location-address {
  font-size: 14px;
  font-weight: 500;
}

.yid-desc {
  line-height: 1.2;
  margin-block: 60px;
  font-size: 0.98rem;
  color: #3dc452;
  font-weight: 500;
  font-size: 18px;
}
.yid-desc span {
  color: #e0fce8;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.chip {
  border: 1px solid #3dc452;
  color: #d6d6d6;
  padding: 10px 24px;
  border-radius: 999px;
  background-color: #0f2012;
  font-size: 16px;
  line-height: 1.4;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.logo {
  width: 500px;
  max-width: 100%;
}
.hero-sub {
  direction: rtl;
}

.roles {
  font-weight: 700;
  margin-block: 60px;
  font-size: 23px;
  color: #bed9c6;
  letter-spacing: 1px;
  padding-block: 10px;
  border-block: 2px dotted #3dc452;
}
.register-btn {
  display: flex;
  align-items: center;
  max-width: 500px;
  width: 100%;
  justify-content: center;
  color: #241f21;
  font-size: 34px;
  font-weight: 500;
  background-color: #3dc452;
  border-radius: 50px;
  padding: 16px 24px;
  position: relative;
}
.cursor-icon {
  position: absolute;
  right: 30px;
  bottom: -20px;
  width: 80px;
}

@media (max-width: 991px) {
  .logo {
    width: 400px;
  }
  .roles {
    font-size: 18px;
  }
  .register-btn {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .hero__wrapper {
    flex-direction: column;
  }
  .left {
    max-width: 100%;
  }
  .right {
    align-items: start;
  }
  .register-btn {
    font-size: 24px;
    max-width: 100%;
    padding: 12px 20px;
  }
  .cursor-icon {
    right: 20px;
    bottom: -15px;
    width: 60px;
  }
  .yid-desc {
    margin-block: 40px;
  }
  .roles {
    margin-block: 40px;
  }
}

@media (max-width: 575px) {
  .roles {
    font-size: 15px;
  }
}
