/* ========================================
   Chichi's – Feuille de style principale
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Nunito:wght@400;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --rose:        #f9b8c8;
  --rose-deep:   #f38faa;
  --peche:       #ffd6c0;
  --lavande:     #e8d5f5;
  --menthe:      #c8f0e8;
  --jaune:       #fff0b3;
  --blanc:       #fff9fc;
  --texte:       #5a3b4a;
  --texte-clair: #9c6b7e;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  background: linear-gradient(145deg, #ffe0ec 0%, #ffd6c0 35%, #eedcff 70%, #c8f0e8 100%);
  text-align: center;
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blobs animés en arrière-plan */
.header-bg-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #f9b8c8, #f38faa);
  top: -120px; left: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e8d5f5, #c8a8f0);
  top: -60px; right: -80px;
  animation-delay: 2.5s;
}
.blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #ffd6c0, #ffb090);
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  animation-delay: 5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.06); }
}

/* Contenu du header */
.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper glass autour du logo */
.logo-glass-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 36px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 8px 32px rgba(243, 143, 170, 0.25),
    0 2px 8px rgba(255,255,255,0.5) inset;
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Halo lumineux derrière le logo */
.logo-halo {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,184,200,0.6) 0%, rgba(255,214,192,0.3) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: haloGlow 3s ease-in-out infinite alternate;
}

@keyframes haloGlow {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.logo-img {
  width: 360px;
  max-width: 78vw;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 20px rgba(243,143,170,0.5))
    drop-shadow(0 8px 24px rgba(200,80,120,0.3));
}

header p.tagline {
  font-size: 1.1rem;
  color: #b05070;
  margin-top: 24px;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.6);
}

.dots-divider {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
}
.dots-divider span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dots-divider span:nth-child(1) { background: var(--rose-deep); }
.dots-divider span:nth-child(2) { background: var(--peche); }
.dots-divider span:nth-child(3) { background: var(--lavande); }
.dots-divider span:nth-child(4) { background: var(--rose-deep); }
.dots-divider span:nth-child(5) { background: var(--menthe); }

/* ── NAV ── */
nav {
  background: white;
  box-shadow: 0 2px 12px rgba(243,143,170,0.15);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  flex-wrap: wrap;
  position: sticky; top: 0; z-index: 100;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texte-clair);
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
nav a:hover {
  background: var(--rose);
  color: #d4617f;
  border-color: var(--rose-deep);
}

/* ── SECTIONS COMMUNES ── */
section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #d4617f;
  text-align: center;
  margin-bottom: 10px;
}
.section-sub {
  text-align: center;
  color: var(--texte-clair);
  margin-bottom: 48px;
  font-size: 1rem;
}

