/* Home page styles */
.homepage-container {
  background: url('../media/imgs/Lion_Art_Homepage_Mobile.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.homepage-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row-reverse;
  /* margin-right: calc(4vh * (100vw / 100vh)); */
}

/* .logo-header {
  width: 70px;
  margin: 4vh 0.5rem;
} */
.homepage-header .header-text {
  text-align: center;
}
.homepage-header .header-text h1 {
  font-family: 'Rift-Bold', sans-serif;
  font-size: clamp(18px, calc(100vw * 160 / 2400), 160px);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 0.8;
  padding: 15px 0;
  border-top: 3px solid #ff235d;
  border-bottom: 3px solid #ff235d;
  margin-top: 5vh;
}

.homepage-header .header-text h1 span:first-child {
  font-size: clamp(20px, calc(100vw * 193 / 2400), 193px);
  text-align: center;
  background: linear-gradient(135deg, #e862fc 0%, #ad17f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.85;
}

.homepage-header .header-text h1 span:last-child {
  font-size: clamp(18px, calc(100vw * 142 / 2400), 142px);
  text-align: center;
  background: linear-gradient(135deg, #ff74ff 0%, #9e20ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.homepage-header .header-text p {
  font-family: 'Quasimoda-Medium', sans-serif;
  font-weight: medium;
  font-style: normal;
  font-size: clamp(15px, calc(100vw * 30 / 2400), 30px);
  margin-bottom: clamp(8px, calc(100vh * 60 / 800), 60px);

  line-height: 1;
}

/* Chapter list styles */
.chapter-list {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn.primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 45px);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
  cursor: pointer;
}

.btn.primary .btn-link {
  text-decoration: none;
  color: #fff;
  font-family: 'Rift-Regular', sans-serif;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
  background-color: #ff255b;
  padding: 0.5rem 1.5rem;
}

.btn.primary .btn-link strong {
  font-weight: 700;
}

.btn.primary .arrow {
  font-weight: bold;
  background-color: #fff;
  padding: 0.35rem 1rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0% 100%);
  transform: translateX(-10px);
  display: flex;
  flex-direction: column;
}
.btn.primary .arrow .arrow-icon {
  width: clamp(27px, 3.5vw, 61px);
  aspect-ratio: 1 / 1;
}

/* Footer homepage styles */
/* .footer-container {
  display: flex;
  justify-content: center;
  margin: 0 4vw;
  font-family: 'Quasimoda-Regular';
  line-height: 1;
}
.footer-container .desktop-footer {
  display: none;
}
.footer-container .mobile-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
}
.footer-container .mobile-footer .ref {
  font-size: clamp(8px, calc(100vw * 20 / 2400), 20px);
  text-align: left;
}
.footer-container .logo {
  width: 100px;
} */

/* mobile small */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .homepage-container {
    background-size: cover;
    background-position: center top;
  }
  .homepage-header .header-text p {
    margin-bottom: clamp(8px, calc(100vh * 60 / 500), 60px);
  }
}
/* Desktop */
@media screen and (min-width: 1200px) {
  .homepage-container {
    background: url('../media/imgs/Lion_Art_Homepage.png') no-repeat center top;
    background-size: cover;
    background-position: center top;
  }

  .homepage-header {
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-direction: column;
    /* margin-right: 11.5vw; */
    margin-right: 0;
  }
  .homepage-header .header-text h1 {
    padding: 30px 0;
    border-top: 3px solid #ff235d;
    border-bottom: 3px solid #ff235d;
    margin-bottom: 2rem;
  }
  .homepage-footer {
    /* margin: 0 11.5vw; */
    margin: 0;
  }
  .homepage-footer .mobile-footer {
    display: none;
  }
  .homepage-footer .desktop-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .btn.primary {
    clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
  }
  .btn.primary .btn-link {
    clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
    padding: 0.5rem 4.5rem;
  }
  .btn.primary .arrow {
    clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0% 100%);
    transform: translateX(-50px);
    padding: 0.28rem 2.5rem;
  }
  .btn.primary .arrow .arrow-icon {
    /* width: 61px;
    height: 61px; */
    aspect-ratio: 1 / 1;
  }
}
/* full HD wide */
@media (min-width: 1400px) {
  /* .logo-header {
    width: 190px;
    margin: 2.5rem 0;
  } */
}
