p{
    color:#cccccc !important;
}

body{
    color:#cccccc !important;
}
/* ==========================
   LAYOUT BUILDER
========================== */

.layout {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.layout-col {
  flex: var(--span);
  min-width: 0; /* Empêche les débordements */
}

.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.page-content {
  overflow-wrap: break-word;
  word-break: break-word;
}

.layout-row {
  width: 100%;
}

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

/* ==========================
   HEADER
========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  padding: 30px 2vw;
}

/* ==========================
   MENU TOGGLE (EXPLORE / BURGER)
========================== */

.menu-toggle {
  background: none;
  border: none;
  color: #cccccc;
  font-family:  "memori", 'TemposRomanMonoBeta', monospace !important;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  justify-self: start;
  padding: 0;
  line-height: 1;
  position: relative;
}

/* Desktop : affiche le texte, cache le burger */
.menu-toggle .menu-text {
    display: inline;
    border-bottom: 2px solid #fff;
    font-family: "memori", 'TemposRomanMonoBeta', monospace !important;
    font-size: 1.5rem;
}

.menu-toggle .menu-text:hover {
    display: inline;
        color: #f4e04d;
    border-bottom: 1px solid #f4e04d;
}

.menu-toggle .burger-icon {
  display: none;
}

/* LOGO */
.header-logo {
  justify-self: center;
  line-height: 1;
}

.header-logo img {
  height: 50px;
  display: block;
}

/*Effet logo*/
.header-logo img {
  transition: 
    filter .4s ease,
    transform .4s ease;
}

.header-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(244, 224, 77, 0.7))
          drop-shadow(0 0 24px rgba(244, 224, 77, 0.35));
  transform: scale(1.02);
}


/* TICKETS */
.header-tickets {
  justify-self: end;
  line-height: 1;
}

.header-tickets a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.header-tickets img {
  width: 58px;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-tickets a:hover img {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ==========================
   MENU OVERLAY
========================== */

.main-menu {
  position: fixed;
  inset: 0;
  background: #2f2f2c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 2000;
}

.main-menu.open {
  transform: translateY(0);
}

.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.main-menu li {
  margin: 20px 0;
}

.main-menu a {
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  font-family: 'TemposRomanMonoBeta', monospace;
}

.main-menu a:hover {
  color: #FFFE53;
}

/* ==========================
   MENU CLOSE (LOGO CENTRÉ)
========================== */

.menu-close {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2100;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  perspective: 800px;
}

.menu-close::before,
.menu-close::after {
  content: none !important;
}

.menu-close img {
  display: block;
  width: 48px;
  height: auto;
  opacity: 0.85;
  transform-style: preserve-3d;
  transition: opacity 0.3s ease;
}

.menu-close:hover img {
  opacity: 1;
  animation: logoPivot 0.8s ease-in-out;
}

.menu-close:focus {
  outline: none;
}

@keyframes logoPivot {
  0%, 100% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(12deg);
  }
  50% {
    transform: rotateY(-12deg);
  }
  75% {
    transform: rotateY(12deg);
  }
}

/* ==========================
   HEADER HOME (OVERLAY)
========================== */

.header-home {
  background: transparent;
  pointer-events: none;
}

.header-home .header-inner {
  padding: 30px 40px;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 30px;
}

.header-home .menu-toggle,
.header-home .header-tickets {
  pointer-events: auto;
}

.header-home .menu-toggle {
  color: #fff;
  font-family: 'TemposRomanMonoBeta', monospace;
  font-size: 1.4vw;
}

.header-home .header-tickets {
  display: none;
}

.header-home .header-tickets img {
  width: 60px;
  height: auto;
}

.header-home .header-logo {
  display: none;
}

/* ==========================
   HEADER PAGES CLASSIQUES
========================== */

.site-header:not(.header-home) {
  background: transparent;
}

.site-header:not(.header-home) .header-inner {
 padding: 40px 60px 30px;
background-color: #1D1C13;
}

.site-header:not(.header-home) .menu-toggle {
  color: #fff;
  font-family: 'TemposRomanMonoBeta', monospace;
  font-size: 16px;
}
   

.site-header:not(.header-home) .menu-toggle:hover{
   color:#FF5722;
  font-family: 'TemposRomanMonoBeta', monospace;
  font-size: 16px;
}

.site-header:not(.header-home) .header-logo {
  display: flex;
}

.site-header:not(.header-home) .header-logo img {
  height: 80px;
}

.site-header:not(.header-home) .header-tickets {
  display: flex;
}

.site-header:not(.header-home) .header-tickets img {
  width: 60px;
  height: auto;
}

/* ==========================
   PAGES
========================== */

/*.home-page {
  height: 100vh;
  overflow: hidden;
}*/


.page:not(.home-page) {
  padding-top: 120px;
    margin-top: 15vh;
}

/* ==========================
   PAGE TRANSITION (SLIDE UP)
========================== */
/*
.is-page .page {
  transform: translateY(120px);
  margin-top: 20vh;
  opacity: 0;
  animation: pageSlideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}*/

@keyframes pageSlideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================
   PAS DE HEADER SUR LA HOME
========================== */

.is-home .site-header {
  display: none !important;
}

/* ==========================
   RESPONSIVE MOBILE
========================== */

@media (max-width: 768px) {
  /* Header */
  .header-inner {
    padding: 20px 5vw !important;
  }

  .header-logo img {
    height: 40px !important;
  }

  .header-tickets img {
    width: 40px !important;
  }

  /* Menu Toggle → Burger */
  .menu-toggle {
    width: 30px;
    height: 24px;
    text-decoration: none;
    padding: 0;
  }

  /* Cache le texte EXPLORE */
  .menu-toggle .menu-text {
    display: none;
  }

  /* Affiche le burger */
  .menu-toggle .burger-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
  }

  /* Ligne du haut */
  .menu-toggle .burger-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f4e04d;
    transition: all 0.3s ease;
  }

  /* Ligne du milieu */
  .menu-toggle .burger-icon::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f4e04d;
    transition: all 0.3s ease;
  }

  /* Ligne du bas (utilise un pseudo sur le button) */
  .menu-toggle::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f4e04d;
    transition: all 0.3s ease;
  }

  /* Animation menu ouvert */
  .menu-toggle.active .burger-icon::after {
    opacity: 0;
  }

  .menu-toggle.active .burger-icon::before {
    top: 11px;
    transform: rotate(45deg);
  }

  .menu-toggle.active::before {
    bottom: 11px;
    transform: rotate(-45deg);
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  .menu-toggle {
    width: 24px;
    height: 20px;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    width: 24px;
  }
}


