/* ============================================
   LES VRAIS MAJORS — ONE PAGER
   ============================================ */

/* --------------------------------------------
   FONTS
   -------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');

@font-face {
  font-family: 'Alfphabet';
  src: url('../fonts/Alfphabet-I.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/altehaasgroteskregular-webfont.woff2') format('woff2'),
       url('../fonts/altehaasgroteskregular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/altehaasgroteskbold-webfont.woff2') format('woff2'),
       url('../fonts/altehaasgroteskbold-webfont.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/* --------------------------------------------
   CUSTOM PROPERTIES
   -------------------------------------------- */
:root {
  /* Colors */
  --color-black: #1a1a1a;
  --color-white: #ffffff;
  --color-gray-100: #f7f7f7;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-link: #d51520;

  /* Section Backgrounds (à personnaliser) */
  --bg-nav: var(--color-white);
  --bg-hero: var(--color-gray-100);
  --bg-elephant: #f9d2e5;
  --bg-montagne: var(--color-white);
  --bg-about: var(--color-white);
  --bg-contact: var(--color-gray-100);
  --bg-footer: var(--color-white);

  /* Typography */
  --font-display: 'Alfphabet', Georgia, serif;
  --font-body: 'Inconsolata', 'Courier New', monospace;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  --font-size-xs: 0.875rem;     /* 14px */
  --font-size-sm: 1rem;         /* 16px */
  --font-size-base: 1.125rem;   /* 18px */
  --font-size-lg: 1.5rem;       /* 24px */
  --font-size-xl: 2rem;         /* 32px */
  --font-size-2xl: 2.75rem;     /* 44px */
  --font-size-3xl: 3.25rem;     /* 52px */
  --font-size-4xl: 4.5rem;      /* 72px */

  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* Spacing */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-14: 3.5rem;   /* 56px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* Layout */
  --max-width: 64rem;   /* 1024px */
  --border-width: 1px;
  --border-radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-black);
  background-color: var(--color-white);
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">💂</text></svg>') 32 32, auto;
}

/* Curseurs par section */
#elephant {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">🍅</text></svg>') 32 32, auto;
}

#la-montagne {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">🧀</text></svg>') 32 32, auto;
}

body.is-dragging-sticker {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">✊</text></svg>') 32 32, auto !important;
}

body.is-dragging-sticker * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">✊</text></svg>') 32 32, auto !important;
}

a {
  color: var(--color-link);
  text-decoration: none;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">👆</text></svg>') 32 32, pointer;
  position: relative;
  z-index: 10;
}

a:hover {
  text-decoration: underline;
}

/* --------------------------------------------
   LAYOUT
   -------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

/* --------------------------------------------
   NAV
   -------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  background-color: var(--bg-nav);
  border-bottom: var(--border-width) solid var(--color-gray-200);
  z-index: 100;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}

.nav__link {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.nav__social {
  display: flex;
  gap: var(--space-3);
  margin-left: var(--space-8);
}

.nav__social-link {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  transition: color 0.2s ease;
}

.nav__social-link:hover {
  color: var(--color-black);
}

.nav__link:hover {
  color: var(--color-black);
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}

/* Hamburger button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-6) var(--space-5);
  border-top: var(--border-width) solid var(--color-gray-200);
  background-color: var(--bg-nav);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--font-size-base);
  color: var(--color-black);
  border-bottom: var(--border-width) solid var(--color-gray-200);
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">👆</text></svg>') 32 32, pointer;
}

.nav__mobile-link:hover {
  text-decoration: none;
  color: var(--color-gray-600);
}

.nav__mobile-social {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-6);
  margin-top: var(--space-3);
}

.nav__mobile-social-link {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

/* --------------------------------------------
   HERO
   -------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-black);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ctext x='4' y='38' font-size='36'%3E💬%3C/text%3E%3C/svg%3E"), auto;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
  z-index: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__logo {
  max-width: 280px;
  width: 60%;
  margin-bottom: 80px;
  filter: brightness(0) invert(1);
}

.hero__joke {
  max-width: 800px;
  margin: 0 auto var(--space-8);
  transition: opacity 0.3s ease;
}

.hero__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  font-family: var(--font-display);
  color: var(--color-white);
  min-height: 1.5em;
  letter-spacing: -0.02em;
}

.hero__title--setup {
  margin-bottom: var(--space-2);
}

.hero__title--punchline {
  margin-top: var(--space-2);
}

.hero__thinking {
  font-size: var(--font-size-xl);
  color: var(--color-white);
  font-family: var(--font-display);
  text-align: center;
  margin: var(--space-2) 0;
  letter-spacing: 0.3em;
  opacity: 0;
}

.hero__thinking.active {
  animation: thinking 1.5s infinite;
}

@keyframes thinking {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero__joke-btn {
  background: var(--color-white);
  border: none;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  transition: opacity 0.3s ease, transform 0.2s ease;
  border-radius: 8px;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">👆</text></svg>') 32 32, pointer;
}

.hero__joke-btn:hover {
  animation: buttonFloatWiggleSimple 0.2s ease-in-out infinite;
}

@keyframes buttonFloatWiggleSimple {
  0% {
    transform: translate(0, 0) rotate(-1deg);
  }
  50% {
    transform: translate(0, -1px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(-1deg);
  }
}

.hero__title.typing::after {
  content: '|';
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
  
  .hero__logo {
    max-width: 250px;
    margin-bottom: var(--space-10);
  }
  
  .hero__title {
    font-size: var(--font-size-xl);
  }
  
  .hero__thinking {
    font-size: var(--font-size-lg);
  }
  
  .hero__joke-btn {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-3);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }
  
  .hero__logo {
    max-width: 180px;
    margin-bottom: var(--space-8);
  }
  
  .hero__title {
    font-size: var(--font-size-lg);
  }
  
  .hero__thinking {
    font-size: var(--font-size-base);
  }
  
  .hero__joke {
    max-width: 90%;
  }
}

/* --------------------------------------------
   SECTION (shared)
   -------------------------------------------- */
