/* =============================================
   TC CHEVAL BLANC v2 — BOLD & YOUNG DESIGN
   ============================================= */
:root {
  --clay: #E8552A;
  --clay-dark: #B33D18;
  --green: #1A5C2F;
  --green-light: #2E8B4A;
  --yellow: #F5C518;
  --dark: #0D0D0D;
  --dark2: #1A1A1A;
  --mid: #2A2A2A;
  --light: #F2F0EB;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --muted: #888;
  --r: 12px;
  --r-lg: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
  --t: 0.35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
.noise {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 3px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1, h2 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
.outlined {
  -webkit-text-stroke: 2px var(--clay);
  color: transparent;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--clay);
}
.section-h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--dark);
  margin-bottom: 24px;
}

/* ── BUTTONS ── */
.cta-main {
  display: inline-block;
  padding: 14px 28px;
  background: var(--clay);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 4px 4px 0 var(--clay-dark);
}
.cta-main:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--clay-dark);
}
.cta-main:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--clay-dark); }
.cta-big { padding: 18px 40px; font-size: 1.1rem; }
.cta-sec {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
}
.cta-sec:hover { border-color: white; background: rgba(255,255,255,0.1); }
.cta-danger {
  display: inline-block;
  padding: 12px 24px;
  background: #e53935;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 3px 3px 0 #b71c1c;
}
.cta-danger:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #b71c1c; }

.pill-btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--dark);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.pill-btn:hover { background: var(--clay); }
.pill-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--mid);
}
.pill-ghost:hover { background: var(--dark); color: white; border-color: var(--dark); }
.w-full { width: 100%; }

/* ── REVEAL ANIMATIONS ── */
#homeSection [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
#homeSection [data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ==============================================
   NAVBAR
   ============================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.nav.solid {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: white; flex-shrink: 0;
}
.logo-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  background: var(--clay);
  color: white;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  line-height: 1;
}
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.lw-top { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; font-weight: 500; }
.lw-bottom { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.08em; }
.logo-ball-emoji { font-size: 1.2rem; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a.active::after { transform: scaleX(1); }
.nav-admin { color: var(--yellow) !important; font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-login {
  padding: 9px 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
}
.btn-login:hover { background: rgba(255,255,255,0.15); color: white; }
.btn-logout { border-color: rgba(232,85,42,0.4); color: var(--clay); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 850;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-link { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: white; text-decoration: none; letter-spacing: 0.05em; transition: color 0.3s; }
.mm-link:hover { color: var(--clay); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .btn-login { display: none; }
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Scrolling track */
.hero-track {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255,255,255,0.03);
  animation: trackScroll 20s linear infinite;
  white-space: nowrap;
}
.ht-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  padding: 0 32px;
  flex-shrink: 0;
}
.ht-item.accent { color: var(--clay); opacity: 0.6; padding: 0 8px; }
@keyframes trackScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 40px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.2s both;
}
.hb-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero-title {
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.88;
  color: white;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s 0.35s both;
}
.ht-huge { display: block; }
.ht-sub {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.ht-sub em { color: var(--clay); font-style: normal; font-weight: 600; }
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.7s 0.5s both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.65s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Decorative elements */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hd-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--clay) 0%, transparent 70%);
  opacity: 0.08;
}
.hc1 { width: 700px; height: 700px; right: -200px; top: -100px; animation: floatOrb 9s ease-in-out infinite; }
.hc2 { width: 400px; height: 400px; right: 10%; bottom: 0; background: radial-gradient(circle, var(--green) 0%, transparent 70%); opacity: 0.1; animation: floatOrb 7s ease-in-out infinite reverse; }
.hd-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.hr1 { width: 500px; height: 500px; right: 5%; top: 10%; animation: spin 40s linear infinite; }
.hr2 { width: 300px; height: 300px; right: 20%; top: 25%; animation: spin 30s linear infinite reverse; }
.hd-stripe {
  position: absolute;
  width: 1px;
  background: rgba(255,255,255,0.04);
}
.hs1 { height: 100%; left: 30%; top: 0; }
.hs2 { height: 100%; right: 30%; top: 0; }
.hd-ball {
  position: absolute;
  font-size: 3rem;
  opacity: 0.06;
  animation: floatBall 7s ease-in-out infinite;
}
.hb1 { right: 15%; top: 20%; animation-delay: 0s; }
.hb2 { right: 30%; bottom: 20%; font-size: 5rem; animation-delay: -3s; }
.hb3 { right: 8%; bottom: 35%; font-size: 2rem; animation-delay: -5s; }
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}
@keyframes floatBall {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(20deg); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 48px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: fadeInUp 0.7s 1s both;
}
.hero-scroll-hint span:first-child {
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==============================================
   STATS STRIP
   ============================================== */
.stats-strip {
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.ss-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 48px;
  position: relative;
}
.ss-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: white;
  line-height: 1;
}
.ss-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ss-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.25);
  padding: 0 8px;
}
@media (max-width: 640px) {
  .stats-strip { gap: 0; }
  .ss-item { padding: 24px 24px; }
  .ss-sep { display: none; }
}

