/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #05070d;
  color: white;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/MonserratSIA.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  z-index: 1;

  animation: bgZoom 18s ease-in-out infinite;
  transform-origin: center;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
}

/* CONTENT (TOP RIGHT LAYOUT) */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: flex-start;


  text-align: right;
}

/* TITLE */
.hero-title {
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.35em;

  letter-spacing: 0.04em;
  line-height: 1;
}

/* UNIFIED TYPOGRAPHY SCALE */
.monserrat,
.sia {
  font-family: "Oswald", sans-serif;
  font-weight: 700;

  font-size: clamp(3.2rem, 6vw, 9rem);

  letter-spacing: 0.04em;
  line-height: 1;
}


.sia {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 6vw, 9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;

  opacity: 0.85;
}

.si {
  text-transform: uppercase;
}
.ae {
  text-transform: lowercase;
  display: inline-block;

  /* keeps it visually aligned with caps */
  transform: translateY(0.05em);
}

.sia {
  display: inline-block;
  transform: scale(1.02);
}

/* HIERARCHY VIA OPACITY ONLY */
.monserrat {
  opacity: 0.45;
}

.sia {
  opacity: 0.85;
}

/* FOOTER */
.site-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 24px;

  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.6);
  z-index: 4;

  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* BACKGROUND ANIMATION */
@keyframes bgZoom {
  0%   { transform: scale(1.06); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.06); }
}

/* TABLET */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 7vh;
    padding-right: 5vw;
  }

  .hero-title {
    gap: 0.25em;
    letter-spacing: 0.02em;
  }
}

/* MOBILE */
@media (max-width: 420px) {
  .hero-content {
    padding-top: 6vh;
    padding-right: 4vw;
  }

  .hero-title {
    flex-direction: column;
    align-items: flex-end;
    letter-spacing: 0.02em;
  }
}