@font-face {
  font-family: "AesopRegular";
  src: url("../fonts/aesop-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SafiraMarch";
  src: url("../fonts/safira-march.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: Arial, sans-serif;
}

.page_content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  height: 100vh;
  position: relative;
  z-index: 1;
  color: #28282b;
  text-align: center;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comming-soon {
  font-family: "AesopRegular", sans-serif;
  font-size: clamp(40px, 8vw, 120px);
  letter-spacing: 0px;
  font-weight: 50;
  opacity: 0.85;
  margin-bottom: calc(80px + (100 - 80) * ((100vw - 320px) / (1920 - 320)));
}

.LIYAH-AURA-Logo {
  max-width: 90%;
  height: auto;
  opacity: 0.85;
  padding-bottom: 10px;
}

.comming-soon-title {
  font-family: "AesopRegular", sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 2px;
  color: #343434;
  font-weight: 300;
}

.comming-soon-content {
  font-family: "SafiraMarch", sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  letter-spacing: 3px;
  color: #36454f;
}

.explore-button {
  background-color: #f28c28;
  color: white;
  border: none;
  padding: 0;
  width: calc(80px + (120 - 80) * ((100vw - 320px) / (1920 - 320)));
  height: clamp(35px, 4.5vw, 50px);
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-button img {
  width: clamp(28px, 4.5vw, 40px);
  height: clamp(28px, 4.5vw, 40px);
  display: block;
}

.explore-button:hover {
  background-color: #d67a1f;
}

/* Tablet Devices (Portrait) */
@media screen and (max-width: 768px) {
  .content {
    padding: 12vh 8% 5vh 8%;
  }

  .comming-soon {
    margin-bottom: clamp(40px, 12vw, 100px);
  }

  .comming-soon-content {
    margin-top: clamp(25px, 6vw, 60px);
  }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
  .content {
    padding: 10vh 5% 5vh 5%;
  }

  .comming-soon {
    margin-bottom: clamp(30px, 10vw, 60px);
  }

  .comming-soon-title {
    letter-spacing: 1px;
  }

  .comming-soon-content {
    margin-top: clamp(20px, 5vw, 40px);
    letter-spacing: 2px;
  }

  .LIYAH-AURA-Logo {
    width: clamp(120px, 50vw, 200px);
  }
}

/* Large Screens */
@media screen and (min-width: 1920px) {
  .content {
    padding-top: 20vh;
  }

  .comming-soon {
    font-size: 140px;
  }

  .comming-soon-title {
    font-size: 48px;
  }

  .comming-soon-content {
    font-size: 24px;
  }

  .explore-button {
    width: 120px;
    height: 55px;
  }

  .explore-button img {
    width: 40px;
    height: 40px;
  }
}