html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #000000;
  background-color: #d7ff23;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* reset */
h1,
p {
  margin: 0px;
}
img {
  width: 100%;
}

/* ── Fullscreen hero ── */
.fullscreen-hero {
  width: 100vw;
  height: 100dvh;

  /* mobile default */
  background-image: url("../img/biennial-2560.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  /* overlay content */
  display: flex;
  align-items: center;
  justify-content: center;

  /*animation*/
  animation: fadeInImage 1.5s ease-in-out forwards;
}

/* ── Overlay content ── */
.hero-overlay {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
}
.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.hero-logo {
  width: clamp(200px, 30vw, 560px);
  height: auto;
  margin-right: 2rem;
}

.text-xl {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.text-base {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
}

.hero-overlay p {
  margin: 0;
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
}
/* tablets & laptops */
@media (min-width: 768px) {
  /* .fullscreen-hero {
    background-image: url("../img/biennial-2560.webp");
  } */
  .hero-overlay {
    padding: 2rem;
  }
}

/* large desktops */
@media (min-width: 1441px) {
  .hero-overlay {
    padding: 3rem;
  }
  .hero-logo {
    width: clamp(400px, 32vw, 640px);
  }
  .hero-overlay p {
    font-size: clamp(1.25rem, 2vw, 2rem);
  }
}
/* The Animations */
@keyframes fadeInImage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
