/* Padelcube Landing — communauté · blanc + orange */

:root {
  --orange: #ed572c;
  --orange-soft: rgba(237, 87, 44, 0.12);
  --orange-glow: rgba(237, 87, 44, 0.35);
  --bg: #ffffff;
  --bg-soft: #f7f5f3;
  --bg-warm: #fff4ef;
  --ink: #141414;
  --muted: #6b6b6b;
  --line: rgba(20, 20, 20, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* ——— Assist WhatsApp ——— */
a.assist-btn,
a.assist-btn:visited {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 16px));
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  z-index: 10050;
  display: flex;
  margin: 0;
  padding: 0;
  border: none;
  color: #fff;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.assist-btn__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px 0 18px;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease);
}

a.assist-btn:hover .assist-btn__inner {
  transform: translateY(-3px) scale(1.03);
}

.assist-btn__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

@media (max-width: 520px) {
  .assist-btn__inner {
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .assist-btn__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px);
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav__logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.nav.is-scrolled .nav__logo {
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav__links a:not(.nav__cta) {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
}

.nav.is-scrolled .nav__links a:not(.nav__cta) {
  color: var(--muted);
}

.nav__links a:not(.nav__cta):hover {
  color: var(--orange);
}

.nav__cta {
  padding: 10px 20px;
  background: var(--orange);
  border-radius: 999px;
  color: #fff !important;
  font-weight: 600;
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 32px) clamp(20px, 6vw, 72px);
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.32) 0%, rgba(8, 10, 16, 0.6) 45%, rgba(8, 10, 16, 0.78) 100%),
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(237, 87, 44, 0.22), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  transition: transform 0.4s var(--ease);
}

.hero__brand {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-weight: 400;
}

.hero__lead {
  margin: 0 0 28px;
  max-width: 38rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

/* ——— Stores ——— */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-row--center {
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  min-width: 168px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.store-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-btn small {
  font-size: 0.7rem;
  opacity: 0.75;
}

.store-btn strong {
  font-size: 1rem;
  font-weight: 700;
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-btn--dark {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.store-btn--outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

/* fonds clairs : la variante « outline » passe en blanc sur bordure fine */
.section--cta .store-btn--outline,
.section--clubs .store-btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.store-btn--lg {
  padding: 14px 22px;
}

/* ——— Sections ——— */
.section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.section__header {
  max-width: 640px;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.section h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-weight: 400;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 14px 26px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  box-shadow: 0 10px 28px var(--orange-glow);
}

.btn-orange:hover {
  transform: translateY(-2px);
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__lead--center {
  margin-inline: auto;
}

/* ——— Feed : cartes de publication ——— */
.section--community {
  background: var(--bg);
  overflow: hidden;
}

.feed-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.feed-layout__copy {
  margin-bottom: 0;
}

.cards-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px) 0;
}

.cards-fan {
  position: relative;
  width: min(520px, 100%);
}

.cards-glow {
  position: absolute;
  inset: 12% -6% 18% -6%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  filter: blur(10px);
  opacity: 0.5;
  z-index: 0;
}

/* carte principale */
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(20, 20, 20, 0.16);
}

.post-card--main {
  position: relative;
  z-index: 3;
  width: min(330px, 68%);
  margin-inline: auto;
}

.post-card__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 13px 10px;
}

.post-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.post-card__ident {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.post-card__name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.1;
}

.post-card__badge {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.post-card__time {
  font-size: 0.66rem;
  color: var(--muted);
}

.post-card__dots {
  margin-left: auto;
  display: flex;
  gap: 3px;
  align-self: flex-start;
  padding-top: 4px;
}

.post-card__dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
}

.post-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #d8d5d2;
}

.post-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* bandeau score : reprise du scoreboard flou de l'app */
.score-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 11px 10px;
  color: #fff;
  background: rgba(25, 25, 25, 0.32);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
}