/* ==========================
   FOOTER
========================== */

.site-footer {
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 5vw 40px;
  background: #1d1c13;
  color: #cccccc;
  font-family: 'TemposRomanMonoBeta', monospace;
}

/* GRID PRINCIPAL */
.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}


/*footer image reverse*/
.footer-logo-swap img {
  transition: opacity 0.25s ease, filter 0.25s ease;
}


/* LOGO */
.site-footer-logo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* COLONNES */
.site-footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-column h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.site-footer-column a,
.site-footer-column p {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  line-height: 1.6;
}

.site-footer-column a:hover {
  color: #ffffff;
}

/* COPYRIGHT */
.site-footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* ==========================
   FOOTER – RESPONSIVE LAYOUT
========================== */

/* Desktop (default) : logo | links */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Logo */
.footer-logo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Links container */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ==========================
   MOBILE
========================== */

/* ==========================
   FOOTER – MOBILE LOGO ONLY
========================== */

@media (max-width: 768px) {
  /* On cache les liens */
  .footer-links {
    display: none !important;
  }

  /* La grille devient 1 colonne */
  .footer-top {
    grid-template-columns: 1fr !important;
  }

  /* Logo pleine largeur */
  .footer-logo img {
    width: 100%;
    max-width: 100% !important;
    height: auto;
    display: block;
  }
}


/* Empêcher la coupure des mots dans les titres */
h1, h2, h3, h4, h5, h6,
.page-title,
.block-titre {
    color:#cccccc;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none; /* Pas de césure */
  word-break: keep-all; /* Garde les mots entiers */
  
  /* Ajustement automatique de la taille si trop long */
  max-width: 100%;
  font-size: clamp(1.5rem, 4vw, 3rem); /* Taille responsive */
}

/* Pour les titres spécifiques comme "Transportation" */
.block-titre {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1.2;
  text-align: left;
}

/* Alternative : forcer le texte à rester sur une ligne et réduire */
.no-break-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Pour ajuster automatiquement selon la longueur du texte */
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
}

.block-titre {
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.3;
}


.block-texte a:hover{
    color:#fffe53;
}


/* FOOTER STYLE */
.memori-footer {
  background-color: transparent;
  color: #cccccc;
  padding: 40px 60px 30px;
  font-family: 'TemposRomanMonoBeta', monospace;
    margin-top: 8rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  grid-column: 1;
  grid-row: 1;
}

.footer-logo img {
  max-width: 400px;
  height: auto;
}

.footer-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-column a {
  color: #ffff;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.links-column a:hover {
  opacity: 0.7;
color:#fffe53;
}

