/*
Theme Name: Francs-Tireurs PRO V7
Theme URI: https://www.lishnotech.com
Author: Lishno Tech
Description: Thème WordPress complet Francs-Tireurs avec contenus éditables, admin caché Événements/Tarifs et formulaire configurable.
Version: 7.0.0
Text Domain: francs-tireurs
*/
:root {
  --primary: #073b7a;
  --accent: #ec1c35;
  --bg: #f3f7fb;
  --hero-title-size: 68px;
  --hero-slogan-size: 22px;
  --hero-text-size: 18px;
  --section-title-size: 42px;
  --ink: #071a33;
  --muted: #66748a;
  --card: #ffffff;
  --line: rgba(7, 59, 122, 0.14);
  --shadow: 0 18px 55px rgba(7, 26, 51, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 59, 122, 0.95), rgba(7, 59, 122, 0.52)),
    radial-gradient(circle at 82% 28%, rgba(236, 28, 53, 0.56), transparent 35%),
    linear-gradient(135deg, #0b2f61, #dce8f4);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.28)),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.18), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 36px));
  color: white;
  text-align: center;
  padding: 28px 20px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-bottom: 18px;
}

.logos-row img {
  max-height: 88px;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.24));
}

.kicker,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, var(--hero-title-size));
  line-height: 0.9;
  margin: 0;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(14px, 1.55vw, var(--hero-text-size));
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 38px rgba(236, 28, 53, 0.26);
}

.btn-light {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
}

.quick-info {
  width: min(1100px, calc(100% - 36px));
  margin: -34px auto 34px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-info article {
  padding: 19px;
  border-right: 1px solid var(--line);
}

.quick-info article:last-child { border-right: 0; }

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.quick-info strong {
  display: block;
  font-size: 18px;
}

.section {
  width: min(1100px, calc(100% - 36px));
  margin: 70px auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 48px;
  align-items: center;
}

.section h2 {
  font-size: clamp(24px, 4vw, var(--section-title-size));
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 10px 0 20px;
}

.section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mini-cards div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.mini-cards strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
}

.mini-cards span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.photo-card {
  background: white;
  padding: 12px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.photo,
.strip-photo {
  min-height: 380px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7, 59, 122, 0.15), rgba(236, 28, 53, 0.12)),
    repeating-linear-gradient(45deg, #dae6f2, #dae6f2 12px, #eef5fb 12px, #eef5fb 24px);
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900;
}

.dark-section {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 85% 20%, rgba(236, 28, 53, 0.35), transparent 28%),
    linear-gradient(135deg, #061b37, #092f61);
  color: white;
  padding: 76px max(18px, calc((100vw - 1100px) / 2));
  margin: 90px 0;
}

.dark-section h2,
.dark-section p {
  color: white;
}

.dark-section .section-label {
  color: #ff4b5e;
}

.image-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
}

.strip-photo {
  min-height: 280px;
  color: white;
}

.strip-list {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 26px;
}

.strip-list h3 {
  margin-top: 0;
  font-size: 24px;
}

.strip-list li {
  margin: 14px 0;
  color: rgba(255,255,255,0.88);
}

.compact {
  margin-top: 80px;
}

.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(7, 26, 51, 0.08);
}

.price-card.featured {
  border-color: rgba(236, 28, 53, 0.45);
  transform: translateY(-8px);
}

.price-card span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.price-card strong {
  display: block;
  color: var(--primary);
  font-size: 28px;
  margin: 14px 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 20px;
}

.footer {
  background: #061b37;
  color: rgba(255,255,255,0.82);
  text-align: center;
  padding: 38px 18px;
}

.footer img {
  width: 72px;
  display: block;
  margin: 0 auto 14px;
}

.admin-toolbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
}

.admin-toggle {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
  cursor: pointer;
}

.admin-panel {
  position: fixed;
  right: 18px;
  top: 92px;
  z-index: 210;
  width: 320px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  background: white;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}

.admin-panel.hidden { display: none; }

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.admin-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  cursor: pointer;
  font-size: 22px;
}

.admin-group {
  margin: 13px 0;
}

.admin-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-group input {
  width: 100%;
}