.section {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--has-stickers {
  position: relative;
  overflow: hidden;
}

.stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.sticker {
  position: absolute;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">✋</text></svg>') 32 32, grab;
  user-select: none;
  touch-action: none;
  z-index: 1;
  pointer-events: auto;
  animation: stickerFloat 30s linear infinite both;
}

.sticker__inner {
  --base-rotation: 0deg;
  transform: rotate(var(--base-rotation));
}

.sticker:hover .sticker__inner {
  animation: stickerWiggle 0.2s ease-in-out infinite;
}

.sticker.is-dragging {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">✊</text></svg>') 32 32, grabbing;
  opacity: 0.9;
  animation: none;
}

.sticker.is-dragging .sticker__inner {
  animation: none;
}

@keyframes stickerFloat {
  0% {
    transform: translate(0, 0);
  }
  12.5% {
    transform: translate(8px, -4px);
  }
  25% {
    transform: translate(10px, -8px);
  }
  37.5% {
    transform: translate(8px, -12px);
  }
  50% {
    transform: translate(0, -10px);
  }
  62.5% {
    transform: translate(-8px, -12px);
  }
  75% {
    transform: translate(-10px, -8px);
  }
  87.5% {
    transform: translate(-8px, -4px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes stickerWiggle {
  0% {
    transform: rotate(calc(var(--base-rotation) - 1deg));
  }
  50% {
    transform: rotate(calc(var(--base-rotation) + 1deg));
  }
  100% {
    transform: rotate(calc(var(--base-rotation) - 1deg));
  }
}

.sticker img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Réduction uniforme des stickers sur petits écrans */
@media (max-width: 1200px) {
  .sticker {
    transform-origin: center;
  }
  
  .sticker img {
    transform: scale(0.7);
  }
  
  /* Mode vertical : ajouter de l'espace en haut et en bas */
  .section--has-stickers {
    padding-top: 300px;
    padding-bottom: 300px;
  }
  
  /* Centrer le eyebrow et le titre */
  .section__eyebrow,
  .section__title {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .stickers {
    display: none;
  }
  
  /* Padding mobile normal */
  .section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
  
  .section--has-stickers {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
}

.section--has-stickers .container {
  position: relative;
  z-index: 2;
}

.section--elephant,
.section--1_elephant {
  background-color: var(--bg-elephant);
}

.section--montagne,
.section--la-montagne,
.section--2_la-montagne {
  background-color: var(--color-gray-100);
}

/* Styles génériques pour toutes les sections de spectacles */
.section--elephant .section__eyebrow,
.section--elephant .section__title,
.section--elephant .show__pitch-large,
.section--elephant .show__pitch,
.section--elephant .show__pitch-small,
.section--elephant .show__meta-label,
.section--elephant .show__meta-text,
.section--elephant .show__dates-label,
.section--elephant .show__date-day,
.section--elephant .show__date-venue,
.section--elephant .show__cta,
.section--elephant .show__slideshow-placeholder,
.section--1_elephant .section__eyebrow,
.section--1_elephant .section__title,
.section--1_elephant .show__pitch-large,
.section--1_elephant .show__pitch,
.section--1_elephant .show__pitch-small,
.section--1_elephant .show__meta-label,
.section--1_elephant .show__meta-text,
.section--1_elephant .show__dates-label,
.section--1_elephant .show__date-day,
.section--1_elephant .show__date-venue,
.section--1_elephant .show__cta,
.section--1_elephant .show__slideshow-placeholder,
.section--montagne .section__eyebrow,
.section--montagne .section__title,
.section--montagne .show__pitch-large,
.section--montagne .show__pitch,
.section--montagne .show__pitch-small,
.section--montagne .show__meta-label,
.section--montagne .show__meta-text,
.section--montagne .show__dates-label,
.section--montagne .show__date-day,
.section--montagne .show__date-venue,
.section--montagne .show__cta,
.section--montagne .show__slideshow-placeholder,
.section--la-montagne .section__eyebrow,
.section--la-montagne .section__title,
.section--la-montagne .show__pitch-large,
.section--la-montagne .show__pitch,
.section--la-montagne .show__pitch-small,
.section--la-montagne .show__meta-label,
.section--la-montagne .show__meta-text,
.section--la-montagne .show__dates-label,
.section--la-montagne .show__date-day,
.section--la-montagne .show__date-venue,
.section--la-montagne .show__cta,
.section--la-montagne .show__slideshow-placeholder,
.section--2_la-montagne .section__eyebrow,
.section--2_la-montagne .section__title,
.section--2_la-montagne .show__pitch-large,
.section--2_la-montagne .show__pitch,
.section--2_la-montagne .show__pitch-small,
.section--2_la-montagne .show__meta-label,
.section--2_la-montagne .show__meta-text,
.section--2_la-montagne .show__dates-label,
.section--2_la-montagne .show__date-day,
.section--2_la-montagne .show__date-venue,
.section--2_la-montagne .show__cta,
.section--2_la-montagne .show__slideshow-placeholder {
  color: var(--section-color);
}

.section--elephant .show__date-item,
.section--1_elephant .show__date-item,
.section--montagne .show__date-item,
.section--la-montagne .show__date-item,
.section--2_la-montagne .show__date-item {
  border-bottom-color: var(--section-color);
}

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

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

.section__eyebrow {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.section__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-black);
  margin-bottom: var(--space-10);
}

.section__title--hero {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-16);
}

/* --------------------------------------------
   SHOW (Éléphant, La Montagne)
   -------------------------------------------- */
.show__carousel {
  margin-top: var(--space-24);
  margin-bottom: var(--space-2);
  position: relative;
}

.carousel-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  margin-top: calc(-1 * var(--space-24));
  margin-bottom: var(--space-4);
  line-height: var(--line-height-normal);
}

.carousel-info-nav {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}

/* Carousel */
.carousel {
  position: relative;
  overflow: visible;
  width: calc(100% + 15vw);
  margin-left: calc(-7.5vw);
  margin-right: calc(-7.5vw);
  height: 75vh;
  transform: rotate(3deg);
  z-index: 1;
}

.carousel__nav-btn {
  background: none;
  border: none;
  font-size: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  color: var(--section-color);
  line-height: 1;
  position: relative;
  top: 4px;
}

.carousel__nav-btn:hover {
  transform: scale(1.2);
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .carousel {
    height: 50vh;
  }
  
  .show__carousel {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
  }
  
  .carousel-photo img {
    width: 100%;
    height: 100%;
  }
}

.section__title {
  position: relative;
  z-index: 10;
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block !important;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.carousel-photo.active {
  z-index: 100;
}

.carousel-photo img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.carousel-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block !important;
  z-index: 1;
  visibility: visible;
  transition: transform 0.3s ease, z-index 0.3s ease;
}

.carousel:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">👈</text></svg>') 32 32, auto;
}

.carousel.hover-right {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><text y="48" font-size="48">👉</text></svg>') 32 32, auto;
}

.carousel-info-counter {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-lg);
  color: var(--section-color);
}

.carousel-info-credit {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--section-color);
}

