/* ════════════════════════════════════════
   SECTIONS.CSS — Hero · Band · Octogones · Why · Selection · FAQ · Final
   Naga Gym · Cedric Training
   ════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 7vw 0 3vw;
}
@media (max-width: 768px) {
  .hero { align-items: center; text-align: center; padding: 0 1.5rem; align-items: center; }
}

.hero-bg { position: absolute; inset: 0; background: #0d0d0d; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
  filter: brightness(0.38);
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 45%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 0 1.5rem;
  max-width: 780px;
}
@media (max-width: 768px) {
  .hero-content { align-items: center; text-align: center; padding: 0 1.5rem; }
}

.hero-tag {
  font-family: var(--f-cinzel);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #4a6a9a;
}

.hero h1 {
  font-family: var(--f-deco);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero h2, .hero-h2 {
  font-family: var(--f-cinzel);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text2);
  font-style: italic;
  letter-spacing: 0.12em;
  max-width: 520px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-family: var(--f-cinzel);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--text2);
  transition: border-color 0.2s, color 0.2s;
}
.hero-location:hover { border-color: var(--gold); color: var(--gold); }
.hero-location svg { width: 12px; height: 12px; fill: var(--red); flex-shrink: 0; }

/* ─── MORE THAN TRAINING ─── */
.mtt-block {
  background: var(--black);
  text-align: center;
  padding: 4rem 1.5rem;
}
.mtt-title {
  font-family: var(--f-deco);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mtt-divider {
  width: 520px;
  height: 2px;
  background: var(--red);
  margin: 1.4rem auto;
}
.mtt-sub {
  font-family: var(--f-cinzel);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── SECTION OCTOGONES ─── */
.oct-wrapper { background: var(--black); border-top: 1px solid #1a1a1a; }
.oct-section {
  background: var(--black);
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .oct-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .oct-shape { width: 220px; height: 220px; }
}

.oct-col { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }

.oct-shape {
  width: 260px;
  height: 260px;
  position: relative;
  flex-shrink: 0;
}
.oct-shape svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 12px rgba(179,138,71,.15));
}

.oct-img {
  position: absolute;
  inset: 0;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oct-img img { width: 100%; height: 100%; object-fit: cover; }
.oct-img-placeholder {
  font-family: var(--f-cinzel);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #333;
  text-transform: uppercase;
}

.oct-title {
  font-family: var(--f-cinzel);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #c8c4bc 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.oct-price {
  font-family: var(--f-cinzel);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
}
.oct-price span { color: var(--gold); font-weight: 600; }

.oct-desc {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.8;
  max-width: 240px;
  font-family: var(--f-body);
}

.oct-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  padding: 0 1rem;
}
.oct-center-subtitle {
  font-family: var(--f-deco);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}
.oct-center-text {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 280px;
}

/* ─── WHY TRAIN WITH CÉDRIC ─── */
.why-section {
  background: var(--black);
  padding: 5rem 2rem;
  border-top: 1px solid #1a1a1a;
}
.why-inner { max-width: 1000px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 3rem; }
.why-title {
  font-family: var(--f-deco);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.why-intro {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── CITATION DISCRETE ─── */
.quote-strip {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid #1a1a1a;
}
.quote-strip p {
  font-family: var(--f-cinzel);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  font-style: italic;
}

/* ─── MY SELECTION ─── */
.sel-section {
  background: var(--black);
  padding: 5rem 2rem;
  border-top: 1px solid #1a1a1a;
}
.sel-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .sel-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .sel-left { text-align: center; align-items: center !important; }
  .sel-item { justify-content: center !important; }
  .sel-oct-wrap { width: 260px; height: 260px; }
}

.sel-oct-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
.sel-oct-wrap svg {
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
  z-index: 2; pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(212,175,55,.18));
}
.sel-oct-img {
  position: absolute;
  inset: 0;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  overflow: hidden;
}
.sel-oct-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.sel-left { display: flex; flex-direction: column; gap: 1.4rem; text-align: right; align-items: flex-end; }
.sel-pack-title {
  font-family: var(--f-deco);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sel-items { display: flex; flex-direction: column; gap: 0.5rem; }
.sel-item--inline { white-space: nowrap; }
.dia--spacer { margin: 0 0.6rem; }
.sel-item {
  font-family: var(--f-cinzel);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.sel-item .dia { color: var(--red); font-size: 0.4rem; }

.sel-right { display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start; }
.sel-right-title {
  font-family: var(--f-cinzel);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #c8c4bc 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sel-right-text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.9;
}

/* ─── FAQ / THE ARCHIVE ─── */
.faq-cta-section {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  background: var(--black);
}
.faq-cta-section::before,
.faq-cta-section::after {
  content: "";
  display: block;
  width: 520px;
  height: 1px;
  background: var(--red);
  margin: 0 auto 2rem;
}
.faq-cta-section::after { margin: 2rem auto 0; }
.faq-cta-title {
  font-family: var(--f-deco);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.faq-cta-text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.9;
  max-width: 440px;
  margin: 0 auto;
  font-style: italic;
}
.faq-topics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 0;
  margin: 2rem 0;
  align-items: center;
}
.faq-topics span {
  font-family: var(--f-cinzel);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  padding: 0 0.8rem;
}
.faq-topics li { display: inline; }
.faq-topics .dot { color: var(--red); padding: 0; font-size: 0.5rem; }

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 4vw 6rem 50%;
  text-align: left;
  border-top: 1px solid #1a1a1a;
  background: #0a0a0a;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 1;
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
@media (max-width: 768px) {
  .final-cta { padding: 4rem 1.5rem; text-align: center; }
  .final-inner { max-width: 100%; }
}
.final-title {
  font-family: var(--f-deco);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.final-text {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.final-note {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* ─── FOOTER ─── */
footer {
  background-color: #0a0a0a;
  border-top: 2px solid #1a4fa0;
  color: #e8e4dc;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  padding: 3rem 2rem 1.5rem;
}
.footer-brand {
  text-align: center;
  margin-bottom: 2.5rem;
}
.footer-brand h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  color: #B38A47;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.footer-brand p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 0.04em;
}
.footer-divider {
  width: 210px;
  height: 1px;
  background: #1a4fa0;
  margin: 1.2rem auto 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.footer-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e8e4dc;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  color: #CC2200;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}
.footer-col ul li a:hover { color: #e8e4dc; }
.footer-col.legal ul li span {
  color: #aaa;
  font-size: 0.8rem;
}
.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding-top: 1.2rem;
  text-align: center;
  color: #555;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand h2 { font-size: 1.15rem; }
}
/* ─── STARTER PACK SLIDESHOW ─── */
.sel-slideshow {
  display: flex;
  width: 300%;
  height: 100%;
  animation: selSlide 5s steps(1) infinite;
}
.sel-slideshow img {
  width: calc(100% / 3);
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
@keyframes selSlide {
  0%        { transform: translateX(0); }
  33.333%   { transform: translateX(-33.333%); }
  66.666%   { transform: translateX(-66.666%); }
}