.admin-group input[type="color"] {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-panel button.save,
.admin-panel button.reset {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
  font-weight: 900;
  cursor: pointer;
}

.save {
  background: var(--primary);
  color: white;
}

.reset {
  background: #7d1d1d;
  color: white;
}

.admin-help {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.editable.admin-active {
  outline: 2px dashed rgba(236, 28, 53, 0.7);
  outline-offset: 4px;
  border-radius: 6px;
  cursor: text;
}

@media (max-width: 850px) {
  .navbar {
    height: auto;
    padding: 14px 18px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .quick-info,
  .split,
  .mini-cards,
  .image-strip,
  .pricing-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-card.featured {
    transform: none;
  }

  .admin-panel {
    left: 14px;
    right: 14px;
    width: auto;
  }
}


/* V2 — accueil plus compact, admin secret, design plus moderne */
.admin-toolbar,
.admin-toggle {
  display: none !important;
}

.admin-secret {
  position: fixed;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  z-index: 999;
  border: 0;
  background: transparent;
  cursor: default;
}

.hero {
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(236, 28, 53, 0.22);
  filter: blur(42px);
  z-index: 1;
}

.hero-bg {
  background:
    linear-gradient(135deg, rgba(4, 29, 63, 0.92), rgba(7, 59, 122, 0.55)),
    radial-gradient(circle at 78% 22%, rgba(236, 28, 53, 0.46), transparent 34%),
    radial-gradient(circle at 18% 15%, rgba(255,255,255,0.16), transparent 23%),
    linear-gradient(135deg, #082d5c, #edf4fb);
}

.logos-row {
  margin-bottom: 14px;
}

.logos-row .hero-club-logo {
  max-height: 142px;
  max-width: 142px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  padding: 8px;
}

.logos-row .hero-fftir-logo {
  max-height: 62px;
  max-width: 140px;
  opacity: .92;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.quick-info {
  border: 1px solid rgba(255,255,255,0.8);
}

.quick-info article {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.section {
  margin: 58px auto;
}

.section h2 {
  letter-spacing: -0.055em;
}

.photo-card,
.price-card,
.contact-card,
.mini-cards div,
.quick-info {
  border: 1px solid rgba(7, 59, 122, 0.10);
}

.price-card,
.contact-card,
.mini-cards div,
.quick-info {
  backdrop-filter: blur(12px);
}

@media (max-width: 850px) {
  .logos-row .hero-club-logo {
    max-height: 118px;
    max-width: 118px;
  }

  .logos-row .hero-fftir-logo {
    max-height: 50px;
    max-width: 120px;
  }

  .hero {
    min-height: 540px;
  }
}


/* V3 — ordre d’accueil + tailles de polices réglables */
.hero-content {
  position: relative;
}

.hero-fftir-top {
  position: absolute;
  top: -8px;
  right: 0;
  max-width: 155px;
  max-height: 78px;
  object-fit: contain;
  background: rgba(255,255,255,0.82);
  border-radius: 16px;
  padding: 8px 10px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.logos-row {
  margin: 14px 0 10px;
}

.hero-slogan {
  margin: 0 auto 16px;
  font-size: var(--hero-slogan-size);
  font-style: italic;
  font-weight: 900;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.02em;
}

.admin-group input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.admin-group label span {
  float: right;
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 850px) {
  .hero-fftir-top {
    position: static;
    display: block;
    margin: 0 auto 16px;
    max-width: 130px;
    max-height: 60px;
  }
}


/* V4 Compact design */
.hero {
  min-height: 400px;
}

.hero h1 {
  margin-bottom: 6px;
}

.hero-text {
  margin-top: 10px;
}

.logos-row .hero-club-logo {
  max-height: 110px;
}

.quick-info {
  margin-top: -20px;
}

.section {
  margin: 40px auto;
}


/* V5 PREMIUM — plus moderne, plus compact, animations, glass design */
:root {
  --hero-logo-size: 118px;
  --hero-height: 400px;
  --glass: rgba(255,255,255,0.74);
  --glass-border: rgba(255,255,255,0.58);
}

body.premium {
  background:
    radial-gradient(circle at 8% 0%, rgba(7,59,122,0.10), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(236,28,53,0.10), transparent 24%),
    linear-gradient(180deg, var(--bg), #ffffff 48%, var(--bg));
}

.site-header {
  transition: all .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(7,26,51,.10);
  background: rgba(255,255,255,.92);
}

.site-header.scrolled .navbar {
  height: 62px;
}

.site-header.scrolled .brand img {
  width: 34px;
  height: 34px;
}

.navbar,
.brand img {
  transition: all .25s ease;
}

.hero {
  min-height: var(--hero-height);
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.14);
}

.hero-content {
  width: min(980px, calc(100% - 36px));
  padding: 22px 20px 26px;
}

.hero h1 {
  text-shadow: 0 14px 40px rgba(0,0,0,.28);
}

.logos-row .hero-club-logo {
  max-height: var(--hero-logo-size);
  max-width: var(--hero-logo-size);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    0 22px 55px rgba(0,0,0,.26),
    0 0 0 8px rgba(255,255,255,.08);
}

.hero-slogan {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.hero-text {
  max-width: 660px;
}

.hero-actions .btn {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(236, 28, 53, .34);
}

.btn-light:hover {
  background: white;
}

.quick-info {
  width: min(1040px, calc(100% - 42px));
  margin-top: -28px;
  border-radius: 26px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
}

.quick-info article {
  padding: 18px 22px;
  background: transparent;
}

.quick-info strong {
  font-size: 16px;
}

.section {
  width: min(1040px, calc(100% - 42px));
}

.section h2 {
  max-width: 760px;
}

.section-copy > p:not(.section-label) {
  max-width: 650px;
}

.mini-cards {
  gap: 12px;
}

.mini-cards div,
.price-card,
.contact-card,
.photo-card {
  border-radius: 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mini-cards div:hover,
.price-card:hover,
.contact-card:hover,
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(7,26,51,.13);
  border-color: rgba(236,28,53,.22);
}

.photo-card {
  position: relative;
  overflow: hidden;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 62%, rgba(236,28,53,.24));
  z-index: 1;
}

.photo,
.strip-photo {
  min-height: 330px;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding-top: 66px;
  padding-bottom: 66px;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(236,28,53,.28);
  filter: blur(34px);
}

.dark-section > * {
  position: relative;
  z-index: 1;
}

.strip-list {
  backdrop-filter: blur(18px);
}

.pricing-grid {
  gap: 14px;
}

.price-card {
  padding: 22px;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,246,247,1));
}

.app-cta {
  background:
    linear-gradient(135deg, rgba(7,59,122,.96), rgba(7,26,51,.94)),
    radial-gradient(circle at 86% 18%, rgba(236,28,53,.55), transparent 26%);
  color: white;
  border-radius: 32px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: var(--shadow);
}

.app-cta h2,
.app-cta p {
  color: white;
}

.app-cta p:not(.section-label) {
  max-width: 670px;
}

.app-cta .section-label {
  color: #ff5263;
}

.contact-section {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 32px;
  padding: 28px;
  backdrop-filter: blur(16px);
}

.footer {
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
}

/* Animations au scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Admin */
.admin-panel {
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
}

@media (max-width: 850px) {
  .hero {
    min-height: calc(var(--hero-height) + 80px);
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .quick-info {
    width: min(94%, 520px);
  }

  .app-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-section {
    padding: 20px;
  }
}


/* V6 ULTRA MODERN — typographie premium + admin login */
:root {
  --font-main: "Aptos", "Inter", "Segoe UI", "SF Pro Display", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body,
button,
input,
textarea {
  font-family: var(--font-main);
}

body.premium {
  letter-spacing: -0.015em;
}

.navbar {
  height: 68px;
}

.brand span {
  font-size: 18px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: -0.01em;
}

.hero {
  min-height: var(--hero-height);
  isolation: isolate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.12), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.035) 1px, transparent 1px, transparent 80px);
  mix-blend-mode: screen;
  opacity: .7;
}

.hero-content {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0,0,0,.16);
}

.hero h1 {
  font-weight: 950;
  letter-spacing: -0.09em;
}

.hero-slogan {
  font-weight: 850;
}

.hero-text {
  font-weight: 500;
}

.logos-row .hero-club-logo {
  transition: transform .28s ease, box-shadow .28s ease;
}

.logos-row .hero-club-logo:hover {
  transform: scale(1.035) rotate(-1deg);
}

.nav-cta,
.btn,
.admin-toggle,
.save,
.reset {
  letter-spacing: -0.02em;
}

.quick-info article {
  position: relative;
}

.quick-info article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
  opacity: .85;
}

.quick-info span {
  margin-top: 10px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.section h2 {
  font-weight: 950;
  letter-spacing: -0.075em;
}

.section p {
  font-weight: 450;
}

.mini-cards div,
.price-card,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
}

.price-card strong {
  letter-spacing: -0.055em;
}

.app-cta {
  position: relative;
  overflow: hidden;
}

.app-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  background: rgba(236,28,53,.32);
  border-radius: 50%;
  filter: blur(25px);
}

.app-cta > * {
  position: relative;
  z-index: 1;
}

/* Login admin */
.admin-login {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 15%, rgba(236,28,53,.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(7,59,122,.26), transparent 35%),
    rgba(3, 13, 29, .72);
  backdrop-filter: blur(14px);
}

.admin-login.hidden {
  display: none;
}

.login-card {
  width: min(420px, 100%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 35px 100px rgba(0,0,0,.32);
}

.login-logo-wrap {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7,59,122,.10), rgba(236,28,53,.10));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.login-logo-wrap img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.login-card h2 {
  margin: 0 0 6px;
  font-size: 30px;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.login-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.login-card label {
  display: block;
  margin: 14px 0 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.login-card input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(7,59,122,.18);
  border-radius: 14px;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
  background: white;
}

.login-card input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(7,59,122,.10);
}

.login-card button {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  font-weight: 950;
  cursor: pointer;
}

.login-card .login-cancel {
  margin-top: 10px;
  background: #eef2f7;
  color: var(--ink);
}

#adminLoginError {
  display: block;
  min-height: 18px;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
  text-align: center;
}

