/* ==========================================================================
   SXPRESS FESTIVAL 2026 — COMPONENT STYLES
   Specific UI component patterns for the brutal/acid design system
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COUNTDOWN
   -------------------------------------------------------------------------- */

.countdown {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  justify-content: center;
  align-items: flex-start;
}

.countdown-unit {
  text-align: center;
}

.countdown-number {
  font-family: "Akira Expanded", "Impact", sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  color: #BBFF00;
}

.countdown-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A8899;
  margin-top: 8px;
}

.countdown-separator {
  font-family: "Akira Expanded", "Impact", sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1;
  color: #7A8899;
  opacity: 0.4;
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   2. NEWSLETTER (overridden by responsive.css — keep minimal)
   -------------------------------------------------------------------------- */

/* Legacy base — all overridden in responsive.css */
.newsletter-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  background: transparent;
  border: 2px solid #333;
  color: #F5F5F0;
  font-family: "Space Grotesk", sans-serif;
  padding: 16px 24px;
  font-size: 16px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  width: 100%;
}

.newsletter-input::placeholder {
  color: #7A8899;
  opacity: 1;
}

.newsletter-input:focus {
  border-color: #BBFF00;
}

.newsletter-submit {
  background-color: #BBFF00;
  color: #0A0A0A;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid #BBFF00;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-size: 14px;
  border-radius: 0;
  -webkit-appearance: none;
  transition: background-color 0.3s, color 0.3s;
  box-sizing: border-box;
  width: 100%;
}

.newsletter-submit:hover {
  background-color: transparent;
  color: #BBFF00;
}

.newsletter-success {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: #BBFF00;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-error {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: #FF3333;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   3. LINEUP TABS
   -------------------------------------------------------------------------- */

.lineup-tabs {
  display: flex;
  gap: 0;
  border-bottom: 3px solid #1E1E1E;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lineup-tabs::-webkit-scrollbar {
  display: none;
}

.lineup-tab {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 24px;
  color: #7A8899;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.lineup-tab.is-active {
  color: #BBFF00;
}

.lineup-tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #BBFF00;
}

.lineup-tab:hover {
  color: #F5F5F0;
}

.lineup-panel {
  display: none;
}

.lineup-panel.is-active {
  display: block;
}

/* --------------------------------------------------------------------------
   4. GALLERY CAROUSEL
   -------------------------------------------------------------------------- */

.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  min-width: 80vw;
  scroll-snap-align: start;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.2);
  transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide:hover img {
  filter: grayscale(0%) contrast(1);
}

.gallery-nav {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.gallery-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #7A8899;
  background: transparent;
  color: #F5F5F0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  font-size: 18px;
}

.gallery-nav button:hover {
  border-color: #BBFF00;
  color: #BBFF00;
}

.gallery-counter {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: #7A8899;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   5. INFO BLOCKS
   -------------------------------------------------------------------------- */

.info-block {
  padding: 40px;
  background-color: #1E1E1E;
  border-left: 3px solid #BBFF00;
}

.info-block-title {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  color: #BBFF00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.info-block-content {
  color: #F5F5F0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.info-block-content a {
  color: #BBFF00;
  text-decoration: none;
  border-bottom: 1px solid rgba(187, 255, 0, 0.3);
  transition: border-color 0.3s;
}

.info-block-content a:hover {
  border-color: #BBFF00;
}

/* --------------------------------------------------------------------------
   6. PARTNER GRID
   -------------------------------------------------------------------------- */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
}

.partner-logo {
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
}

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

.partner-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A8899;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   7. BREADCRUMB
   -------------------------------------------------------------------------- */

.breadcrumb {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  color: #7A8899;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb a {
  color: #7A8899;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #BBFF00;
}

.breadcrumb .separator {
  margin: 0 8px;
  color: #1E1E1E;
}

.breadcrumb .current {
  color: #F5F5F0;
}