/* ==============================================
   ABOUT
   ============================================== */
.about { padding: 100px 0; background: var(--light); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ac-card {
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: transform 0.3s;
}
.ac-card:hover { transform: translateY(-5px) rotate(-1deg); }
.ac-green { background: var(--green); color: white; }
.ac-clay { background: var(--clay); color: white; }
.ac-dark { background: var(--dark); color: white; }
.ac-yellow { background: var(--yellow); color: var(--dark); }
.ac-emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.ac-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.ac-card p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* ==============================================
   VIDEO
   ============================================== */
.video-sec {
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.video-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.video-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: white;
  margin-bottom: 56px;
  line-height: 0.9;
}
.vt-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.4);
  color: transparent;
}
.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.video-frame {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.vf-deco {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(232,85,42,0.25);
  pointer-events: none;
}
.vf1 { width: 100px; height: 100px; top: -25px; left: -25px; }
.vf2 { width: 60px; height: 60px; bottom: -15px; right: -15px; }

/* ==============================================
   COURTS
   ============================================== */
.courts-sec { padding: 100px 0; background: white; }
.courts-top {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px; gap: 16px;
}
.courts-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-light);
}
.status-dot {
  width: 10px; height: 10px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.courts-list { display: flex; gap: 16px; flex-wrap: wrap; }
.cl-card {
  flex: 1; min-width: 200px;
  border: 2px solid var(--dark);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  cursor: default;
}
.cl-card:hover {
  background: var(--dark);
  color: white;
}
.cl-big { flex: 1.5; background: var(--clay); border-color: var(--clay); color: white; }
.cl-big:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.clc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  opacity: 0.25;
}
.cl-big .clc-num { opacity: 0.35; color: white; }
.clc-info strong { font-size: 1.1rem; font-weight: 700; }
.clc-info span { font-size: 0.85rem; opacity: 0.65; display: block; margin-top: 4px; }
.clc-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  padding: 4px 10px; border-radius: 100px;
}
.cl-card:not(.cl-big) .clc-tag { background: rgba(0,0,0,0.06); }
.cl-card:not(.cl-big):hover .clc-tag { background: rgba(255,255,255,0.1); color: white; }

/* ==============================================
   SEASON CALL
   ============================================== */
.season-call {
  background: var(--green);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sc-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  max-width: 600px; margin: 0 auto;
}
.sc-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white; line-height: 1;
}
.sc-content h2 em { color: var(--yellow); font-style: normal; }
.sc-content p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.sc-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(30vw, 280px);
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* ==============================================
   CONTACT
   ============================================== */
.contact-sec { padding: 100px 0; background: var(--light); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 16px; }
.citem { display: flex; align-items: flex-start; gap: 16px; }
.ci-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.citem strong { display: block; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.citem p { color: #555; font-size: 0.95rem; line-height: 1.6; }
.citem a { color: var(--clay); text-decoration: none; }
.citem a:hover { text-decoration: underline; }
.contact-map {
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
}
.contact-map iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-map { height: 300px; }
}

/* ==============================================
   FOOTER
   ============================================== */
.footer { background: var(--dark); padding: 60px 0 28px; }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.1em; color: white;
}
.footer-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.footer-links-grid {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
}
.footer-links-grid a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem; text-decoration: none;
  transition: color 0.3s;
}
.footer-links-grid a:hover { color: var(--clay); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ==============================================
   PAGE HERO (Blog / Admin)
   ============================================== */
.page-hero {
  background: var(--dark);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.blog-hero { border-bottom: 3px solid var(--clay); }
.admin-hero { border-bottom: 3px solid var(--yellow); }
.ph-content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; }
.ph-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 12px;
}
.admin-hero .ph-eyebrow { color: var(--yellow); }
.ph-title {
  font-size: clamp(4rem, 10vw, 8rem);
  color: white; line-height: 0.9;
}
.ph-deco {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: min(20vw, 200px);
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none;
}