/* Admin panel encore plus clean */
.admin-panel {
  background: rgba(255,255,255,.88);
}

.admin-head strong {
  letter-spacing: -0.04em;
}

@media (max-width: 850px) {
  .hero-content {
    border-radius: 24px;
  }

  .login-card {
    padding: 22px;
    border-radius: 22px;
  }
}


/* V7 UNIFORMISATION — une seule zone d'en-tête, logos propres, typo aérée */
:root {
  --heading-color: #071a33;
  --text-color: #334155;
  --font-main: Inter, Segoe UI, Arial, sans-serif;
}

body.uniform {
  color: var(--text-color);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 30%),
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 28%),
    linear-gradient(180deg, #f7fbff, var(--bg) 42%, #ffffff 100%);
}

body.uniform,
body.uniform button,
body.uniform input,
body.uniform textarea,
body.uniform select {
  font-family: var(--font-main);
}

/* Une seule zone visuelle : nav intégrée/transparent, puis hero */
body.uniform .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  backdrop-filter: none;
}

body.uniform .navbar {
  height: 76px;
}

body.uniform .brand,
body.uniform .nav-links a {
  color: rgba(255,255,255,.88);
}

body.uniform .brand img {
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.22));
}

body.uniform .nav-cta {
  background: rgba(255,255,255,.16);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

body.uniform .site-header.scrolled {
  position: fixed;
  background: rgba(255,255,255,.92) !important;
  border-bottom: 1px solid rgba(7,59,122,.10);
  backdrop-filter: blur(16px);
}

body.uniform .site-header.scrolled .brand,
body.uniform .site-header.scrolled .nav-links a {
  color: var(--ink);
}

/* Hero plus net, sans double fond ni cadre autour du logo */
body.uniform .hero {
  min-height: var(--hero-height);
  padding-top: 76px;
  border-radius: 0 0 42px 42px;
}

body.uniform .hero-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding-top: 16px;
}

body.uniform .hero h1,
body.uniform .section h2,
body.uniform .login-card h2 {
  color: inherit;
  font-weight: 850;
  letter-spacing: -0.055em;
}

body.uniform .hero h1 {
  margin-top: 0;
}

body.uniform .logos-row .hero-club-logo {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.28));
  image-rendering: auto;
  transform: translateZ(0);
}

body.uniform .hero-fftir-top {
  background: transparent !important;
  border: 0;
  box-shadow: none;
  padding: 0;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.24));
  max-width: 175px;
  max-height: 86px;
}

body.uniform .hero-slogan {
  background: transparent;
  border: 0;
  backdrop-filter: none;
  padding: 0;
  color: rgba(255,255,255,.94);
  font-weight: 700;
  letter-spacing: .01em;
}

body.uniform .hero-text {
  color: rgba(255,255,255,.86);
  line-height: 1.75;
  letter-spacing: .005em;
}

/* Typographie plus respirante */
body.uniform p,
body.uniform li,
body.uniform span {
  letter-spacing: .002em;
}

body.uniform .section h2 {
  color: var(--heading-color);
  line-height: 1.08;
}

body.uniform .section p,
body.uniform .info-list span,
body.uniform .quick-info span {
  color: var(--text-color);
}

/* Uniformiser toutes les sections façon bloc découverte/réservation */
.uniform-card,
.app-cta {
  width: min(1040px, calc(100% - 42px));
  margin: 48px auto;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  border: 1px solid rgba(7,59,122,.11);
  box-shadow: 0 20px 70px rgba(7,26,51,.10);
  backdrop-filter: blur(16px);
}

.uniform-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uniform-copy p:not(.section-label) {
  max-width: 650px;
}

.uniform-panel {
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 36%),
    linear-gradient(135deg, rgba(7,59,122,.055), rgba(255,255,255,.48));
  border: 1px solid rgba(7,59,122,.10);
  border-radius: 24px;
  padding: 18px;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list div {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,59,122,.08);
  border-radius: 18px;
  padding: 17px;
}

.info-list strong {
  display: block;
  color: var(--heading-color);
  font-size: 17px;
  letter-spacing: -0.025em;
  margin-bottom: 5px;
}