.show__body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-10);
  margin-top: var(--space-24);
  align-items: start;
}

.show__pitch-large {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
  color: var(--color-gray-700);
}

.show__pitch-large a {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  color: var(--color-link);
}

.show__pitch-small {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  color: var(--color-gray-600);
}

.show__pitch-small a {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  color: var(--color-link);
}

.show__meta {
  margin-bottom: var(--space-6);
}

.show__meta-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.show__meta-text {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
}

.show__meta-text p {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  color: var(--section-color);
  margin: 0;
}

.show__meta-text strong {
  color: var(--section-color);
  font-weight: var(--font-weight-bold);
}

.show__meta-text a {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  color: var(--color-link);
}

.show__cta {
  display: inline-block;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--section-color);
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid currentColor;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.show__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  animation: buttonFloatWiggle 0.2s ease-in-out infinite;
}

@keyframes buttonFloatWiggle {
  0% {
    transform: translate(0, -2px) rotate(-1deg);
  }
  50% {
    transform: translate(0, -3px) rotate(1deg);
  }
  100% {
    transform: translate(0, -2px) rotate(-1deg);
  }
}

@media (min-width: 768px) {
  .show__right {
    position: sticky;
    top: var(--space-8);
    align-self: flex-start;
  }
}

.show__dates-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.show__date-item {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: var(--border-width) solid var(--color-gray-200);
}