/* ==============================================
   BLOG
   ============================================== */
.blog-main { padding: 60px 0 100px; }
.blog-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.bf-btn {
  padding: 9px 20px;
  background: white;
  border: 2px solid var(--dark);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 3px 3px 0 var(--dark);
}
.bf-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--dark); }
.bf-btn.active {
  background: var(--dark); color: white;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--clay);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-loading {
  grid-column: 1/-1;
  text-align: center; padding: 80px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  color: var(--muted);
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(232,85,42,0.2);
  border-top-color: var(--clay);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.blog-card {
  background: white;
  border: 2px solid var(--dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  box-shadow: 5px 5px 0 var(--dark);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--clay); }

.bc-cover {
  background: var(--dark);
  padding: 40px;
  text-align: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.bc-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,85,42,0.15) 0%, transparent 60%);
}
.bc-cat {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--clay); color: white;
  padding: 4px 10px; border-radius: 4px;
}
.bc-cat.cat-club { background: var(--green); }
.bc-cat.cat-evenement { background: var(--clay); }
.bc-cat.cat-administratif { background: #555; }

.bc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bc-meta { display: flex; align-items: center; gap: 10px; }
.bc-date { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.bc-body h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; color: var(--dark); }
.bc-body p { font-size: 0.88rem; color: #666; line-height: 1.65; flex: 1; }
.bc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.bc-tag {
  font-size: 0.7rem; font-weight: 600;
  background: var(--light); color: var(--muted);
  padding: 3px 10px; border-radius: 4px;
}
.bc-read { font-size: 0.85rem; font-weight: 700; color: var(--clay); margin-top: 8px; }

/* ==============================================
   POST DETAIL
   ============================================== */
.post-back {
  background: var(--dark);
  padding: 100px 24px 24px;
}
.back-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
}
.back-btn:hover { color: var(--clay); }
.post-content {
  padding: 60px 24px 100px;
  max-width: 780px;
}
.post-cover-big { font-size: 5rem; margin-bottom: 24px; }
.post-meta {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.post-cat-badge {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--clay); color: white;
  padding: 5px 12px; border-radius: 4px;
}
.post-date { font-size: 0.85rem; color: var(--muted); }
.post-author { font-size: 0.85rem; color: var(--muted); }
.post-title-big {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 32px;
  border-bottom: 3px solid var(--clay);
  padding-bottom: 24px;
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.post-body p { margin-bottom: 20px; }
.post-tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid #e5e5e5; }
.post-tag {
  font-size: 0.78rem; font-weight: 600;
  background: var(--light); color: #666;
  padding: 4px 12px; border-radius: 4px;
  border: 1px solid #ddd;
}

/* ==============================================
   ADMIN
   ============================================== */
.admin-main { padding: 60px 0 100px; }
.admin-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.admin-h2 { font-size: 1.6rem; font-weight: 700; }
.admin-posts { display: flex; flex-direction: column; gap: 14px; }
.ap-row {
  background: white;
  border: 2px solid var(--dark);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 4px 4px 0 var(--dark);
  transition: var(--t);
}
.ap-row:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--clay); }
.ap-emoji { font-size: 2rem; flex-shrink: 0; }
.ap-info { flex: 1; min-width: 0; }
.ap-info strong { font-size: 1rem; font-weight: 700; display: block; }
.ap-info span { font-size: 0.82rem; color: var(--muted); }
.ap-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ap-btn {
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  border-radius: 6px; border: none;
  cursor: pointer; transition: var(--t);
}
.ap-edit { background: var(--dark); color: white; }
.ap-edit:hover { background: var(--green); }
.ap-del { background: #fee; color: #c33; border: 1px solid #fcc; }
.ap-del:hover { background: #c33; color: white; }

/* ==============================================
   MODALS
   ============================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: var(--r-lg);
  padding: 40px;
  width: 100%; max-width: 520px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.post-modal { max-width: 700px; }
.delete-modal { max-width: 380px; text-align: center; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--muted); transition: color 0.3s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close:hover { color: var(--clay); background: rgba(232,85,42,0.08); }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.modal-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px; }
.modal p { color: #666; margin-bottom: 28px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; margin-top: 24px; }
.delete-modal .modal-actions { justify-content: center; }
.login-error {
  color: #e53935; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 12px;
  min-height: 20px;
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(232,85,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg-full { grid-column: 1 / -1; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--dark); color: white;
  padding: 14px 22px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-xl);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
  z-index: 2000;
  border-left: 4px solid var(--clay);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--green-light); }
.toast.error { border-color: #e53935; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 640px) {
  .hero-main { padding: 40px 24px 32px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .ap-actions { width: 100%; }
  .modal { padding: 28px 20px; }
  .courts-list { flex-direction: column; }
  .cl-big { flex: 1; }
}

/* =============================================
   ADDITIONS v3 — Logo, Commandements, École
   ============================================= */

/* ── NAV LOGO IMAGE ── */
.nav-logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.08) rotate(-3deg); }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.lw-top { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; font-weight: 500; color: white; }
.lw-bottom { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.08em; color: white; }
.nav.solid .lw-top, .nav.solid .lw-bottom { color: white; }