.info-list span {
  display: block;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Media section harmonisée */
.uniform-media {
  width: min(1040px, calc(100% - 42px));
  margin: 44px auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(7,26,51,.10);
  border: 1px solid rgba(7,59,122,.11);
}

.uniform-media .photo {
  min-height: 320px;
  border-radius: 0;
}

/* Découverte harmonisée avec mêmes proportions */
body.uniform .dark-section {
  width: min(1040px, calc(100% - 42px));
  max-width: 1040px;
  margin: 48px auto;
  border-radius: 30px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 28px;
  align-items: stretch;
}

body.uniform .dark-section .image-strip {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body.uniform .dark-section .strip-photo {
  min-height: 190px;
}

body.uniform .strip-list {
  padding: 22px;
}

/* Réservation harmonisée */
body.uniform .app-cta {
  grid-template-columns: 1fr auto;
  padding: 36px;
}

/* Quick info plus compacte */
body.uniform .quick-info {
  margin-top: -24px;
  width: min(980px, calc(100% - 42px));
}

body.uniform .quick-info article {
  padding: 16px 20px;
}

/* Admin selects */
.admin-group select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(7,59,122,.18);
  border-radius: 10px;
  background: white;
  padding: 0 10px;
  font-weight: 700;
  color: var(--ink);
}

/* Footer logo sans encadré */
.footer img {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}

@media (max-width: 850px) {
  body.uniform .site-header {
    position: absolute;
  }

  body.uniform .hero {
    padding-top: 120px;
  }

  .uniform-card,
  body.uniform .dark-section,
  body.uniform .app-cta {
    grid-template-columns: 1fr;
    padding: 24px;
    width: min(94%, 560px);
  }

  body.uniform .hero-fftir-top {
    position: absolute;
    top: -76px;
    right: 0;
    max-width: 125px;
  }

  .uniform-media {
    width: min(94%, 560px);
  }

  .uniform-media .photo {
    min-height: 240px;
  }
}


/* V8 ERGO — corrections demandées */
:root {
  --hero-block-color: #ffffff;
  --club-block-color: #334155;
  --discovery-block-color: #ffffff;
  --tarifs-block-color: #334155;
  --reservation-block-color: #ffffff;
  --contact-block-color: #334155;
}

body.uniform {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* Header : logo club gauche, FFTir droite transparent, pas de bouton CTA */
body.uniform .brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-fftir-logo {
  width: 138px;
  max-height: 62px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

/* Hero sans logo central */
body.uniform .hero-content {
  text-align: left;
  width: min(1040px, calc(100% - 42px));
}

body.uniform .hero h1 {
  max-width: 760px;
}

body.uniform .hero h1,
body.uniform .hero-slogan,
body.uniform .hero-text {
  color: var(--hero-block-color);
}

body.uniform .hero-slogan {
  margin-left: 0;
  margin-right: 0;
}

body.uniform .hero-text {
  margin-left: 0;
  max-width: 720px;
}

/* Titres de blocs toujours en haut à gauche */
.uniform-card,
body.uniform .dark-section,
body.uniform .app-cta {
  align-items: start !important;
}

.uniform-copy {
  justify-content: flex-start !important;
}

.section-center {
  text-align: left !important;
  margin-left: 0 !important;
}

.section-label {
  justify-content: flex-start;
}

body.uniform .section h2 {
  margin-top: 8px;
}

/* Couleurs bloc par bloc */
#club,
#club p,
#club span,
#club strong {
  color: var(--club-block-color);
}

#initiations,
#initiations p,
#initiations li,
#initiations span,
#initiations strong,
#initiations h2,
#initiations h3 {
  color: var(--discovery-block-color);
}

#tarifs,
#tarifs p,
#tarifs span,
#tarifs strong {
  color: var(--tarifs-block-color);
}

.app-cta,
.app-cta p,
.app-cta span,
.app-cta strong,
.app-cta h2 {
  color: var(--reservation-block-color);
}

#contact,
#contact p,
#contact span,
#contact strong {
  color: var(--contact-block-color);
}

/* Éviter texte trouble sur sections sombres */
body.uniform .dark-section,
body.uniform .app-cta {
  text-shadow: none;
}

body.uniform .dark-section h2,
body.uniform .app-cta h2 {
  font-weight: 820;
}

body.uniform .section h2 {
  font-weight: 820;
}

/* Photos installations : 2 photos admin */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,.82);
}

.photo-grid .photo {
  min-height: 280px;
  border-radius: 22px;
}

/* Tarifs vraiment bloc uniforme */
#tarifs .uniform-panel {
  min-height: 100%;
}

#tarifs .info-list div {
  display: grid;
  gap: 5px;
}

/* Admin */
.admin-panel {
  width: 350px;
}

@media (max-width: 850px) {
  .nav-fftir-logo {
    width: 112px;
    max-height: 48px;
  }

  body.uniform .brand span {
    display: none;
  }

  body.uniform .hero-content {
    text-align: center;
  }

  body.uniform .hero-slogan,
  body.uniform .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}


/* V9 — centrage hero, police plus fine, logos propres, ancrages corrigés */
:root {
  --font-main: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 96px;
}

#club,
#initiations,
#tarifs,
#contact,
#installations {
  scroll-margin-top: 96px;
}

/* Police moins large, moins serrée, plus nette */
body.uniform,
body.uniform button,
body.uniform input,
body.uniform textarea,
body.uniform select {
  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: 0;
}

body.uniform p,
body.uniform li,
body.uniform span {
  letter-spacing: 0.006em;
  line-height: 1.78;
}

body.uniform .section h2,
body.uniform .hero h1,
body.uniform .brand span {
  font-family: var(--font-heading);
  font-weight: 650;
  letter-spacing: -0.032em;
}

/* Entête */
body.uniform .brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.22));
}

body.uniform .brand span {
  font-size: 20px;
  font-weight: 650;
}

body.uniform .navbar {
  height: 86px;
}

body.uniform .site-header.scrolled .navbar {
  height: 72px;
}

body.uniform .site-header.scrolled .brand img {
  width: 58px;
  height: 58px;
}

.nav-fftir-logo {
  width: 176px;
  max-height: 82px;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

/* Accueil : titre + slogan recentrés, sans logo central */
body.uniform .hero {
  padding-top: 86px;
}

body.uniform .hero-content {
  text-align: center;
  margin-inline: auto;
}

body.uniform .hero h1 {
  max-width: none;
  margin-inline: auto;
  font-weight: 680;
}

body.uniform .hero-slogan {
  display: block;
  margin: 8px auto 12px;
  max-width: 780px;
  font-weight: 450;
  font-size: calc(var(--hero-slogan-size) * 0.95);
  letter-spacing: 0.01em;
}

body.uniform .hero-text {
  margin: 0 auto;
  max-width: 720px;
  font-weight: 400;
}

/* Titres blocs : lisibles et non troubles */
body.uniform .section h2 {
  font-weight: 650;
  text-shadow: none !important;
  letter-spacing: -0.025em;
}

body.uniform .section-label {
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Bloc tarifs avec fond visuel dédié */
#tarifs.uniform-card {
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 34%),
    radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,249,255,.86));
  border: 1px solid rgba(7,59,122,.14);
}

#tarifs .uniform-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.60));
}

