/* ─────────────────────────────────────────
   MERAKI — CSS
   Bauhaus × Matisse × Folk Lyon
   ───────────────────────────────────────── */

:root {
  --yellow:  #FFE134;
  --blue:    #2B35FF;
  --pink:    #FF2D9B;
  --orange:  #FF7A2F;
  --purple:  #7B2FFF;
  --dark:    #111111;
  --light:   #FAFAF3;
  --gray:    #6b6b6b;

  --font-heading: 'Unbounded', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;
  --radius-pill: 9999px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }


/* ─────────────────────────────────────────
   SHAPES (Matisse cut-outs)
   ───────────────────────────────────────── */

.shape { position: absolute; pointer-events: none; }

/* Hero shapes */
.shape-circle-yellow {
  width: 320px; height: 320px;
  background: var(--yellow);
  border-radius: 50%;
  top: -80px; right: -60px;
  opacity: 0.9;
}
.shape-blob-blue {
  width: 200px; height: 260px;
  background: var(--blue);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  bottom: 60px; left: -40px;
  opacity: 0.85;
}
.shape-leaf-pink {
  width: 140px; height: 200px;
  background: var(--pink);
  border-radius: 0 100% 0 100%;
  top: 120px; left: 60px;
  transform: rotate(-20deg);
  opacity: 0.75;
}
.shape-half-circle-orange {
  width: 180px; height: 90px;
  background: var(--orange);
  border-radius: 0 0 180px 180px;
  top: 30px; left: 45%;
  opacity: 0.8;
}
.shape-dot-1 {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 50%;
  bottom: 180px; right: 120px;
}
.shape-dot-2 {
  width: 16px; height: 16px;
  background: var(--pink);
  border-radius: 50%;
  top: 200px; right: 200px;
}


/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  mix-blend-mode: multiply;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--light);
  opacity: 0.85;
  backdrop-filter: blur(8px);
  z-index: -1;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }


/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 3rem 4rem;
  background: var(--light);
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 580px;
  box-shadow: 12px 16px 0 var(--blue);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-image-wrap:hover .hero-img {
  transform: scale(1.04);
}
.hero-flower-shape {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--yellow);
  border-radius: 50% 0 50% 0;
  z-index: 2;
}

.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-size: clamp(5rem, 10vw, 9rem);
}
.title-line-1 { color: var(--blue); display: block; }
.title-line-2 { color: var(--dark); display: block; }
.title-line-3 { color: var(--pink); display: block; }

.hero-tagline {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.5;
  padding-left: 2px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--dark);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 4px 4px 0 var(--dark);
}
.btn-primary:hover {
  background: var(--dark);
  box-shadow: 6px 6px 0 var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2.5px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
}
.btn-outline:hover {
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--dark);
}

.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-full  { width: 100%; justify-content: center; }


/* ─────────────────────────────────────────
   SECTION SHARED
   ───────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}


/* ─────────────────────────────────────────
   MUSIQUE
   ───────────────────────────────────────── */
.musique {
  padding: 7rem 3rem;
  background: var(--dark);
  color: var(--light);
  position: relative;
  overflow: hidden;
}
.musique::before {
  content: 'Musique';
  position: absolute;
  bottom: -1rem; right: -1rem;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}
.musique .section-tag { background: var(--yellow); }
.musique .section-title { color: var(--yellow); }

.musique-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.musique-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(250,250,243,0.8);
  margin-bottom: 2rem;
}

.musique-visual {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.musique-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.musique-img-wrap--2 { margin-top: 3rem; }
.musique-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}
.musique-shape-blob {
  position: absolute;
  width: 80px; height: 100px;
  background: var(--pink);
  border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  top: -20px; right: -20px;
  z-index: 2;
}
.musique-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  z-index: 2;
}


/* ─────────────────────────────────────────
   ÉTYMOLOGIE
   ───────────────────────────────────────── */
.etymo {
  position: relative;
  background: var(--pink);
  padding: 7rem 3rem;
  overflow: hidden;
}
.etymo-shape-1 {
  position: absolute;
  width: 260px; height: 260px;
  background: var(--yellow);
  border-radius: 50%;
  top: -80px; right: 10%;
  opacity: 0.55;
}
.etymo-shape-2 {
  position: absolute;
  width: 160px; height: 220px;
  background: var(--dark);
  border-radius: 0 100% 0 100%;
  bottom: -40px; left: 8%;
  opacity: 0.15;
  transform: rotate(15deg);
}
.etymo-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.etymo-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.etymo-label span {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}
.etymo-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.etymo-headline em {
  font-style: italic;
  color: var(--yellow);
  font-weight: 900;
}
.etymo-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-top: 0.25rem;
}


