/* ========================================
   HOMEPAGE STYLES
   ========================================
   Minimal landing page with background image
   and centered "radii" text
   ======================================== */

.homepage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.homepage__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.homepage__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.homepage__title {
  font-size: var(--text-7xl);
  font-weight: 300;
  color: var(--color-background);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .homepage__title {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 480px) {
  .homepage__title {
    font-size: var(--text-5xl);
  }
}