/* --------------------------------------------------------------------------
   8. SOCIAL ICONS
   -------------------------------------------------------------------------- */

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 2px solid #7A8899;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7A8899;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.social-link:hover {
  border-color: #BBFF00;
  color: #BBFF00;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   9. BADGE / TAG
   -------------------------------------------------------------------------- */

.badge {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid #7A8899;
  color: #7A8899;
  display: inline-block;
}

.badge-acid {
  border-color: #BBFF00;
  color: #BBFF00;
}

.badge-chrome {
  border-color: #C0C8D4;
  color: #C0C8D4;
}

.badge-filled {
  background-color: #BBFF00;
  border-color: #BBFF00;
  color: #0A0A0A;
}

/* --------------------------------------------------------------------------
   10. SCROLL INDICATOR
   -------------------------------------------------------------------------- */

.scroll-indicator {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A8899;
}

.scroll-indicator-arrow {
  width: 40px;
  height: 40px;
  color: #BBFF00;
  animation: bounce 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

.scroll-indicator.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* --------------------------------------------------------------------------
   RESPONSIVE — Component overrides
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .countdown-number {
    font-size: clamp(36px, 10vw, 48px);
  }
  .countdown-label {
    font-size: 10px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    width: 100%;
  }
  .newsletter-input:focus {
    border-color: #BBFF00;
  }
  .newsletter-submit {
    width: 100%;
  }
  .lineup-tab {
    padding: 12px 16px;
    font-size: 12px;
  }
  .gallery-slide {
    min-width: 85vw;
  }
  .info-block {
    padding: 24px;
  }
  .partner-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 24px;
  }
  .scroll-indicator {
    bottom: 16px;
  }
}

@media (min-width: 1024px) {
  .gallery-slide {
    min-width: 50vw;
  }
}

/* --------------------------------------------------------------------------
   TICKET CARDS — Billetterie section
   -------------------------------------------------------------------------- */

.ticket-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  max-width: 720px;
  margin: 0 auto;
}

.ticket-card {
  background: #0A0A0A;
  border: 2px solid #333;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticket-card:hover {
  border-color: #BBFF00;
  transform: translateY(-3px);
}

/* Card body — compact */
.ticket-card-body {
  padding: clamp(20px, 2.5vw, 32px) clamp(12px, 1.5vw, 20px);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ticket-card-name {
  font-family: "Akira Expanded", "Impact", sans-serif;
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  color: #F5F5F0;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}

.ticket-card-price {
  margin: 12px 0 0;
}

.ticket-card-amount {
  font-family: "Akira Expanded", "Impact", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #BBFF00;
  line-height: 1;
}

/* CTA button */
.ticket-card-btn {
  display: block;
  padding: 14px;
  background: #111;
  color: #BBFF00;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-top: 1px solid #222;
  transition: background 0.3s ease, color 0.3s ease;
}

.ticket-card-btn:hover {
  background: #BBFF00;
  color: #0A0A0A;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ticket-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

/* --------------------------------------------------------------------------
   BILLETTERIE PAGE — Delta-style tabbed layout
   -------------------------------------------------------------------------- */

/* ── Pill tab navigation (v2) ── */
.billet-tabs-v2 {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 4vw, 60px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0A0A0A;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.billet-tabs-v2::-webkit-scrollbar { display: none; }

.billet-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px clamp(18px, 2.5vw, 28px);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7A8899;
  text-decoration: none;
  border: 1px solid #2A2A2A;
  background: transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.billet-pill__icon {
  font-size: 0.75rem;
  line-height: 1;
}

.billet-pill:hover {
  color: #F5F5F0;
  border-color: #555;
}

.billet-pill.is-active {
  color: #0A0A0A;
  background: #BBFF00;
  border-color: #BBFF00;
}

.billet-pill.is-active .billet-pill__icon {
  color: #0A0A0A;
}

/* ── Sections ── */
.billet-section {
  display: none;
  padding: clamp(24px, 3vh, 40px) 0;
}

.billet-section.is-active {
  display: block;
}

.billet-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ── Large frame (Weezevent-style) ── */
.billet-frame {
  border: 2px solid #222;
  background: #111;
  overflow: hidden;
}

.billet-frame--vip {
  border-color: #C0C8D4;
  background: linear-gradient(180deg, rgba(192, 200, 212, 0.04) 0%, #111 100%);
}

.billet-frame__head {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px) clamp(20px, 3vw, 32px);
  border-bottom: 1px solid #222;
  text-align: center;
}

.billet-frame__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: #F5F5F0;
  line-height: 1;
  margin: 0 0 8px;
}

.billet-frame--vip .billet-frame__title {
  color: #C0C8D4;
}

.billet-frame__sub {
  font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
  letter-spacing: 0.1em;
  margin: 0;
}

.billet-frame__body {
  padding: 0;
}

.billet-frame__body--pay {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  text-align: center;
}

/* ── Option row inside frame ── */
.billet-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 32px) clamp(24px, 3vw, 40px);
  border-bottom: 1px solid #1A1A1A;
  transition: background 0.3s ease;
}

.billet-option:last-child {
  border-bottom: none;
}

.billet-option:hover {
  background: rgba(187, 255, 0, 0.03);
}

.billet-option--pop {
  background: rgba(187, 255, 0, 0.04);
}

.billet-option--vip:hover {
  background: rgba(192, 200, 212, 0.04);
}

.billet-option__left {
  flex: 1;
  min-width: 0;
}

.billet-option__badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #BBFF00;
  margin-bottom: 6px;
}