/* ── HERO LOGO ── */
.hero-logo-wrap {
  margin-bottom: 28px;
  animation: fadeInUp 0.7s 0.1s both;
}
.hero-logo-img {
  width: 120px; height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: heroLogoBob 4s ease-in-out infinite;
}
@keyframes heroLogoBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── HERO ACCENT LINE ── */
.ht-accent-line {
  -webkit-text-stroke: 3px rgba(232,85,42,0.8);
  color: transparent;
}

/* ── ABOUT CTAS ── */
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ── CMD TEASER ── */
.cmd-teaser {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}
.cmd-teaser-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 40px 24px;
  border-top: 3px solid var(--clay);
  border-bottom: 3px solid var(--clay);
  flex-wrap: wrap;
  max-width: 1160px; margin: 0 auto;
}
.cti-left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cti-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; line-height: 1;
  color: var(--clay);
  text-shadow: 0 0 40px rgba(232,85,42,0.4);
}
.cti-label { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }
.cti-center { flex: 1; min-width: 200px; }
.cti-preview { font-size: 0.95rem; color: rgba(255,255,255,0.45); font-style: italic; line-height: 1.6; }

/* ── PAGE HERO ADDITIONS ── */
.ph-sub { color: rgba(255,255,255,0.55); font-size: 1rem; margin-top: 12px; }
.ph-logo {
  position: absolute; right: 60px; bottom: -20px;
  width: 160px; height: 160px;
  object-fit: contain;
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
}
.outlined-light {
  -webkit-text-stroke: 3px rgba(255,255,255,0.5);
  color: transparent;
}
.outlined-gold {
  -webkit-text-stroke: 3px var(--yellow);
  color: transparent;
}

