:root {
  color-scheme: dark;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: #fdfdfb;
  overflow: hidden;
}

.bg-photo {
  position: fixed;
  inset: 0;
  background-image: url("assets/poblado-medellin.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 25, 0.55) 0%,
    rgba(10, 15, 25, 0.25) 45%,
    rgba(10, 15, 25, 0.65) 100%
  );
  z-index: -1;
}

.clock-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.eyebrow {
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.clock {
  font-family: "Sora", "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 14vw, 9rem);
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.date {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 300;
  text-transform: capitalize;
  opacity: 0.92;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.credit {
  position: fixed;
  bottom: 0.75rem;
  right: 1rem;
  font-size: 0.7rem;
  opacity: 0.6;
  z-index: 1;
}

.credit a {
  color: inherit;
}

.credit a:hover {
  opacity: 1;
}
