/* ============================================
   HOME PAGE — specific styles
   ============================================ */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/photo-danseurs.avif');
  background-size: cover;
  background-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(7,9,15,0.92) 40%, rgba(7,9,15,0.5) 100%),
    linear-gradient(to bottom, rgba(13,30,60,0.4) 0%, rgba(7,9,15,0.2) 100%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 24px;
}
.hero-text .badge { margin-bottom: 24px; }
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-text > p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: 0.8rem; color: var(--gray); }
.stat-divider {
  width: 1px; height: 36px;
  background: var(--bg-3);
}

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack {
  position: relative;
  width: 320px; height: 400px;
}
.hero-card {
  position: absolute;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  transition: transform 0.4s ease;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.hero-card:hover { transform: scale(1.03) !important; }
.hero-card img.hc-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 0;
}
.hero-card:hover img.hc-photo { opacity: 0.75; transform: scale(1.06); }
.hc-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.hc-prof-name {
  font-size: 0.72rem;
  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.hc-1 {
  width: 200px; height: 260px;
  background: linear-gradient(160deg, #1d7dd4, #0a2d5e);
  top: 0; left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}
.hc-2 {
  width: 180px; height: 240px;
  background: linear-gradient(160deg, #4db8ff, #1d7dd4);
  top: 60px; right: 0;
  transform: rotate(4deg);
  z-index: 2;
  color: var(--white);
}
.hc-3 {
  width: 160px; height: 200px;
  background: rgba(13,30,48,0.9);
  border: 2px solid var(--lime);
  bottom: 0; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
  color: var(--lime);
}
.hc-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* STYLES GRID */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.style-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bg-3);
  border-radius: 0;
  padding: 28px 20px;
  cursor: default;
  transition: all var(--transition);
  position: relative;
}
.style-card::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-h);
  transition: width var(--transition);
}
.style-card:hover {
  transform: none;
  box-shadow: none;
}
.style-card:hover::before { width: 100%; }
.style-card h3 {
  font-family: 'Bebas Neue', var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
  transition: color var(--transition);
}
.style-card:hover h3 { color: var(--cyan); }
.style-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}
/* 7 cards = 4+3, last row centered */
.styles-grid .style-card:nth-child(5) { grid-column: 1; }

/* ABOUT TEASER */
.about-teaser { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border: 1px solid var(--bg-3);
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-dark);
  font-size: 3rem;
}
.about-img-placeholder p { font-size: 0.85rem; color: var(--gray-dark); }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--cyan);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(41,171,226,0.35);
}
.about-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; }
.about-badge-float span { font-size: 0.8rem; opacity: 0.85; }
.values-list { display: flex; flex-direction: column; gap: 12px; }
.value-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--gray); font-size: 0.95rem;
}
.v-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-h);
  flex-shrink: 0;
}

/* PROFS PREVIEW */
.profs-preview { margin-top: 0; }
.prof-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}
.prof-card:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29,125,212,0.25);
}
.prof-photo-wrap {
  aspect-ratio: 1;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.prof-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.prof-photo-placeholder {
  font-size: 3rem;
  color: var(--gray-dark);
}
.prof-info {
  background: var(--cyan);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prof-info h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

/* EVENTS */
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-2);
  border: 1px solid var(--bg-3);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all var(--transition);
}
.event-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.event-date {
  min-width: 60px;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--bg-3);
}
.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.event-date span { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.event-info { flex: 1; }
.event-info h4 { font-weight: 700; margin-bottom: 4px; }
.event-info p { color: var(--gray); font-size: 0.88rem; }
.event-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* CTA SECTION */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(29,125,212,0.18), rgba(13,71,161,0.12), rgba(77,184,255,0.06));
  border-top: 1px solid rgba(29,125,212,0.2);
  border-bottom: 1px solid rgba(29,125,212,0.2);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.cta-text p { color: var(--gray); font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(3, 1fr); }
  .styles-grid .style-card:nth-child(5) { grid-column: auto; }
  .hero-card-stack { width: 260px; height: 320px; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
  .hero-text > p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-float { bottom: -16px; right: 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .event-item { flex-wrap: wrap; }
  .event-tags { display: none; }
}
@media (max-width: 480px) {
  .styles-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
}