.score-band__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.score-band__tag {
  flex: 1;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.score-band__logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.score-band__labels {
  display: flex;
  align-items: center;
}

.score-band__labels > span:first-child {
  flex: 1;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.score-band__setlabel {
  width: 26px;
  margin-left: 4px;
  text-align: center;
  font-size: 0.52rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
}

.score-row {
  display: flex;
  align-items: center;
  margin-top: 2px;
  min-height: 26px;
}

.score-row__team {
  flex: 1;
  padding-right: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.score-cell {
  width: 26px;
  height: 26px;
  margin-left: 4px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
}

.score-cell--win {
  background: #ff6200;
}

.post-card__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px 12px;
}

.post-card__react {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
}

.post-card__react svg {
  width: 17px;
  height: 17px;
  color: var(--ink);
}

.post-card__react--liked svg {
  color: var(--orange);
}

.post-card__likes {
  margin-left: auto;
  font-size: 0.62rem;
  color: var(--muted);
  text-align: right;
}

/* cartes flottantes */
.float-card,
.float-pill {
  position: absolute;
  z-index: 4;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.16);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-card--comment {
  display: flex;
  align-items: center;
  gap: 9px;
  width: clamp(150px, 27vw, 200px);
  padding: 9px 11px;
  border-radius: 12px;
}

.float-card__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.float-card__avatar--a {
  background: linear-gradient(135deg, #ffb37a, var(--orange));
}

.float-card__avatar--b {
  background: linear-gradient(135deg, #7ec8ff, #1d7ef0);
}

.float-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.float-card__line {
  width: 62%;
  height: 5px;
  border-radius: 3px;
  background: var(--bg-soft);
}

.float-card__text {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink);
}

.float-card--comment-a {
  top: -4%;
  right: -6%;
  animation-delay: 0.2s;
}

.float-card--comment-b {
  top: 14%;
  right: -12%;
  animation-delay: 1.1s;
}

.float-card--photo {
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
}

.float-card--photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.float-card__icons {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
}

.float-card__icons svg {
  width: 15px;
  height: 15px;
  color: var(--ink);
}

.float-card__icons svg.is-liked {
  color: var(--orange);
}

.float-card--photo-left {
  top: 22%;
  left: -8%;
  width: clamp(104px, 20vw, 148px);
  animation-delay: 0.7s;
}

.float-card--photo-right {
  bottom: -6%;
  right: -4%;
  width: clamp(110px, 21vw, 156px);
  animation-delay: 1.5s;
}

.float-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.float-pill svg {
  width: 15px;
  height: 15px;
}

.float-pill--follow {
  bottom: 16%;
  left: -10%;
  background: var(--bg-warm);
  color: var(--ink);
  animation-delay: 1.9s;
}

.float-pill--score {
  top: 9%;
  left: -4%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(237, 87, 44, 0.32);
  animation-delay: 1s;
}

@media (prefers-reduced-motion: reduce) {
  .float-card,
  .float-pill {
    animation: none;
  }
}

@media (max-width: 860px) {
  .feed-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feed-layout__copy .section__lead {
    margin-inline: auto;
  }
  .cards-fan {
    width: min(420px, 92%);
  }
  .post-card--main {
    width: min(300px, 74%);
    text-align: left;
  }
}

@media (max-width: 560px) {
  .float-card--photo-left {
    display: none;
  }
  .float-card--comment {
    width: clamp(132px, 44vw, 168px);
  }
  .float-card--comment-a {
    right: -4%;
  }
  .float-card--comment-b {
    right: -8%;
  }
  .float-pill--follow {
    left: -4%;
  }
}

/* ——— Stories (éventail façon stories app) ——— */
.section--stories {
  background: var(--bg-soft);
  overflow: hidden;
}

.stories-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(20px, 5vw, 44px) 0 10px;
}

.stories-fan {
  position: relative;
  width: min(680px, 100%);
  height: clamp(400px, 52vw, 560px);
}

.story-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(180px, 26vw, 268px);
  aspect-ratio: 9 / 16;
  border-radius: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  background: #d8d5d2;
  box-shadow: 0 30px 60px rgba(20, 20, 20, 0.22);
  transition: transform 0.9s var(--ease);
}

.story-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__bars {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  gap: 4px;
}

.story-card__bars span {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
}

.story-card__bars span.is-done {
  background: #fff;
}

.story-card__bars span.is-active {
  background: linear-gradient(90deg, #fff 55%, rgba(255, 255, 255, 0.4) 55%);
}

.story-card__foot {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-card__input {
  flex: 1;
  height: clamp(30px, 3.4vw, 38px);
  border-radius: 999px;
  border: 1.6px solid rgba(255, 255, 255, 0.9);
}

.story-card__heart {
  color: #fff;
  width: clamp(22px, 2.6vw, 28px);
  flex-shrink: 0;
}

.story-card__heart svg {
  width: 100%;
  height: auto;
}

.story-card--center {
  transform: translate(-50%, -50%) scale(1.08);
  z-index: 3;
}

.story-card--left {
  transform: translate(-108%, -46%) rotate(-9deg);
  z-index: 2;
}

.story-card--right {
  transform: translate(8%, -52%) rotate(8deg);
  z-index: 1;
}

.stories-stage.is-visible .story-card--left {
  transform: translate(-104%, -48%) rotate(-7deg);
}

.stories-stage.is-visible .story-card--right {
  transform: translate(4%, -54%) rotate(6deg);
}

/* décorations flottantes */
.story-deco {
  position: absolute;
  z-index: 4;
  animation: decoFloat 5s ease-in-out infinite;
}

@keyframes decoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.story-deco--reactions {
  top: 6%;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.16);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1;
  animation-delay: 0.2s;
}

.story-deco--reactions em {
  font-style: normal;
}

.story-deco--heart {
  bottom: 24%;
  left: 0;
  width: clamp(52px, 8vw, 88px);
  filter: drop-shadow(0 14px 26px rgba(232, 38, 95, 0.35));
  animation-delay: 0.9s;
}

.story-deco--heart svg {
  width: 100%;
  height: auto;
}

.story-deco--badge {
  top: 26%;
  right: 2%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #46d16b, #22b04c);
  color: #fff;
  box-shadow: 0 14px 30px rgba(34, 176, 76, 0.35);
  animation-delay: 1.4s;
}

.story-deco__star {
  width: clamp(18px, 2.4vw, 26px);
  height: auto;
}

.story-deco__chevron {
  width: clamp(14px, 1.8vw, 20px);
  height: auto;
  opacity: 0.9;
}

.story-deco--avatar {
  bottom: 20%;
  right: 3%;
  width: clamp(56px, 9vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ff9a3d, var(--orange) 45%, #e8265f);
  animation-delay: 0.6s;
}

.story-deco--avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
}

@media (prefers-reduced-motion: reduce) {
  .story-deco {
    animation: none;
  }
}

@media (max-width: 640px) {
  .stories-fan {
    height: clamp(330px, 84vw, 420px);
  }
  .story-card {
    width: min(150px, 38vw);
  }
  .story-card--left {
    transform: translate(-112%, -46%) rotate(-9deg);
  }
  .story-card--right {
    transform: translate(12%, -52%) rotate(8deg);
  }
  .story-deco--reactions {
    top: 2%;
    left: 0;
  }
  .story-deco--heart {
    bottom: 20%;
  }
}

/* ——— Bandeau joueurs ——— */
.section--players {
  padding-bottom: clamp(48px, 8vw, 88px);
  background: var(--bg);
  overflow: hidden;
}

.players {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

.players__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 12vw, 160px);
  z-index: 2;
  pointer-events: none;
}

.players__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.players__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.players__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: playersScroll 42s linear infinite;
}