/* Ancrages : quand on clique, le titre arrive au bon niveau */
section[id] {
  scroll-margin-top: 100px;
}

/* Logo FFTir sur fond transparent en mobile aussi */
@media (max-width: 850px) {
  body.uniform .brand img {
    width: 62px;
    height: 62px;
  }

  .nav-fftir-logo {
    width: 128px;
    max-height: 58px;
  }

  body.uniform .navbar {
    height: 80px;
  }

  body.uniform .hero {
    padding-top: 96px;
  }
}


/* V10 corrigée — basée sur V9 */
body.uniform .navbar {
  height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
}

body.uniform .brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

body.uniform .brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
}

body.uniform .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

body.uniform .nav-links a {
  font-size: 14px;
  font-weight: 650;
}

body.uniform .nav-fftir-logo {
  width: 205px;
  max-height: 86px;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Réduction de l'espace entre menu et titre */
body.uniform .hero {
  padding-top: 94px;
  min-height: 365px;
}

body.uniform .hero-content {
  padding-top: 0;
  padding-bottom: 22px;
}

body.uniform .hero h1 {
  margin-top: 0;
  margin-bottom: 6px;
}

body.uniform .hero-slogan {
  margin-top: 4px;
  margin-bottom: 10px;
}

body.uniform .hero-text {
  margin-top: 0;
}

/* Suppression de l'espace laissé par les boutons d'accueil */
.hero-actions {
  display: none !important;
}

/* Header sticky après scroll */
body.uniform .site-header.scrolled .navbar {
  height: 78px;
}

body.uniform .site-header.scrolled .brand img {
  width: 74px;
  height: 74px;
}

body.uniform .site-header.scrolled .nav-fftir-logo {
  width: 170px;
  max-height: 70px;
}

@media (max-width: 850px) {
  body.uniform .navbar {
    height: 82px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding-inline: 14px;
  }

  body.uniform .brand img {
    width: 68px;
    height: 68px;
  }

  body.uniform .nav-links {
    display: none;
  }

  body.uniform .nav-fftir-logo {
    width: 126px;
    max-height: 58px;
  }

  body.uniform .hero {
    padding-top: 90px;
    min-height: 390px;
  }
}


/* V11 — alignement centré + logos plus gros */

body.uniform .navbar {
  grid-template-columns: auto 1fr auto;
  justify-content: center;
}

body.uniform .brand img {
  width: 120px !important;
  height: auto !important;
}

body.uniform .nav-fftir-logo {
  width: 240px !important;
  max-height: 100px;
}

/* Center menu */
body.uniform .nav-links {
  justify-content: center;
  gap: 40px;
}

body.uniform .nav-links a {
  text-align: center;
}

/* Hero centered and higher */
body.uniform .hero {
  padding-top: 80px;
  min-height: 320px;
}

body.uniform .hero-content {
  text-align: center;
  margin-top: -10px;
}

body.uniform .hero h1 {
  margin-top: -10px;
  text-align: center;
}

body.uniform .hero-slogan,
body.uniform .hero-text {
  text-align: center;
}


/* V12 — alignement parfait + tailles augmentées */

body.uniform .navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

body.uniform .brand {
  justify-self: start;
}

body.uniform .nav-links {
  justify-self: center;
  display: flex;
  gap: 50px;
}

body.uniform .nav-links a {
  font-size: 17px;
  font-weight: 700;
}

body.uniform .nav-fftir-logo {
  justify-self: end;
  width: 270px !important;
}

body.uniform .brand img {
  width: 135px !important;
}

/* align title perfectly with menu */
body.uniform .hero-content {
  text-align: center;
  margin-top: -20px;
}

body.uniform .hero h1 {
  text-align: center;
  font-size: clamp(42px, 5vw, 68px);
}

body.uniform .hero-slogan,
body.uniform .hero-text {
  text-align: center;
}

/* reduce vertical gap */
body.uniform .hero {
  padding-top: 70px;
}

/* V13 — footer plus compact */
.footer {
  padding: 18px 12px !important;
}

.footer img {
  width: 50px;
  margin-bottom: 6px;
}

.footer p {
  font-size: 13px;
  margin: 0;
}

/* V14 — bloc visuel pour Tarifs */
#tarifs {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,249,255,0.9));
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(7,26,51,0.12);
  border: 1px solid rgba(7,59,122,0.12);
}

#tarifs .uniform-panel {
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
}

/* V16 — highlight doux du bloc ciblé */
.section.highlight-target,
.uniform-card.highlight-target,
.app-cta.highlight-target,
.dark-section.highlight-target {
  animation: targetPulse 1.4s ease;
}

@keyframes targetPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 28, 53, 0.35), 0 18px 50px rgba(7,26,51,0.12);
    transform: translateY(-2px);
  }
  45% {
    box-shadow: 0 0 0 10px rgba(236, 28, 53, 0.12), 0 24px 70px rgba(7,26,51,0.16);
  }
  100% {
    box-shadow: 0 18px 50px rgba(7,26,51,0.12);
    transform: translateY(0);
  }
}