/* ── HERO BANDE ── */
.hero-band {
  background: linear-gradient(135deg, var(--jaune) 0%, var(--peche) 100%);
  text-align: center;
  padding: 50px 20px;
}
.hero-band h2 {
  font-family: 'Pacifico', cursive;
  font-size: 1.7rem;
  color: #d4617f;
  margin-bottom: 10px;
}
.hero-band p {
  color: var(--texte-clair);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CARDS PRODUITS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(200,100,130,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  opacity: 0.12;
  top: -60px; right: -60px;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 36px rgba(200,100,130,0.2);
}

.card-gaufre  { background: linear-gradient(145deg, #fff0f5, #ffd6e6); }
.card-gaufre::before  { background: var(--rose-deep); }

.card-chichi  { background: linear-gradient(145deg, #fff5e8, #ffe0c0); }
.card-chichi::before  { background: #f4a26c; }

.card-crepe   { background: linear-gradient(145deg, #f0f5ff, #d8e8ff); }
.card-crepe::before   { background: #90b0f0; }

.card-emoji {
  font-size: 60px;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}
.card h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: #d4617f;
  margin-bottom: 10px;
}
.card p {
  color: var(--texte-clair);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tag {
  background: white;
  color: var(--texte-clair);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(200,100,130,0.12);
}

/* ── SECTION GALERIE ── */
#galerie {
  background: linear-gradient(180deg, var(--blanc) 0%, #fff0f8 100%);
  padding: 70px 20px;
}

.stand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .stand-grid { grid-template-columns: 1fr; }
}

.stand-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(200,100,130,0.18);
  aspect-ratio: 3/4;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 4px solid white;
}
.stand-photo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 40px rgba(200,100,130,0.28);
}
.stand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
  max-width: 800px;
  margin: 0 auto;
}
.galerie-item {
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 3px 14px rgba(200,100,130,0.12);
}
.galerie-item:hover {
  transform: scale(1.07) rotate(2deg);
  box-shadow: 0 8px 24px rgba(200,100,130,0.22);
}
.gi-1 { background: linear-gradient(135deg, #ffd6e6, #ffb3cb); }
.gi-2 { background: linear-gradient(135deg, #ffe0c0, #ffc99a); }
.gi-3 { background: linear-gradient(135deg, #d8e8ff, #b8d0ff); }
.gi-4 { background: linear-gradient(135deg, #e8d5f5, #d0b5ee); }
.gi-5 { background: linear-gradient(135deg, #c8f0e8, #a0e0d0); }
.gi-6 { background: linear-gradient(135deg, #fff0b3, #ffe080); }

/* ── LOCALISATION ── */
#localisation { background: var(--blanc); }

.loc-card {
  background: linear-gradient(135deg, var(--rose) 0%, var(--lavande) 100%);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 6px 30px rgba(200,100,130,0.18);
}
.loc-card h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: #d4617f;
  margin-bottom: 20px;
}

.loc-infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (max-width: 500px) {
  .loc-infos { grid-template-columns: 1fr; }
}

.loc-info-item {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(200,100,130,0.1);
}
.loc-info-item .icon { font-size: 28px; margin-bottom: 8px; display: block; }
.loc-info-item strong {
  display: block;
  color: #d4617f;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}
.loc-info-item span { color: var(--texte); font-size: 0.95rem; font-weight: 600; }

/* ── CONTACT ── */
#contact {
  background: linear-gradient(135deg, #fff0f8 0%, #f0f5ff 100%);
  padding: 70px 20px;
}

.contact-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrapper p {
  color: var(--texte-clair);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(200,100,130,0.2);
}
.btn-rose {
  background: linear-gradient(135deg, var(--rose-deep), #e87090);
  color: white;
}
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,100,130,0.35);
}
.btn-outline {
  background: white;
  color: #d4617f;
  border: 2px solid var(--rose-deep);
}
.btn-outline:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, var(--rose) 0%, var(--peche) 100%);
  text-align: center;
  padding: 40px 20px;
  color: var(--texte-clair);
  font-size: 0.9rem;
}
.footer-logo-img {
  width: 120px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(200,80,120,0.2));
}
footer p { margin-top: 6px; }

/* ── RUBAN DÉFILANT ── */
.ticker-wrap {
  background: var(--rose-deep);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker span { margin: 0 40px; }

/* ════════════════════════════════════════════
   FAIRGROUND EXPERIENCE LAYER
   ════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* ── CANVAS BACKGROUND ── */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
body > *:not(#bg-canvas):not(#loader):not(#custom-cursor) {
  position: relative;
  z-index: 1;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(145deg, #ffe0ec 0%, #ffd6c0 40%, #eedcff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loader-inner { text-align: center; }
.loader-logo {
  width: 220px;
  max-width: 70vw;
  filter: drop-shadow(0 0 30px rgba(243,143,170,0.6));
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(243,143,170,0.5)); }
  50%       { filter: drop-shadow(0 0 50px rgba(243,143,170,0.95)) drop-shadow(0 0 80px rgba(228,112,144,0.4)); }
}
.loader-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #b05070;
  letter-spacing: 0.15em;
  margin-top: 20px;
  text-transform: uppercase;
}
.loader-bar {
  width: 180px;
  height: 4px;
  background: rgba(243,143,170,0.2);
  border-radius: 10px;
  margin: 16px auto 0;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rose-deep), #e87090);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(243,143,170,0.6);
}

/* ── CUSTOM CURSOR ── */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: transform;
}
#custom-cursor::before {
  content: '✦';
  font-size: 22px;
  color: var(--rose-deep);
  display: block;
  text-align: center;
  line-height: 28px;
  filter: drop-shadow(0 0 6px rgba(243,143,170,0.8));
  animation: cursorSpin 3s linear infinite;
}
@keyframes cursorSpin {
  to { transform: rotate(360deg); }
}
#custom-cursor.cursor-grow::before {
  content: '♥';
  font-size: 26px;
  color: #e87090;
  animation: cursorPulse 0.6s ease-in-out infinite alternate;
}
@keyframes cursorPulse {
  from { transform: scale(1); }
  to   { transform: scale(1.3); }
}

/* ── LOGO NEON GLOW ── */
.logo-glass-wrap {
  animation: floatLogo 4s ease-in-out infinite, neonBreath 3s ease-in-out infinite alternate;
}
@keyframes neonBreath {
  0%   {
    box-shadow:
      0 8px 32px rgba(243,143,170,0.25),
      0 0 0px rgba(243,143,170,0),
      inset 0 2px 8px rgba(255,255,255,0.5);
  }
  100% {
    box-shadow:
      0 8px 48px rgba(243,143,170,0.5),
      0 0 60px rgba(243,143,170,0.25),
      0 0 100px rgba(228,112,144,0.15),
      inset 0 2px 8px rgba(255,255,255,0.5);
  }
}

/* ── BULB STRIP (top of header) ── */
.bulb-strip {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  z-index: 3;
  pointer-events: none;
}
.bulb-strip--top { top: 0; padding: 0 10px; }

.bulb-dot {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c, #f9b8c8);
  box-shadow: 0 0 8px 3px var(--c, #f9b8c8), 0 0 20px var(--c, #f9b8c8);
  animation: bulbBlink 1.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  position: relative;
}
.bulb-dot::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 18px;
  background: rgba(100,50,70,0.3);
}
@keyframes bulbBlink {
  0%, 100% { opacity: 1;   box-shadow: 0 0 8px 3px var(--c), 0 0 20px var(--c); }
  45%       { opacity: 0.25; box-shadow: 0 0 2px 1px var(--c); }
  55%       { opacity: 1;   box-shadow: 0 0 12px 5px var(--c), 0 0 30px var(--c); }
}

/* ── BULB RING (around logo) ── */
.bulb-ring {
  position: absolute;
  inset: -22px;
  border-radius: 52px;
  pointer-events: none;
  z-index: 0;
}
.bulb-ring-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c, #f9b8c8);
  box-shadow: 0 0 6px 2px var(--c), 0 0 14px var(--c);
  animation: bulbRingBlink 2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  /* Distribute around perimeter using CSS custom properties */
  top:  calc(50% + 46% * sin(calc(var(--i) / var(--n) * 360deg)) - 5px);
  left: calc(50% + 50% * cos(calc(var(--i) / var(--n) * 360deg)) - 5px);
}
@keyframes bulbRingBlink {
  0%, 100% { opacity: 1;   box-shadow: 0 0 6px 2px var(--c), 0 0 14px var(--c); }
  50%       { opacity: 0.2; box-shadow: 0 0 2px 1px var(--c); }
}

/* ── AMBIENT SPARKLES ── */
.ambient-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  font-size: 14px;
  will-change: transform, opacity;
}

/* ── CARDS – PREMIUM HOVER ── */
.card {
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
  will-change: transform;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(200,100,130,0.25),
    0 0 0 1px rgba(243,143,170,0.3),
    0 0 30px rgba(243,143,170,0.12);
}

/* ── BUTTONS – PULSE GLOW ── */
.btn-rose {
  animation: btnPulse 2.8s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(200,100,130,0.25); }
  50%       { box-shadow: 0 4px 28px rgba(243,143,170,0.6), 0 0 40px rgba(228,112,144,0.25); }
}

/* ── GALERIE ITEMS BREATHING ── */
.galerie-item {
  animation: breathe 3s ease-in-out infinite;
}
.galerie-item:nth-child(2) { animation-delay: 0.5s; }
.galerie-item:nth-child(3) { animation-delay: 1s; }
.galerie-item:nth-child(4) { animation-delay: 1.5s; }
.galerie-item:nth-child(5) { animation-delay: 2s; }
.galerie-item:nth-child(6) { animation-delay: 2.5s; }
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* ── SECTION TITLE SHIMMER ── */
.section-title {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmerText 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerText {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ── LOGO LIGHT SWEEP ── */
.logo-img {
  position: relative;
}
.logo-glass-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 80%; height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  border-radius: inherit;
  animation: lightSweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes lightSweep {
  0%        { left: -150%; opacity: 0; }
  10%       { opacity: 1; }
  50%, 100% { left: 150%; opacity: 0; }
}

/* ── GARLAND SVG ── */
.garland-svg {
  display: block;
  width: 100%;
  position: absolute;
  top: 8px; left: 0;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ════════════════════════════════
   RESPONSIVE MOBILE
   ════════════════════════════════ */

/* Tablettes (768px) */
@media (max-width: 768px) {

  /* Header */
  header { padding: 40px 16px 36px; min-height: 340px; }
  .logo-glass-wrap { padding: 20px 24px; border-radius: 28px; }
  .logo-img { width: 260px; }
  .logo-halo { width: 240px; height: 240px; }
  header p.tagline { font-size: 0.95rem; margin-top: 18px; }

  /* Nav */
  nav { gap: 6px; padding: 10px 12px; }
  nav a { font-size: 0.85rem; padding: 7px 14px; }

  /* Sections */
  section { padding: 50px 16px; }
  #galerie { padding: 50px 16px; }
  #contact { padding: 50px 16px; }

  /* Titres */
  .section-title { font-size: 1.6rem; }
  .section-sub { margin-bottom: 32px; font-size: 0.95rem; }

  /* Hero */
  .hero-band { padding: 36px 16px; }
  .hero-band h2 { font-size: 1.4rem; }
  .hero-band p { font-size: 0.95rem; }

  /* Cards */
  .cards { gap: 18px; }
  .card { padding: 28px 20px; }

  /* Stand grid → 2 colonnes */
  .stand-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Loc card */
  .loc-card { padding: 32px 20px; }
  .loc-card h3 { font-size: 1.3rem; }

  /* Contact */
  .contact-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Footer */
  .footer-logo-img { width: 100px; }
}

/* Téléphones (480px) */
@media (max-width: 480px) {

  /* Header */
  header { padding: 28px 12px 28px; min-height: 280px; }
  .logo-glass-wrap { padding: 16px 18px; border-radius: 22px; }
  .logo-img { width: 200px; }
  .logo-halo { width: 180px; height: 180px; }
  header p.tagline { font-size: 0.82rem; margin-top: 14px; padding: 6px 16px; }
  .dots-divider { margin-top: 14px; }

  /* Nav : liens plus compacts */
  nav { gap: 4px; padding: 8px; }
  nav a { font-size: 0.78rem; padding: 6px 10px; }

  /* Sections */
  section { padding: 40px 14px; }
  #galerie { padding: 40px 14px; }
  #contact { padding: 40px 14px; }

  /* Titres */
  .section-title { font-size: 1.4rem; }

  /* Hero */
  .hero-band { padding: 28px 14px; }
  .hero-band h2 { font-size: 1.2rem; }

  /* Cards → 1 colonne pleine largeur */
  .cards { grid-template-columns: 1fr; }
  .card { padding: 24px 18px; }
  .card-emoji { font-size: 48px; }
  .card h3 { font-size: 1.3rem; }

  /* Stand → 1 colonne */
  .stand-grid { grid-template-columns: 1fr; gap: 14px; }
  .stand-photo { aspect-ratio: 4/3; }

  /* Galerie emoji → 3 par ligne */
  .galerie-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .galerie-item { font-size: 36px; }

  /* Loc card */
  .loc-card { padding: 24px 14px; border-radius: 20px; }
  .loc-infos { grid-template-columns: 1fr; gap: 12px; }
  .loc-info-item { padding: 14px; }

  /* Ruban */
  .ticker-wrap { font-size: 0.82rem; }

  /* Footer */
  .footer-logo-img { width: 90px; }
  footer { padding: 30px 14px; font-size: 0.82rem; }
}