.players__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.player-avatar {
  width: clamp(64px, 8vw, 92px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #ffb37a, var(--orange));
  flex-shrink: 0;
}

.player-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  background: var(--bg-soft);
}

@keyframes playersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .players__track {
    animation: none;
  }
}

/* ——— Devenir club partenaire ——— */
.section--partner-cta {
  background: #101013;
  color: #fff;
}

.partner-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.section--partner-cta .section__eyebrow {
  color: var(--orange);
}

.section--partner-cta .section__lead {
  color: rgba(255, 255, 255, 0.68);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 26px;
  border-radius: 999px;
  background: #25d366;
  color: #0b1f14;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
}

.partner-cta__phone {
  margin: 14px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.partner-cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.partner-cta__list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-cta__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-cta__list strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.partner-cta__list span {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 760px) {
  .partner-cta {
    grid-template-columns: 1fr;
  }
}

/* ——— Marquee ——— */
.section--marquee {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.marquee__group em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.25);
}

.marquee__accent {
  color: var(--orange);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .hero__img,
  .feed-post {
    animation: none !important;
  }
}

/* ——— Bande orange : logos clubs partenaires ——— */
.section--partners {
  background: var(--orange);
  padding: clamp(18px, 3vw, 26px) 0;
  overflow: hidden;
}

.partners {
  overflow: hidden;
}

.partners__track {
  display: flex;
  width: max-content;
  animation: partnersScroll 34s linear infinite;
}