/* ── PAGE HEROES ── */
.cmd-hero { background: linear-gradient(135deg, #0D0D0D 0%, #1a0800 60%, #2d1100 100%); }
.ecole-hero { background: linear-gradient(135deg, #0D0D0D 0%, #001a0d 60%, #002d15 100%); }
.blog-hero { border-bottom: 3px solid var(--clay); }
.admin-hero { border-bottom: 3px solid var(--yellow); }

/* ══════════════════════════════════════
   10 COMMANDEMENTS
   ══════════════════════════════════════ */
.cmd-section { padding: 80px 0 100px; background: #ffffff; color: #1A1A1A; }

.cmd-intro {
  max-width: 680px; margin: 0 auto 64px;
  text-align: center;
}
.cmd-intro p { font-size: 1.1rem; color: #555; line-height: 1.75; }

.cmd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.cmd-card {
  background: white;
  border: 2px solid var(--dark);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; align-items: flex-start; gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--dark);
  transition: var(--t);
}
.cmd-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--clay);
  border-color: var(--clay);
}
.cmd-card:nth-child(5n+1):hover { box-shadow: 7px 7px 0 var(--clay); }
.cmd-card:nth-child(5n+2):hover { box-shadow: 7px 7px 0 var(--green); border-color: var(--green); }
.cmd-card:nth-child(5n+3):hover { box-shadow: 7px 7px 0 var(--yellow); border-color: var(--yellow); }

.cmd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; line-height: 1;
  color: var(--clay);
  opacity: 0.25;
  flex-shrink: 0;
  min-width: 54px;
  transition: opacity 0.3s;
}
.cmd-card:hover .cmd-num { opacity: 0.6; }

.cmd-body { flex: 1; }
.cmd-body h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--dark); margin-bottom: 8px; line-height: 1.3;
}
.cmd-body p { font-size: 0.88rem; color: #666; line-height: 1.65; }

.cmd-icon {
  font-size: 1.8rem; flex-shrink: 0;
  opacity: 0.4; transition: opacity 0.3s, transform 0.3s;
}
.cmd-card:hover .cmd-icon { opacity: 1; transform: scale(1.15) rotate(-5deg); }

/* Commandement #10 — featured full-width */
.cmd-card:last-child {
  grid-column: 1 / -1;
  background: var(--dark);
  border-color: var(--clay);
  box-shadow: 6px 6px 0 var(--clay);
}
.cmd-card:last-child .cmd-num { color: var(--yellow); opacity: 0.4; font-size: 4rem; }
.cmd-card:last-child .cmd-body h3 { color: white; font-size: 1.2rem; }
.cmd-card:last-child .cmd-body p { color: rgba(255,255,255,0.6); }
.cmd-card:last-child .cmd-icon { opacity: 0.6; }
.cmd-card:last-child:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--yellow); border-color: var(--yellow); }