/* V17 — email cliquable + crédit Lishno Tech */
.contact-email {
  color: inherit;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.footer a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

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

.contact-form {
  margin-top:20px;
}
.contact-form input,
.contact-form textarea {
  width:100%;
  margin-bottom:10px;
  padding:10px;
  border-radius:8px;
  border:1px solid #ccc;
}
.contact-form button {
  padding:10px 20px;
  background:#073b7a;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

/* V19 — logos aux extrémités */
body.uniform .navbar,
.navbar {
  max-width: none !important;
  width: 100% !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
  grid-template-columns: auto 1fr auto !important;
}

body.uniform .brand,
.brand {
  justify-self: start !important;
}

body.uniform .nav-links,
.nav-links {
  justify-self: center !important;
}

body.uniform .nav-fftir-logo,
.nav-fftir-logo {
  justify-self: end !important;
}

/* V19 — formulaire PHP */
.form-status {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 14px;
}

.form-status.success {
  color: #0f7a3b;
}

.form-status.error {
  color: #b42318;
}

.contact-form button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* V21 — bandeau plus compact + formulaire contact en fenêtre */
body.uniform .navbar {
  height: 82px !important;
}

body.uniform .brand img {
  width: 118px !important;
}

body.uniform .nav-fftir-logo {
  width: 238px !important;
  max-height: 88px !important;
}

body.uniform .hero {
  min-height: 310px !important;
  padding-top: 92px !important;
  padding-bottom: 22px !important;
}

body.uniform .hero-content {
  margin-top: 0 !important;
  padding-top: 18px !important;
  padding-bottom: 4px !important;
}

body.uniform .hero h1 {
  margin-top: 10px !important;
  margin-bottom: 6px !important;
}

body.uniform .hero-slogan {
  margin-top: 4px !important;
  margin-bottom: 8px !important;
}

body.uniform .hero-text {
  margin-top: 0 !important;
  line-height: 1.55 !important;
}

body.uniform .quick-info,
.quick-info {
  margin-top: -18px !important;
  margin-bottom: 30px !important;
}

body.uniform .quick-info article,
.quick-info article {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

/* Bouton/lien formulaire dans le bloc contact */
.contact-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.contact-form-link:hover {
  filter: brightness(.96);
}

/* Modal formulaire */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 13, 29, .68);
  backdrop-filter: blur(12px);
}

.contact-modal.hidden {
  display: none;
}

.contact-modal-card {
  position: relative;
  width: min(620px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 35px 100px rgba(0,0,0,.32);
}

.contact-modal-card h3 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.contact-modal-card p {
  margin: 0 0 18px;
  color: var(--text-color);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef2f7;
  color: var(--heading-color);
  font-size: 24px;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(7,59,122,.18);
  font: inherit;
  outline: none;
}

.contact-modal textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-modal input:focus,
.contact-modal textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(7,59,122,.10);
}

.contact-modal button[type="submit"] {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.form-status {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-weight: 750;
  text-align: center;
}

.form-status.success {
  color: #0f7a3b;
}

.form-status.error {
  color: #b42318;
}

@media (max-width: 850px) {
  body.uniform .navbar {
    height: 78px !important;
  }

  body.uniform .brand img {
    width: 72px !important;
  }

  body.uniform .nav-fftir-logo {
    width: 126px !important;
  }

  body.uniform .hero {
    min-height: 360px !important;
    padding-top: 90px !important;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* V22 — ajustement spacing titre */
body.uniform .hero-content {
  padding-top: 6px !important;
}

/* V22 — bouton réservation en bas à droite */
.app-cta {
  position: relative;
}

.app-cta .btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

/* V24 — titre encore plus haut */
body.uniform .hero-content {
  padding-top: 0 !important;
  margin-top: -8px !important;
}

body.uniform .hero h1 {
  margin-top: 0 !important;
}

/* V24 — couleur unitaire par texte */
.editable-color.selected-editable {
  outline: 2px solid var(--accent) !important;
  outline-offset: 5px;
  border-radius: 6px;
}

.admin-group small {
  display: block;
  margin-top: 6px;
  color: var(--text-color);
  font-size: 11px;
  opacity: .75;
}

.contact-single-block .editable-button-text {
  margin-top: 8px;
}

/* V26 — correction contact + hero encore plus compact */
body.uniform .hero,
.hero {
  min-height: 285px !important;
  padding-top: 58px !important;
  padding-bottom: 18px !important;
}

body.uniform .hero-content,
.hero-content {
  margin-top: -24px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.uniform .hero h1,
.hero h1 {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

body.uniform .hero-slogan,
.hero-slogan {
  margin-top: 2px !important;
  margin-bottom: 6px !important;
}

body.uniform .quick-info,
.quick-info {
  margin-top: -12px !important;
}

/* V31 — optimisation mobile : menu burger */
.mobile-menu-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,.16);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  width: 44px;
  height: 42px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.site-header.scrolled .mobile-menu-toggle {
  color: var(--heading-color);
  background: rgba(7,59,122,.06);
  border-color: rgba(7,59,122,.12);
}

@media (max-width: 900px) {
  body.uniform .navbar,
  .navbar {
    height: 76px !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto auto !important;
    gap: 10px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.uniform .brand img,
  .brand img {
    width: 68px !important;
    max-height: 68px !important;
  }

  body.uniform .nav-fftir-logo,
  .nav-fftir-logo {
    width: 104px !important;
    max-height: 48px !important;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  body.uniform .nav-links,
  .nav-links {
    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none !important;
    grid-template-columns: 1fr;
    gap: 0 !important;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(7,59,122,.12);
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(7,26,51,.18);
    backdrop-filter: blur(14px);
  }

  body.uniform .nav-links.open,
  .nav-links.open {
    display: grid !important;
  }

  body.uniform .nav-links a,
  .nav-links a {
    color: var(--heading-color) !important;
    font-size: 16px !important;
    padding: 13px 14px;
    border-radius: 12px;
    text-align: left;
  }

  body.uniform .nav-links a:hover,
  .nav-links a:hover {
    background: rgba(7,59,122,.07);
  }

  body.uniform .hero,
  .hero {
    padding-top: 82px !important;
    min-height: 340px !important;
  }

  body.uniform .hero-content,
  .hero-content {
    margin-top: -8px !important;
  }

  body.uniform .hero h1,
  .hero h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  body.uniform .hero-slogan,
  .hero-slogan {
    font-size: 17px !important;
  }

  body.uniform .hero-text,
  .hero-text {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 420px) {
  body.uniform .brand img,
  .brand img {
    width: 58px !important;
  }

  body.uniform .nav-fftir-logo,
  .nav-fftir-logo {
    width: 92px !important;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 38px;
    font-size: 22px;
  }
}

/* V32 — contenus Francs-Tireurs + photos */
body.uniform .brand img,
.brand img {
  width: 155px !important;
  height: auto !important;
}

body.uniform .site-header.scrolled .brand img,
.site-header.scrolled .brand img {
  width: 92px !important;
}

.reservation-top {
  grid-template-columns: 1fr !important;
  width: min(980px, calc(100% - 42px)) !important;
}

.reservation-top article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-right: 0 !important;
}

.reservation-top strong {
  margin-top: 0 !important;
}

.top-reservation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.photo[style*="photo-installation"] span,
.strip-photo[style*="photo-initiation"] span {
  display: none;
}

#tarifs .info-list div {
  align-content: start;
}

#tarifs .info-list span {
  line-height: 1.65;
}

@media (max-width: 900px) {
  body.uniform .brand img,
  .brand img {
    width: 78px !important;
  }

  .reservation-top article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-reservation-btn {
    width: 100%;
  }
}

/* V33 adjustments */
body {
  font-size: 15px !important;
}

p, span, li, a {
  font-size: 0.96em !important;
}

body.uniform .hero,
.hero {
  padding-top: 95px !important;
}

body.uniform .hero-content,
.hero-content {
  margin-top: 8px !important;
}

body.uniform .brand img,
.brand img {
  width: 185px !important;
}

body.uniform .site-header.scrolled .brand img,
.site-header.scrolled .brand img {
  width: 112px !important;
}

body.uniform .nav-links,
.nav-links {
  margin-top: 14px !important;
}

body.uniform .hero h1,
.hero h1 {
  font-size: clamp(44px, 6vw, 74px) !important;
}

body.uniform .hero-text,
.hero-text {
  font-size: 16px !important;
}

/* V34 — slogan rouge + menu remonté */
body.uniform .hero-slogan,
.hero-slogan {
  color: var(--accent) !important;
  font-weight: 650 !important;
}

body.uniform .nav-links,
.nav-links {
  margin-top: 0 !important;
  transform: translateY(-12px);
}

body.uniform .site-header.scrolled .nav-links,
.site-header.scrolled .nav-links {
  transform: translateY(0);
}

.hero-slogan,
body.uniform .hero-slogan{
  color:#d61f2c !important;
}

/* V40 - sous blocs tarifs */
.tarifs-panel{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.tarif-card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(7,59,122,.08);
  border-radius:22px;
  padding:22px;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.tarif-card h3{
  margin:0 0 14px;
  font-size:22px;
  color:var(--heading-color);
}

.tarif-card div{
  line-height:1.7;
}

@media(max-width:900px){
  .tarifs-panel{
    grid-template-columns:1fr;
  }
}

/* V41 - tarifs clean */
.tarif-list{
  margin:0;
  padding-left:18px;
  line-height:1.8;
}

.tarif-list li{
  margin-bottom:6px;
}


/* V44 - cartes tarifs largeur égale */
.tarifs-panel{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0,1fr)) !important;
    gap:22px !important;
    width:100% !important;
    align-items:stretch !important;
}

.tarif-card{
    width:100% !important;
    height:100% !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    box-sizing:border-box !important;
}

@media (max-width: 900px){
    .tarifs-panel{
        grid-template-columns:1fr !important;
    }
}


/* V46 - sous blocs tarifs pleine largeur sous le titre */
#tarifs{
    display:flex !important;
    flex-direction:column !important;
    gap:28px !important;
}

#tarifs .uniform-copy{
    width:100% !important;
    max-width:100% !important;
    margin-bottom:6px !important;
}

#tarifs .uniform-panel{
    width:100% !important;
    max-width:100% !important;
}

#tarifs .tarifs-panel{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    width:100% !important;
    gap:22px !important;
    align-items:stretch !important;
}