.show__date-item:last-child {
  border-bottom: none;
}

.show__date-item--past {
  opacity: 0.4;
}

.show__date-day {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}

.show__date-venue {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  margin-top: var(--space-1);
}

/* --------------------------------------------
   ABOUT
   -------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-10);
  align-items: start;
}

.about__text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-gray-600);
}

.about__text a {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  color: var(--color-link);
}

.about__text a:hover {
  opacity: 0.8;
}

.about__image {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .about__image {
    position: sticky;
    top: var(--space-8);
  }
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.about__image img:hover {
  transform: rotate(0deg);
}

/* --------------------------------------------
   CONTACT / FOOTER
   -------------------------------------------- */
.footer-contact {
  background-color: #1e3a8a;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ctext x='4' y='38' font-size='36'%3E🗣️%3C/text%3E%3C/svg%3E"), auto;
}

.contact__fun {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

.contact__card {
  padding: var(--space-8);
  background-color: var(--color-white);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact__card:nth-child(1) {
  transform: rotate(-1.5deg);
}

.contact__card:nth-child(2) {
  transform: rotate(1.5deg);
}

.contact__card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  background-color: #f9fafb;
}

.contact__card-emoji {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.contact__card-role {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: var(--space-2);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.contact__card-name {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  color: #1e3a8a;
  font-family: var(--font-display);
  line-height: 1.1;
}

.contact__card-info {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-3);
  line-height: var(--line-height-relaxed);
  color: #1e3a8a;
  font-family: var(--font-body);
}

.contact__card-info a {
  color: #1e3a8a;
  text-decoration: underline;
}

.contact__card-info a:hover {
  text-decoration: none;
}

.contact__card-address {
  font-size: var(--font-size-xs);
  color: #1e3a8a;
  margin-top: var(--space-3);
  line-height: var(--line-height-relaxed);
  font-family: var(--font-body);
}

.contact__card-address a {
  color: #1e3a8a;
  text-decoration: underline;
}

.contact__card-address a:hover {
  text-decoration: none;
}

.contact__social-links {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-4);
  justify-content: center;
}

.contact__social-icon {
  font-size: var(--font-size-3xl);
  color: #1e3a8a;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact__social-icon:hover {
  color: #1e40af;
  transform: scale(1.1);
}

.footer-signature {
  text-align: center;
  margin-top: var(--space-16);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-signature a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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

/* Garder les liens blancs dans les sections */
.section a {
  color: inherit;
}

.section a:hover {
  text-decoration: underline;
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  background-color: var(--bg-footer);
  background-size: cover;
  background-position: center;
  }

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: var(--space-4);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.footer__link:hover {
  color: var(--color-black);
}

.footer__copy {
  font-size: var(--font-size-sm);
  color: var(--color-gray-500);
}

/* --------------------------------------------
   RESPONSIVE
   -------------------------------------------- */

/* Tablet */
@media (max-width: 768px) {
  :root {
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --space-20: 4rem;
    --space-24: 5rem;
  }

  /* Nav mobile */
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .show__body {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about__image {
    order: -1;
  }

  .contact__fun {
    grid-template-columns: 1fr;
  }
  
  .nav__social {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --space-20: 3rem;
  }

  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .nav__inner {
    gap: var(--space-3);
  }

  .nav__link {
    font-size: var(--font-size-xs);
  }
}
