/* ============================================
   VK Musique - Clean, elegant stylesheet
   Charte : texte noir, fond blanc, accent #FAA500
   Police : Montserrat
   ============================================ */

:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #4a4a4a;
  --color-accent: #FAA500;
  --color-accent-hover: #e09400;
  --color-border: #e8e8e8;
  --color-soft: #fafafa;
  --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
  --max-width: 1140px;
  --header-height: 72px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --transition: 0.25s ease;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: var(--color-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(250, 165, 0, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-accent);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hero__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  overflow: hidden;
}

.hero__bg picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__bg img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  max-width: 800px;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero__title2 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.hero__title3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 2.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Reset default heading margins inside hero */
.hero h2,
.hero h3 {
  margin-top: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Outline button becomes white on dark hero */
.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.hero .btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

/* ========== DISCIPLINES ========== */
.disciplines__grid {
  display: grid;
  gap: 1.75rem;
  justify-content: center;
}

.discipline-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
}

.discipline-card__icon {
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.discipline-card h3 {
  color: var(--color-accent);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.discipline-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.discipline-card li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-left: 1.1rem;
  position: relative;
}

.discipline-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.disciplines__cta {
  text-align: center;
  margin-top: 3rem;
}

/* Desktop ≥ 900px : 3 colonnes, les 2 dernières centrées */
@media (min-width: 900px) {
  .disciplines__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .discipline-card {
    grid-column: span 2;
  }
  .discipline-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  .discipline-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

/* Tablette 600–899px : 2 colonnes, dernière centrée */
@media (min-width: 600px) and (max-width: 899px) {
  .disciplines__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .discipline-card:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    justify-self: center;
    width: 100%;
  }
}

/* Mobile < 600px */
@media (max-width: 599px) {
  .disciplines__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ABOUT ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--color-soft);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.3;
}

/* ========== TESTIMONIALS ========== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '“';
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-weight: 600;
  color: var(--color-text);
  font-style: normal;
}

.testimonial__stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

/* ========== SOCIAL / YOUTUBE / ALBUM ========== */
.social-block {
  text-align: center;
  padding: 3rem 0;
}

.social-block h3 {
  margin-bottom: 1rem;
}

.social-block p {
  max-width: 40ch;
  margin: 0 auto 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ========== STAGES & EVENTS ========== */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-banner h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ========== TARIFS ========== */
.tarifs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.tarif-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}







.tarif-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tarif-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1rem 0 0.25rem;
}

.tarif-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.tarif-card .note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.tarif-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.contact-item a {
  font-weight: 500;
  color: var(--color-text);
}

.contact-item a:hover {
  color: var(--color-accent);
}

.zone {
  background: var(--color-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.zone h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.zone p {
  font-size: 0.95rem;
  margin: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 3.5rem 0 2rem;
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  color: var(--color-accent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__brand .logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer__brand p {
  color: #999;
  font-size: 0.9rem;
  max-width: 30ch;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer ul a {
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #777;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 1.25rem 1.5rem;
  z-index: 2000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn--primary {
  background: var(--color-accent);
}

.cookie-banner .btn--outline {
  border-color: #666;
  color: #ccc;
}

.cookie-banner .btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 700px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