#tarifs .tarif-card{
    width:100% !important;
    min-height:100% !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    box-sizing:border-box !important;
}

@media(max-width:900px){
    #tarifs .tarifs-panel{
        grid-template-columns:1fr !important;
    }
}


/* V47 Evenements */
#evenements .uniform-panel{
  display:flex;
  align-items:stretch;
}

#evenements .photo{
  width:100%;
  border-radius:22px;
  background-size:cover;
  background-position:center;
}

@media(max-width:900px){
  #evenements{
    display:flex !important;
    flex-direction:column !important;
  }
}


/* V48 conditions accès pleine largeur */
#initiations{
    display:flex !important;
    flex-direction:column !important;
    gap:24px !important;
}

#initiations .init-full{
    width:100% !important;
    max-width:100% !important;
}

.initiation-photo-large{
    width:100%;
    min-height:340px;
    border-radius:24px;
    background-size:cover;
    background-position:center;
}

.conditions-wide{
    width:100%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:28px;
}

.conditions-wide h3{
    margin-top:0;
    margin-bottom:22px;
    font-size:28px;
}

.conditions-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 26px;
    padding-left:22px;
    margin:0;
}

.conditions-grid li{
    line-height:1.7;
}

@media(max-width:900px){
    .conditions-grid{
        grid-template-columns:1fr;
    }
}


/* V49 - Découverte : texte gauche / photo droite / conditions dessous */
#initiations{
    display:flex !important;
    flex-direction:column !important;
    gap:26px !important;
}

.init-top-row{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:28px;
    align-items:stretch;
    width:100%;
}

.init-text-block{
    width:100%;
}

.initiation-photo-side{
    width:100%;
    min-height:320px;
    border-radius:24px;
    background-size:cover;
    background-position:center;
}

.conditions-wide{
    width:100%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:28px;
}

.conditions-wide h3{
    margin-top:0;
    margin-bottom:22px;
    font-size:28px;
}

.conditions-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 26px;
    padding-left:22px;
    margin:0;
}

.conditions-grid li{
    line-height:1.7;
}

@media(max-width:900px){
    .init-top-row{
        grid-template-columns:1fr;
    }

    .conditions-grid{
        grid-template-columns:1fr;
    }
}


/* V50 — header/menu/logo + map */
body.uniform .nav-links a,
.nav-links a {
  font-size: 18px !important;
}

body.uniform .brand img,
.brand img {
  width: 175px !important;
}

body.uniform .site-header.scrolled .brand img,
.site-header.scrolled .brand img {
  width: 118px !important;
}

.hero-text {
  white-space: nowrap !important;
  max-width: none !important;
  width: 100% !important;
  font-size: 17px !important;
}

.mini-map {
  margin-top: 14px;
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(7,59,122,.12);
}

.mini-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media(max-width:900px) {
  .hero-text {
    white-space: normal !important;
  }

  body.uniform .nav-links a,
  .nav-links a {
    font-size: 16px !important;
  }

  body.uniform .brand img,
  .brand img {
    width: 86px !important;
  }

  .mini-map {
    height: 220px;
  }
}


/* V51 mobile fixes événements + réservation */

@media (max-width: 900px){

  /* Bloc événements */
  #evenements{
    display:flex !important;
    flex-direction:column !important;
    gap:18px !important;
  }

  #evenements .uniform-copy,
  #evenements .uniform-panel{
    width:100% !important;
    max-width:100% !important;
  }

  #evenements .photo{
    min-height:240px !important;
    width:100% !important;
  }

  /* Bloc réservation */
  #reservation .uniform-panel,
  #reservation .info-list{
    width:100% !important;
  }

  #reservation .btn,
  #reservation .app-open-btn{
    display:flex !important;
    width:100% !important;
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
    margin-top:18px !important;
    white-space:normal !important;
    line-height:1.4 !important;
    padding:14px 18px !important;
    box-sizing:border-box !important;
  }

  #reservation .info-list div{
    width:100% !important;
  }
}


