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

body {
  width: 100%;
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #111;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

/* LOGO */
.header {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.logo {
  width: clamp(120px, 25vw, 220px);
  height: auto;
}

/* MAIN CONTAINER */
.container {
  height: 100% !important;
  margin: auto;
  padding: 18px;
}

.sub-container {
  margin: auto;
  max-width: 900px;
  padding: 10px;
}

/* CLOCK ICON */
.icon-circle {
  width: clamp(65px, 15vw, 90px);
  height: clamp(65px, 15vw, 90px);
  border-radius: 50%;
  background: #f3f3f3;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: clamp(24px, 5vw, 40px);
  color: #555;
}

/* TITLES */
.title {
  font-size: clamp(1.6rem, 4.8vw, 4.2rem);
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: -2px;
}

.lh {
  line-height: 4.5rem;
}

/* GRADIENT TEXT */
.gradient {
  background: linear-gradient(
    270deg,
    #fa7b05 4.43%,
    #de2a5a 35.66%,
    #c021b5 65.46%,
    #4839db 99.33%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.subtext {
  margin: 25px auto;
  max-width: 650px;
  font-size: clamp(0.95rem, 2.3vw, 1.1rem);
  color: #525252;
  line-height: 1.6;
}

.note {
  margin-top: 4rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #333;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 28px;
  display: flex;
  gap: clamp(18px, 5vw, 30px);
  justify-content: center;
}

.social-icons a {
  width: clamp(34px, 8vw, 46px);
  height: clamp(34px, 8vw, 46px);
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(15px, 3.5vw, 20px);
  color: #333;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-4px);
}

/* SMALL DEVICES */
@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .container {
    margin-top: 25px;
  }

  .subtext {
    margin-top: 18px;
  }
}