.billet-option__badge--pop {
  background: rgba(187, 255, 0, 0.12);
  padding: 3px 10px;
  color: #BBFF00;
}

.billet-option__badge--vip {
  color: #C0C8D4;
  background: rgba(192, 200, 212, 0.1);
  padding: 3px 10px;
}

.billet-option__name {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #F5F5F0;
  margin: 0 0 4px;
}

.billet-option__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
  color: #7A8899;
}

.billet-option__features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.8125rem;
  color: #7A8899;
  line-height: 1.8;
}

.billet-option__features li::before {
  content: "— ";
  color: #C0C8D4;
}

.billet-option__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-left: 24px;
  flex-shrink: 0;
}

.billet-option__price {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #BBFF00;
  line-height: 1;
}

.billet-option__price--vip {
  color: #C0C8D4;
}

.billet-option__cta {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #BBFF00;
  border: 1px solid #BBFF00;
  text-decoration: none;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.billet-option__cta:hover {
  background: #BBFF00;
  color: #0A0A0A;
}

.billet-option__cta--vip {
  color: #C0C8D4;
  border-color: #C0C8D4;
}

.billet-option__cta--vip:hover {
  background: #C0C8D4;
  color: #0A0A0A;
}

/* Paiement 3x section */
.paiement-block {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.paiement-icon {
  margin-bottom: 24px;
}

.paiement-title {
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #F5F5F0;
  margin: 0 0 12px;
}

.paiement-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.paiement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.paiement-step {
  text-align: center;
}

.paiement-step-num {
  width: 48px;
  height: 48px;
  border: 2px solid #BBFF00;
  color: #BBFF00;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.paiement-step p {
  font-size: 0.8125rem;
  color: #C0C8D4;
  margin: 0;
  line-height: 1.4;
}

/* (age notice removed) */

/* FAQ section */
.billet-faq-section {
  padding: clamp(40px, 6vh, 80px) 0 clamp(60px, 8vh, 100px);
  border-top: 1px solid #1E1E1E;
}

.billet-faq-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.billet-faq-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  color: #F5F5F0;
  line-height: 1.1;
  margin: 0;
}

/* FAQ sub-tabs */
.billet-faq-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: clamp(20px, 3vw, 40px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.billet-faq-tabs::-webkit-scrollbar { display: none; }

.billet-faq-tab {
  padding: 14px clamp(16px, 2.5vw, 28px);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A8899;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.billet-faq-tab:hover {
  color: #F5F5F0;
}

.billet-faq-tab.is-active {
  color: #BBFF00;
  border-bottom-color: #BBFF00;
}

.billet-faq-panel {
  display: none;
}

.billet-faq-panel.is-active {
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .billet-tabs-v2 {
    gap: 8px;
    padding: 16px 12px;
    flex-wrap: nowrap;
  }

  .billet-pill {
    padding: 10px 14px;
    font-size: 0.5625rem;
    gap: 5px;
  }

  .billet-pill__icon {
    display: none;
  }

  .billet-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .billet-option__right {
    margin-left: 0;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .paiement-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 240px;
    margin: 0 auto;
  }

  .billet-faq-tab {
    padding: 12px 10px;
    font-size: 0.5625rem;
  }
}

/* --------------------------------------------------------------------------
   PARTNERS PAGE – Delta Festival style tiers
   -------------------------------------------------------------------------- */

.partenaires-page {
  padding: clamp(40px, 6vh, 80px) 0 clamp(60px, 8vh, 100px);
}

.partenaires-tier {
  max-width: 1100px;
  margin: 0 auto clamp(48px, 7vh, 80px);
  padding: 0 clamp(20px, 4vw, 60px);
}

.partenaires-tier__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.partenaires-tier__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #7A8899;
  margin-bottom: 6px;
}

.partenaires-tier__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: #BBFF00;
  line-height: 1;
  margin: 0;
}

/* Logo grids – 3 size variants */
.partenaires-tier__grid {
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  justify-items: center;
}

.partenaires-tier__grid--lg {
  grid-template-columns: repeat(3, 1fr);
}

.partenaires-tier__grid--md {
  grid-template-columns: repeat(3, 1fr);
}

.partenaires-tier__grid--sm {
  grid-template-columns: repeat(4, 1fr);
}

/* Logo card */
.partenaires-logo-card {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.partenaires-logo-card__inner {
  background: #111;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  padding: 20px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.partenaires-logo-card:hover .partenaires-logo-card__inner {
  border-color: #BBFF00;
  background: rgba(187, 255, 0, 0.04);
}

.partenaires-logo-card:hover {
  transform: translateY(-4px);
}

.partenaires-logo-card__inner img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partenaires-logo-card:hover .partenaires-logo-card__inner img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.partenaires-logo-card__placeholder {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: uppercase;
}

/* Grid size: --lg cards are bigger */
.partenaires-tier__grid--lg .partenaires-logo-card__inner {
  aspect-ratio: 3 / 2;
  padding: 28px;
}

.partenaires-tier__grid--sm .partenaires-logo-card__inner {
  aspect-ratio: 16 / 10;
  padding: 16px;
}

/* CTA Section */
.partenaires-cta-section {
  position: relative;
  padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 60px);
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partenaires-cta-wrap {
  max-width: 700px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partenaires-cta__title {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #0A0A0A;
  line-height: 1;
  margin: 0 auto clamp(12px, 2vw, 20px);
  text-align: center !important;
  display: block;
  width: 100%;
}

.partenaires-cta__desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #0A0A0A;
  margin: 0 0 clamp(20px, 3vw, 32px);
}

.partenaires-cta__btn {
  display: inline-block;
  padding: 16px 44px;
  background: #0A0A0A;
  color: #BBFF00;
  border: 2px solid #0A0A0A;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.partenaires-cta__btn:hover {
  background: transparent;
  color: #0A0A0A;
}

/* ── Partner inline form section ── */
.partner-form-section {
  position: relative;
}

.partner-form-header {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-top: clamp(40px, 6vw, 80px);
}

.partner-form-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #BBFF00;
  line-height: 1;
  margin: 0;
}

/* Close button — top-right of section, outside the form container */
.partner-form-close {
  position: absolute;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  background: none;
  border: 2px solid #BBFF00;
  color: #BBFF00;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
}

.partner-form-close:hover {
  background: #BBFF00;
  color: #0A0A0A;
}

/* ── Legacy partner modal (kept for compatibility) ── */
.partner-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.partner-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.partner-modal__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.partner-modal__box {
  position: relative;
  background: #0A0A0A;
  border: 2px solid #222;
  width: 90vw;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-modal.is-open .partner-modal__box {
  transform: translateY(0);
}

.partner-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #7A8899;
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  padding: 4px 8px;
}

.partner-modal__close:hover {
  color: #BBFF00;
}

.partner-modal__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #BBFF00;
  margin: 0 0 clamp(20px, 3vw, 32px);
  line-height: 1;
}