/* V52 — corrections fortes mobile réservation + événements */
@media (max-width: 900px) {

  /* Réservation : le bouton doit passer sous le texte */
  #reservation,
  #reservation.app-cta,
  section#reservation {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    position: relative !important;
  }

  #reservation > div {
    width: 100% !important;
    max-width: 100% !important;
  }

  #reservation .btn,
  #reservation .app-open-btn,
  #reservation a.btn {
    position: static !important;
    inset: auto !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 6px 0 0 0 !important;
    padding: 14px 18px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
  }

  /* Événements : texte puis photo pleine largeur */
  #evenements,
  section#evenements {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }

  #evenements .uniform-copy,
  #evenements .uniform-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  #evenements .uniform-panel {
    display: block !important;
    padding: 12px !important;
  }

  #evenements .photo {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 240px !important;
    height: 240px !important;
    border-radius: 20px !important;
    background-size: cover !important;
    background-position: center !important;
  }
}

@media (max-width: 480px) {
  #evenements .photo {
    min-height: 210px !important;
    height: 210px !important;
  }
}


/* WORDPRESS PRO V2 */
.ft-front-admin-link-zone{position:fixed;top:0;right:0;width:84px;height:84px;z-index:9999;background:transparent}
.ft-hidden-login{position:fixed;inset:0;z-index:10000;display:none;place-items:center;background:rgba(3,13,29,.70);backdrop-filter:blur(12px);padding:20px}
.ft-hidden-login.open{display:grid}
.ft-login-card{width:min(420px,100%);background:rgba(255,255,255,.96);border-radius:28px;padding:28px;box-shadow:0 35px 100px rgba(0,0,0,.32)}
.ft-login-card h2{margin:0 0 8px;color:var(--heading-color,#071a33)}
.ft-login-card label{display:block;margin:14px 0 6px;font-weight:800;color:#334155}
.ft-login-card input{width:100%;height:46px;border:1px solid rgba(7,59,122,.18);border-radius:14px;padding:0 14px}
.ft-login-card button{width:100%;height:48px;margin-top:16px;border:0;border-radius:14px;background:var(--primary,#073b7a);color:white;font-weight:800;cursor:pointer}
.ft-login-card .ft-cancel{background:#eef2f7;color:#071a33}
.ft-admin-page{width:min(1080px,calc(100% - 32px));margin:130px auto 60px;background:#fff;border-radius:28px;padding:28px;box-shadow:0 20px 70px rgba(7,26,51,.12)}
.ft-admin-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.ft-admin-box{background:#f7fbff;border:1px solid rgba(7,59,122,.12);border-radius:22px;padding:20px}
.ft-admin-box label{display:block;margin:12px 0 6px;font-weight:800}
.ft-admin-box input[type=text],.ft-admin-box input[type=password],.ft-admin-box input[type=email],.ft-admin-box textarea{width:100%;border:1px solid rgba(7,59,122,.18);border-radius:12px;padding:11px 12px;font:inherit}
.ft-admin-box textarea{min-height:150px}
.ft-admin-submit{display:inline-flex;margin-top:22px;border:0;border-radius:999px;background:#ec1c35;color:white;padding:13px 22px;font-weight:850;cursor:pointer}
.ft-admin-success{padding:12px 14px;border-radius:14px;background:#e8f8ef;color:#0f7a3b;font-weight:800;margin-bottom:18px}
.ft-admin-error{padding:12px 14px;border-radius:14px;background:#fff0f0;color:#b42318;font-weight:800;margin-bottom:18px}
.ft-event-image-preview{width:100%;max-height:220px;object-fit:cover;border-radius:16px;margin-top:10px}
.ft-wp-admin-wrap{max-width:1180px}
.ft-wp-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.ft-wp-card{background:#fff;border:1px solid #dcdcde;border-radius:12px;padding:18px}
.ft-wp-card h2{margin-top:0}
.ft-wp-card label{display:block;font-weight:700;margin:12px 0 6px}
.ft-wp-card input[type=text],.ft-wp-card input[type=url],.ft-wp-card input[type=email],.ft-wp-card input[type=password],.ft-wp-card textarea,.ft-wp-card select{width:100%;max-width:100%}
.ft-wp-card textarea{min-height:95px}
.ft-wp-preview{max-width:180px;max-height:100px;display:block;object-fit:cover;margin-top:8px;border-radius:8px;border:1px solid #dcdcde}
@media(max-width:900px){.ft-admin-grid,.ft-wp-grid{grid-template-columns:1fr}.ft-admin-page{margin-top:100px}}


/* V3 — Customizer / compatibilité aperçu */
body.customize-partial-edit-shortcuts-shown .ft-front-admin-link-zone {
  display: none !important;
}

.wp-customizer .ft-front-admin-link-zone {
  display: none !important;
}

/* V4 — admin caché local / sous-dossier */
.ft-admin-page textarea{min-height:170px}
.ft-admin-page input[type="file"]{background:#fff;padding:10px;border-radius:12px;border:1px solid rgba(7,59,122,.18);width:100%;box-sizing:border-box}

/* V5 comptes admin application */
.ft-admin-page .ft-admin-box h2 { margin-top:0; }

/* V6 — partenaires */
.partners-section {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  border: 1px solid rgba(7,59,122,.11);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 20px 70px rgba(7,26,51,.10);
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  width: 100%;
}

.partner-logo-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 180px;
  height: 105px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,59,122,.10);
  border-radius: 20px;
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7,26,51,.14);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.ft-partner-admin-row {
  border-top: 1px solid rgba(7,59,122,.12);
  margin-top: 18px;
  padding-top: 18px;
}

.ft-partner-admin-row h3 {
  margin: 0 0 12px;
}

.ft-partner-admin-row input[type="number"] {
  width: 110px;
}

@media(max-width:900px) {
  .partners-row {
    flex-wrap: wrap;
  }

  .partner-logo-card {
    flex: 1 1 calc(50% - 18px);
    max-width: none;
  }
}

@media(max-width:480px) {
  .partner-logo-card {
    flex-basis: 100%;
  }
}


/* V7 — correction fermeture formulaire sur iPhone */
.contact-modal {
  z-index: 99990 !important;
}

.contact-modal-card {
  position: relative !important;
  z-index: 99991 !important;
}

.contact-modal-close {
  z-index: 99999 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent;
}

@media(max-width: 900px) {
  .contact-modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 30px !important;
  }
}