.footer-separator {
  height: 2px;
  background-color: #cccccc;
  margin: 30px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

.diamond {
  color: #f4e04d;
  font-size: 18px;
}

.copyright {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .memori-footer {
    padding: 30px 20px 20px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo,
  .footer-links {
    flex: 1 1 100%;
  }
  
  .footer-logo img {
    max-width: 250px;
  }
  
  .footer-links {
    gap: 40px;
    justify-content: flex-start;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}


/* =================================
   STICKY FOOTER - À ajouter dans votre CSS global
   ================================= */

/* Sur le HTML et BODY */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Structure principale du site */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Le contenu principal prend tout l'espace disponible */
main {
  flex: 1 0 auto;
}

/* Le footer reste en bas */
footer {
  flex-shrink: 0;
}

/* =================================
   PAGE CLASSIQUE – BASE SAINE
   Compatible Kirby Layout Builder
   ================================= */

/* Sécurité globale */
.page-classique {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: #1d1c13;
}

/* Header de page */
.page-header {
  max-width: 1200px;
  padding: 0 1.5rem;
}

.page-title {
  margin: 0;
  font-size: 2.6rem;
  color: #fff;
}

.page-subtitle {
  margin-top: 0.5rem;
  opacity: 0.7;
  color: #fff;
}

/* =================================
   LAYOUT BUILDER
   ================================= */

.page-builder {
  width: 100%;
}

/* Section (layout) */
.layout {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1.5rem;
  gap: var(--gap, 2rem);
}

/* Colonnes */
.layout-col {
  box-sizing: border-box;
  min-width: 0;
  flex-grow: 1;
}

/* Gestion des spans Kirby (12 colonnes) */
.layout-col {
  flex-basis: calc(var(--span, 12) / 12 * 100%);
  max-width: calc(var(--span, 12) / 12 * 100%);
}

/* =================================
   ESPACEMENTS DE SECTIONS
   ================================= */

.margin-none   { margin: 0; }
.margin-small  { margin: 2rem 0; }
.margin-medium { margin: 4rem 0; }
.margin-large  { margin: 6rem 0; }

.gap-none   { gap: 0; }
.gap-small  { gap: 1rem; }
.gap-medium { gap: 2rem; }
.gap-large  { gap: 4rem; }

/* =================================
   CONTENU GÉNÉRIQUE
   ================================= */

/* Sécurité anti débordement */
.page-classique img,
.page-classique iframe,
.page-classique video {
  max-width: 100%;
  height: auto;
}

/* Texte long (URLs, mots très longs, etc.) */
.page-classique p,
.page-classique li,
.page-classique div {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* =================================
   RESPONSIVE
   ================================= */

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .layout-col {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .page-header {
    margin-bottom: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .layout {
    padding: 0 1rem;
    gap: 1rem;
  }
}


/*Titre page - Classique */
.page-intro {
  max-width: 780px;
padding: 0 1.5rem;
    font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  text-align: left;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: introFade 0.8s ease-out forwards;
}

@keyframes introFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/**/


/* ==========================
   PAGE INTRO – PAGES CLASSIQUES
   (texte éditorial simple)
========================== */


.page-intro {
  max-width: 1200px;              /* même largeur que .page-header */
  margin: clamp(2rem, 4vh, 4rem) 0 0; /* PLUS de centrage auto */
  padding: 0 1.5rem;              /* même padding que le header */

  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  text-align: left;
  color: #fff;

  opacity: 0;
  transform: translateY(20px);
  animation: pageIntroFade 0.8s ease-out forwards;
}

/* Texte */
 .page-intro p {
    margin: 0;
    max-width: 73ch;
}

/* Séparateur */
.page-intro::after {
  content: "";
  display: block;
  margin-top: 24px;
  width: 220px;
  height: 2px;
  background: currentColor;
  opacity: 0.8;
}

/* Animation */
@keyframes pageIntroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-intro {
    font-size: 1.1rem;
    margin-top: 2.5rem;
  }

  .page-intro::after {
    width: 160px;
  }
}



/*Citation*/
blockquote,
.citation {
  color: #1d1c13;

  text-shadow:
    0.5px  0.5px 0 #f4e04d,
   -0.5px  0.5px 0 #f4e04d,
    0.5px -0.5px 0 #f4e04d,
   -0.5px -0.5px 0 #f4e04d;
}


/*Iframe*/
/* wrapper générique */
.iframe-wrapper {
  width: 100%;
}

.iframe-wrapper iframe {
  width: 100%;
  border: 0;
  display: block;
}

/* mode ratio (YouTube/Vimeo) */
.iframe-wrapper.ratio {
  position: relative;
  aspect-ratio: var(--ratio);
}

.iframe-wrapper.ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* mode hauteur fixe (SoundCloud/Map/etc.) */
.block-iframe--soundcloud .iframe-wrapper iframe,
.block-iframe--map .iframe-wrapper iframe,
.block-iframe--mixcloud .iframe-wrapper iframe {
  height: 100%;
}


/* ==========================
   IFRAME BLOCK – FIX FINAL
========================== */

.block-iframe {
  width: 100%;
  margin: 2rem 0;
}

.iframe-wrapper {
  width: 100%;
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Neutralise toute règle globale dangereuse */
iframe {
  height: auto;
}


/* ==========================
   HOME – UNBLOCK SCROLL (OVERRIDE)
   (must be LAST in style.css)
========================== */

body.is-home,
body.is-home html {
  overflow-y: auto !important;
}

.page.home-page {
  height: auto !important;
  min-height: 100vh !important;
  overflow: visible !important;
}

/* Le hero reste plein écran */
.page.home-page .desktop-wrapper {
  height: 100vh;
}

/* Sécurité anti débordement à droite */
.page.home-page,
.page.home-page * {
  max-width: 100%;
}

.page.home-page .home-lineup {
  width: 100%;
  overflow: visible;
}


/*coookies*/
.cky-revisit-bottom-left {
    bottom: 60px !important;
    left: 15px;
}




@media screen and (max-width: 768px) {
.cky-revisit-bottom-left {
    bottom: -45px !important;
    left: 15px;
}

}