/* Reuse .contact-form / .contact-input styles inside modal */
.partner-modal .contact-submit {
  margin-top: 8px;
}

/* Partners mobile responsive */
@media (max-width: 768px) {
  .partenaires-tier__grid--lg {
    grid-template-columns: repeat(2, 1fr);
  }
  .partenaires-tier__grid--md {
    grid-template-columns: repeat(2, 1fr);
  }
  .partenaires-tier__grid--sm {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partenaires-tier__grid--lg,
  .partenaires-tier__grid--md,
  .partenaires-tier__grid--sm {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* --------------------------------------------------------------------------
   CONTACT FORM
   -------------------------------------------------------------------------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A8899;
}

.contact-input {
  background: #111;
  border: 1px solid #333;
  color: #F5F5F0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-input:focus {
  border-color: #BBFF00;
}

.contact-input::placeholder {
  color: #555;
}

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

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  background: #BBFF00;
  color: #0A0A0A;
  border: 2px solid #BBFF00;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-submit:hover {
  background: transparent;
  color: #BBFF00;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-feedback {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  padding: 14px 16px;
  text-align: center;
  margin-top: 4px;
}

.contact-feedback--ok {
  background: rgba(187, 255, 0, 0.1);
  border: 1px solid rgba(187, 255, 0, 0.3);
  color: #BBFF00;
}

.contact-feedback--err {
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.3);
  color: #ff5555;
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── Ville de Fréjus ─── */
.frejus-page {
  padding: clamp(48px, 8vh, 100px) clamp(20px, 5vw, 48px);
}
.frejus-block {
  max-width: 680px;
  margin: 0 auto clamp(48px, 7vh, 72px);
  text-align: center;
}
.frejus-h2 {
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 1.2em;
  color: #F5F5F0;
  text-align: center;
}
.frejus-h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 1em;
  color: #F5F5F0;
  text-align: center;
}
.frejus-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: #C0C8D4;
  margin-bottom: 0.8em;
  text-align: center;
}
.frejus-body {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.85;
  color: #C0C8D4;
  margin-bottom: 0.75em;
  text-align: center;
}