.partners__group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  padding-right: clamp(36px, 6vw, 76px);
}

.partners__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.partners__logo {
  height: clamp(30px, 4vw, 42px);
  width: auto;
  flex-shrink: 0;
  /* les logos sont fournis en blanc : on force le blanc pur pour homogénéiser */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.partners__logo--tall {
  height: clamp(44px, 6vw, 64px);
}

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
  }
}

/* ——— Réservations : cartes club (reprise des cards de l'app) ——— */
.section--clubs {
  background: var(--bg-soft);
  overflow: hidden;
}

.clubs {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.clubs__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(36px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.clubs__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft), transparent);
}

.clubs__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-soft), transparent);
}

.clubs__track {
  display: flex;
  width: max-content;
  animation: clubsScroll 55s linear infinite;
}

.clubs:hover .clubs__track {
  animation-play-state: paused;
}

@keyframes clubsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.clubs__group {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  padding-right: clamp(12px, 2vw, 18px);
}

.club-card {
  display: flex;
  flex-direction: column;
  width: clamp(238px, 28vw, 290px);
  flex-shrink: 0;
  padding: 10px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 20px 44px rgba(20, 20, 20, 0.06);
}

.club-card__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 8px;
  background: #f2f2f5;
}

.club-card__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  color: #121318;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.club-card__meta {
  margin: 3px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.club-card__prices {
  display: flex;
  gap: 6px;
  margin-top: 9px;
}

.club-card__price {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 7px 9px;
  border-radius: 10px;
}

.club-card__price small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.club-card__price strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #121318;
}

.club-card__price--low {
  background: #fff2ec;
}

.club-card__price--high {
  background: #ffe9d4;
}

.club-card__amenities {
  flex: 1;
  margin: 9px 0 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.club-card__btn {
  display: block;
  padding: 12px;
  border-radius: 12px;
  background: #121318;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: default;
}

.clubs__cta {
  margin-top: clamp(24px, 4vw, 40px);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .clubs__track {
    animation: none;
  }
}

@media (max-width: 560px) {
  .club-card {
    width: min(252px, 72vw);
  }
}

/* ——— Band ——— */
.section--band {
  padding: 0;
}

.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--orange);
  color: #fff;
}

.band__item {
  padding: clamp(28px, 5vw, 44px) 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.band__item:last-child {
  border-right: none;
}

.band__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.band__label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .band {
    grid-template-columns: 1fr;
  }
  .band__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .band__item:last-child {
    border-bottom: none;
  }
}

/* ——— Live (fond régie vidéo) ——— */
.section--live {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(80px, 11vw, 148px);
  background: #0a0a0c;
  color: #fff;
}

.live-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.live-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.live-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 10, 12, 0.94) 0%, rgba(10, 10, 12, 0.78) 45%, rgba(10, 10, 12, 0.35) 100%),
    radial-gradient(ellipse 60% 80% at 12% 50%, rgba(237, 87, 44, 0.22), transparent 70%);
}

.live-block {
  max-width: 560px;
}

.section--live .section__lead {
  color: rgba(255, 255, 255, 0.7);
}

.section--live .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.6);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 45, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 45, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot {
    animation: none;
  }
}

@media (max-width: 760px) {
  .live-bg::after {
    background:
      linear-gradient(180deg, rgba(10, 10, 12, 0.82) 0%, rgba(10, 10, 12, 0.94) 60%),
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(237, 87, 44, 0.2), transparent 70%);
  }
}

/* ——— CTA ——— */
.section--cta {
  padding-top: 40px;
  padding-bottom: clamp(72px, 10vw, 120px);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, var(--bg-warm), transparent 70%),
    var(--bg);
}

.cta-panel {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.06);
}

.cta-panel__brand {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--orange);
  line-height: 1;
}

.cta-panel h2 {
  margin: 0 0 10px;
}

.cta-panel p {
  margin: 0 0 28px;
  color: var(--muted);
}

/* ——— Footer ——— */
.footer {
  padding: 40px 20px 100px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.footer__logo {
  margin: 0 auto 14px;
  height: 28px;
  width: auto;
  opacity: 0.85;
}

.footer__links a:hover {
  color: var(--orange);
}

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay='1'] { transition-delay: 0.08s; }
[data-delay='2'] { transition-delay: 0.16s; }
[data-delay='3'] { transition-delay: 0.24s; }
[data-delay='4'] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