/* ─────────────────────────────────────────
   À PROPOS
   ───────────────────────────────────────── */
.apropos {
  position: relative;
  padding: 7rem 3rem;
  background: var(--yellow);
  overflow: hidden;
}
.apropos-circle {
  width: 400px; height: 400px;
  background: rgba(43,53,255,0.12);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.apropos-leaf {
  width: 120px; height: 180px;
  background: var(--pink);
  border-radius: 0 80% 0 80%;
  bottom: 40px; left: -30px;
  transform: rotate(10deg);
  opacity: 0.6;
}

.apropos-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.photo {
  width: 75%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1;
  border: 4px solid var(--dark);
}
.photo-back {
  position: relative;
  transform: rotate(-4deg);
  box-shadow: 8px 8px 0 var(--dark);
}
.photo-front {
  position: absolute;
  bottom: -30px;
  right: 0;
  transform: rotate(3deg);
  box-shadow: 8px 8px 0 var(--blue);
  z-index: 2;
}

.apropos-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.apropos-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.apropos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.tag {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--dark);
}
.tag-yellow { background: var(--yellow); color: var(--dark); }
.tag-blue   { background: var(--blue);   color: #fff; }
.tag-pink   { background: var(--pink);   color: #fff; }
.tag-orange { background: var(--orange); color: var(--dark); }


/* ─────────────────────────────────────────
   GALERIE MARQUEE
   ───────────────────────────────────────── */
.galerie {
  padding: 5rem 0;
  background: var(--light);
  overflow: hidden;
}
.galerie-marquee { position: relative; overflow: hidden; }
.galerie-marquee::before,
.galerie-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.galerie-marquee::before { left: 0;  background: linear-gradient(to right, var(--light), transparent); }
.galerie-marquee::after  { right: 0; background: linear-gradient(to left,  var(--light), transparent); }

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  border: 3px solid var(--dark);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.galerie-marquee:hover .marquee-track { animation-play-state: paused; }

.galerie-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 0 1rem;
}


/* ─────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────── */
.contact {
  position: relative;
  padding: 7rem 3rem;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}
.contact-blob {
  width: 300px; height: 380px;
  background: rgba(255,255,255,0.07);
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  top: -60px; right: 100px;
}
.contact-circle {
  width: 200px; height: 200px;
  background: var(--pink);
  border-radius: 50%;
  bottom: -60px; left: -60px;
  opacity: 0.7;
}

.contact-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact .section-tag { background: var(--yellow); color: var(--dark); }

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.contact-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 0.2rem;
  transition: border-color var(--transition);
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

/* Form */
.contact-form {
  background: #fff;
  color: var(--dark);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 3px solid var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 1.5rem; }

label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-md);
  background: var(--light);
  color: var(--dark);
  transition: border-color var(--transition);
  resize: none;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
input::placeholder, textarea::placeholder { color: #aaa; }

/* Honeypot — invisible visuellement et pour les lecteurs d'écran */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.875rem;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid var(--dark);
}
.form-success.visible { display: block; }


/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 3rem;
  text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250,250,243,0.6);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: var(--yellow); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,250,243,0.35);
}


/* ─────────────────────────────────────────
   ANIMATIONS ON SCROLL
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }

  .hero { padding: 5rem 1.5rem 3rem; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-image-wrap {
    max-height: 400px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 8px 8px 0 var(--blue);
  }
  .hero-cta { align-items: center; }
  .hero-title { font-size: clamp(4rem, 18vw, 6rem); }

  .musique { padding: 5rem 1.5rem; }
  .musique-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .musique-visual { max-width: 440px; margin: 0 auto; }

  .apropos { padding: 5rem 1.5rem; }
  .apropos-content {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .photo-stack { max-width: 300px; }

  .contact { padding: 5rem 1.5rem; }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 2.5rem 1.5rem; }
}

@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero-title { font-size: clamp(3.5rem, 22vw, 5rem); }
  .contact-form { padding: 1.75rem; }
  .marquee-track img { width: 200px; height: 250px; }
}