/* Card */
.frejus-card {
  background: rgba(187,255,0,.04);
  border: 1px solid rgba(187,255,0,.12);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}
.frejus-card-h {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  margin-bottom: 1em;
  text-align: center;
}
.frejus-info-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(192,200,212,.1);
  border-radius: 6px;
  padding: clamp(16px, 3vw, 28px);
  margin: 1.2em 0;
  text-align: center;
}
.frejus-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #BBFF00;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.frejus-hours {
  list-style: none;
  padding: 0; margin: 0;
  display: inline-block;
  text-align: left;
}
.frejus-hours li {
  font-size: 0.92rem;
  color: #C0C8D4;
  padding: 0.35em 0;
  line-height: 1.6;
}
.frejus-link {
  color: #BBFF00;
  text-decoration: none;
  transition: opacity .2s;
}
.frejus-link:hover { opacity: .75; }

/* Useful links */
.frejus-useful-links {
  list-style: none;
  padding: 0; margin: 0;
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 480px;
}
.frejus-useful-links a {
  display: block;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  color: #BBFF00;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(187,255,0,.1);
  transition: border-color .2s, padding-left .2s;
}
.frejus-useful-links a:hover {
  border-color: #BBFF00;
  padding-left: 8px;
}
@media (max-width: 768px) {
  .frejus-h2 { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .frejus-card { padding: 20px; }
  .frejus-useful-links { max-width: 100%; }
}
