/* ─── Base ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #d4d2bb;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  margin: 0;
}

/* ─── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: #d4d2bb;
  z-index: 100;
  line-height: 1;
  animation: bounce 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50%       { transform: translateY(8px); opacity: 1; }
}

.hero-logo-wrap {
  position: absolute;
  top: clamp(1rem, 4%, 3rem);
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-logo-wrap {
    width: 90vw;
  }
}

.hero-logo {
  width: 100%;
  height: auto;
}

/* ─── Body text ────────────────────────────── */
.body-text {
  background-color: #000;
}

.body-text p {
  font-size: clamp(1rem, 1.3vw, 1.5rem);
  line-height: 1.7;
  margin-bottom: 0.4rem;
  color: #d4d2bb;
}

.body-text .fw-bold {
  font-weight: 700;
}

/* ─── Stay Tuned ───────────────────────────── */
.stay-tuned {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  color: #d4d2bb;
  text-transform: uppercase;
}

/* ─── Credits ──────────────────────────────── */
.credits {
  background-color: #000;
  border-top: 1px solid rgba(212, 210, 187, 0.15);
}

.credits-img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

/* ─── Partners ────────────────────────────── */
.partners {
  background-color: #fff;
  padding: 2.5rem 0;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.partners-row:last-child {
  margin-bottom: 0;
}

.partners-row img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.partners-row--assoc img {
  height: 70px;
}

/* ─── Footer cura ──────────────────────────── */
.footer-cura {
  background-color: #000;
  border-top: 1px solid rgba(212, 210, 187, 0.15);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.footer-cura__privacy,
.footer-cura__privacy:visited {
  font-size: 0.75rem;
  color: #d4d2bb !important;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-cura__privacy:hover {
  text-decoration: underline;
}

.footer-cura__sep {
  font-size: 0.75rem;
  color: rgba(212, 210, 187, 0.4);
  flex-shrink: 0;
}

.footer-cura__label {
  font-size: 0.75rem;
  color: #d4d2bb;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-cura__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-cura__logos img {
  height: 24px;
  width: auto;
}

@media (max-width: 767px) {
  .footer-cura {
    flex-direction: column;
    gap: 0.5rem;
  }
}