.cmd-footer-cta {
  display: flex; align-items: center; gap: 32px;
  background: white; border: 2px solid var(--dark);
  border-radius: var(--r-lg); padding: 40px;
  box-shadow: 6px 6px 0 var(--dark);
  flex-wrap: wrap;
}
.cmd-footer-logo { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.cmd-footer-cta > div { flex: 1; min-width: 200px; }
.cmd-footer-cta h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.cmd-footer-cta p { font-size: 0.9rem; color: #666; }

/* ══════════════════════════════════════
   ÉCOLE DE TENNIS
   ══════════════════════════════════════ */
.ecole-section { padding: 80px 0 100px; background: #ffffff; color: #1A1A1A; }

.ecole-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  margin-bottom: 80px;
}
.ecole-intro-text p { color: #555; line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.ecole-intro-text p strong { color: var(--dark); }

.ecole-contact-box {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-top: 28px;
  border-left: 4px solid var(--green-light);
}
.ecole-eyebrow {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 8px;
}
.ecole-contact-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: white; margin-bottom: 16px; letter-spacing: 0.05em;
}
.ecole-contact-links { display: flex; flex-direction: column; gap: 10px; }
.ecole-link {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.9rem; transition: color 0.3s;
}
.ecole-link:hover { color: var(--green-light); }
.ecole-fb { color: #4267B2 !important; }
.ecole-fb:hover { color: #5b7bd5 !important; }

.ecole-intro-visual {
  display: flex; flex-direction: column; gap: 24px;
}
.ecole-profs-badge {
  background: var(--green);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  border: 2px solid var(--dark);
  box-shadow: 6px 6px 0 var(--dark);
}
.epb-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem; line-height: 1; color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.epb-label { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; }

.ecole-features {
  display: flex; flex-direction: column; gap: 12px;
}
.ef-item {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 2px solid #eee;
  border-radius: 10px; padding: 14px 18px;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  transition: var(--t);
}
.ef-item:hover { border-color: var(--green); transform: translateX(4px); }
.ef-item span { font-size: 1.2rem; }

/* LEVELS */
.ecole-levels { margin-bottom: 60px; }
.ecole-levels-title {
  font-size: 1.5rem; font-weight: 800;
  margin-bottom: 28px; color: var(--dark);
}
.ecole-levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.el-card {
  border-radius: var(--r-lg);
  padding: 32px 24px;
  border: 2px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  transition: var(--t);
  cursor: default;
}
.el-card:hover { transform: translate(-3px,-3px); }
.el-mini { background: #fff8e6; border-color: #f0c040; }
.el-mini:hover { box-shadow: 6px 6px 0 #f0c040; }
.el-enfant { background: #e8f5e9; border-color: var(--green); }
.el-enfant:hover { box-shadow: 6px 6px 0 var(--green); }
.el-ado { background: #fdecea; border-color: var(--clay); }
.el-ado:hover { box-shadow: 6px 6px 0 var(--clay); }
.el-adulte { background: var(--dark); border-color: var(--clay); color: white; }
.el-adulte:hover { box-shadow: 6px 6px 0 var(--clay); }
.el-icon { font-size: 2.5rem; margin-bottom: 12px; }
.el-age { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.55; margin-bottom: 8px; }
.el-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.el-card p { font-size: 0.85rem; opacity: 0.7; line-height: 1.6; }
.el-adulte h4 { color: white; }
.el-adulte p { color: rgba(255,255,255,0.65); }

/* ECOLE CTA BANNER */
.ecole-cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: var(--r-lg);
  padding: 48px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border: 2px solid var(--dark);
  box-shadow: 6px 6px 0 var(--dark);
}
.ecb-content h3 { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 6px; }
.ecb-content p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.ecb-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* FOOTER LOGO */
.footer-logo-img { width: 48px; height: 48px; object-fit: contain; }

/* MODAL LOGO */
.modal-logo { width: 80px; height: 80px; object-fit: contain; display: block; margin: 0 auto 16px; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .ecole-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .ph-logo { display: none; }
  .cmd-footer-cta { flex-direction: column; }
}
@media (max-width: 640px) {
  .cmd-grid { grid-template-columns: 1fr; }
  .cmd-card:last-child { grid-column: auto; }
  .ecole-cta-banner { flex-direction: column; }
  .ecb-actions { width: 100%; }
  .cti-number { font-size: 3.5rem; }
  .hero-logo-img { width: 90px; height: 90px; }
}

/* ── FORCE READABLE COLORS in cmd + ecole ── */
.cmd-section .section-eyebrow { color: #E8552A; }
.cmd-section h2, .cmd-section h3, .cmd-section strong { color: #0D0D0D; }
.cmd-section p { color: #555555; }
.cmd-intro p { color: #444444 !important; }
.cmd-body h3 { color: #0D0D0D !important; }
.cmd-body p { color: #555555 !important; }
.cmd-num { color: #E8552A !important; }

.ecole-section .section-eyebrow { color: #E8552A; }
.ecole-section h2, .ecole-section h3, .ecole-section h4, .ecole-section strong { color: #0D0D0D; }
.ecole-section p { color: #555555; }
.ecole-intro-text p { color: #555555 !important; }
.ecole-levels-title { color: #0D0D0D !important; }
.el-card h4 { color: #0D0D0D; }
.el-card p { color: #555555; }
.el-adulte h4 { color: #ffffff !important; }
.el-adulte p { color: rgba(255,255,255,0.75) !important; }

/* ── DROPDOWN NAV ── */
.nav-dropdown { position: relative; }
.nav-drop-toggle { cursor: pointer; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 100;
}
.nav-dropdown:hover .nav-drop-menu { display: block; }
.nav-drop-menu li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.88rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-drop-menu li a::after { display: none !important; }
.nav-drop-menu li a:hover { background: rgba(232,85,42,0.15); color: #E8552A !important; }

/* section visibility now handled by .sec-hidden class */

/* ── SECTION VISIBILITY CONTROL ── */
.sec-hidden { display: none !important; }

/* =============================================
   GALERIE
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  auto-rows: 260px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 260px;
  background: #1a1a1a;
}
.gal-item[style*="span 2"] { height: 320px; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Gallery filter buttons */
.gf-btn {
  padding: 10px 22px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}
.gf-btn:hover {
  background: rgba(232,85,42,0.25);
  border-color: #E8552A;
  color: white;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.4);
}
.gf-btn.gf-active {
  background: #E8552A;
  border-color: #E8552A;
  color: white;
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 #8B3E1A;
}

/* Hidden gallery items */
.gal-item.gal-hide {
  display: none;
}

/* Lightbox */
#lightbox { display: none; }
#lightbox.lb-open { display: flex !important; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gal-item { height: 180px; }
  .gal-item[style*="span 2"] { height: 200px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item, .gal-item[style*="span 2"] { height: 220px; grid-column: span 1 !important; }
}
