/* NaluScore — surf.css
   Styles pour les pages spots statiques (/surf/[slug])
   Dépend de ../style.css pour les variables et classes de base.
*/

/* ── Layout principal ──────────────────────────────────────────────────────── */

.spot-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* ── Tag au-dessus du H1 ───────────────────────────────────────────────────── */

.spot-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan, #00f5ff);
  border: 1px solid rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.06);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ── H1 ────────────────────────────────────────────────────────────────────── */

.spot-h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 680px;
}

/* ── Intro texte ───────────────────────────────────────────────────────────── */

.spot-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: #9ca3af;
  max-width: 580px;
}

/* ── Bouton CTA ────────────────────────────────────────────────────────────── */

.spot-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(0,245,255,0.1), rgba(0,255,136,0.1));
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: 8px;
}

.spot-cta:hover {
  background: linear-gradient(135deg, rgba(0,245,255,0.18), rgba(0,255,136,0.18));
  border-color: rgba(0, 245, 255, 0.55);
  transform: translateY(-2px);
}

.spot-cta-arrow {
  opacity: 0.6;
  font-size: 1.1rem;
  transition: transform 0.15s;
}

.spot-cta:hover .spot-cta-arrow {
  transform: translateX(3px);
}

/* ── Séparateur ────────────────────────────────────────────────────────────── */

.spot-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #00f5ff, #00ff88);
  border-radius: 2px;
  opacity: 0.4;
}

/* ── Footer minimal ────────────────────────────────────────────────────────── */

.spot-footer {
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  color: #4b5563;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.spot-footer a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}

.spot-footer a:hover {
  color: #9ca3af;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .spot-main {
    padding: 100px 20px 60px;
    gap: 22px;
  }

  .spot-cta {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}
