/* ==========================================
   MEMORI – Police principale (web optimisée)
========================================== */

@font-face {
  font-family: "memori";
  src:
    url("/assets/fonts/memori.woff2") format("woff2"),
    url("/assets/fonts/memori.woff") format("woff"),
    url("/assets/fonts/memori.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ==========================================
   TEMPOS – Police graphiste (branding)
   (fallback OTF uniquement)
========================================== */

@font-face {
  font-family: "TemposRomanMonoBeta";
  src:
    url("/assets/fonts/TemposRomanMonoBeta.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}




:root {
  --page-padding: 60px;
  --page-max-width: 1400px;
}


body {
  font-family: 'TemposRomanMonoBeta', monospace;
    background-color: #1d1c13;

}


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

.layout-col {
  flex: var(--span);
}

/* Pour un layout 1/2, 1/2 (6 + 6 = 12) */
/* Le span de chaque colonne est sur 12 */

/* ---- Layout Container ---- */
.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ---- Columns ---- */
.layout-col {
  flex-grow: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .layout-col {
    flex-basis: 48% !important;
  }
}

@media (max-width: 768px) {
  .layout-col {
    flex-basis: 100% !important;
  }
}


/*Gestion image*/
.block-image {
  margin: 0;
}

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

.block-image figcaption {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Ratios optionnels */
.block-image img.ratio-square {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.block-image img.ratio-landscape {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.block-image img.ratio-portrait {
  aspect-ratio: 4/5;
  object-fit: cover;
}

/*Section builder */
.section-block {
  width: 100%;
}

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

.layout-col {
  flex-grow: 1;
  min-width: 0;
  flex-basis: calc(var(--span) * 1%);
}

@media(max-width: 768px) {
  .layout-col {
    flex-basis: 100% !important;
  }
}


/*Page conteneur*/
.page {
  max-width: 1920px;   /* largeur max du contenu */
  margin: 0 auto;      /* centre sur la page */
  padding: 0 30px;     /* marge interne gauche/droite */
  overflow-wrap: break-word;   /* empêche les mots trop longs de casser la page */
  word-break: break-word;
}

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

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

.layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.layout-col {
  width: 100%; /* sécurité mobile */
  min-width: 0; /* empêche les colonnes de forcer une largeur */
}

body {
  overflow-x: hidden;
}

/*TYPO*/
h2{
    font-size: 2rem;
}

/* --------------------------
   TEXT BLOCK – RESPONSIVE SIZES
-------------------------- */

.text-xs {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
}

.text-sm {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.text-md {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.text-lg {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
}

.text-xl {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}


/* ===============================
   FORMULAIRE CONTACT – MEMORI
   Scope page classique
================================ */

.page-classique .form-contact {
  width: 60%;          /* 🔥 remplit UNIQUEMENT la colonne */
  max-width: none;      /* 🔥 plus de 60% / 900px */
  margin: 0;
  padding: 3rem;
  background-color: #1d1c13;
  color: #f5f5f5;
  font-family: 'TemposRomanMonoBeta', serif;
  box-sizing: border-box;
}

/* -------------------------------
   ROWS
-------------------------------- */

.page-classique .form-row {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}

.page-classique .form-row.two-cols .field {
  flex: 1;
}

/* -------------------------------
   FIELD
-------------------------------- */

.page-classique .field {
  display: flex;
  flex-direction: column;
}

.page-classique .field label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-classique .field input,
.page-classique .field textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #e5d100;
  color: #ffffff;
  font-size: 1rem;
  padding: 0.4rem 0;
  outline: none;
  font-family: inherit;
}

.page-classique .field textarea {
  resize: none;
  min-height: 140px;
}

/* MESSAGE pleine largeur */
.page-classique .field.full {
  width: 100%;
}

/* -------------------------------
   CHECKBOX
-------------------------------- */

.page-classique .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

.page-classique .checkbox input {
  display: none;
}

.page-classique .checkbox span {
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.page-classique .checkbox input:checked + span {
  background: #e5d100;
  border-color: #e5d100;
}

/* -------------------------------
   SUBMIT
-------------------------------- */

.page-classique .form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}

.page-classique .form-submit button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: inherit;
  padding: 0;
}

/* Diamants */
.page-classique .diamond {
  font-size: 1.2rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* État initial */
.page-classique .diamond-left {
  opacity: 1;
}

.page-classique .diamond-right {
  opacity: 0;
  transform: translateX(-6px);
}

/* Hover */
.page-classique .form-submit button:hover {
  color: #e5d100;
}

.page-classique .form-submit button:hover .diamond-left {
  opacity: 0;
}

.page-classique .form-submit button:hover .diamond-right {
  opacity: 1;
  transform: translateX(6px);
}


/*IMAGE poster sticky*/


@media (min-width: 768px) {
.img-poster{
    position: sticky;
    top: 50vh;   /* s'arrête au milieu de l'écran */
    transform: translateY(-50%); /* centre l'image sur ce point */
    z-index: 10;
    padding-top:5rem;
}
}
    
/* -------------------------------
   RESPONSIVE
-------------------------------- */

@media (max-width: 768px) {
  .page-classique .form-row {
    flex-direction: column;
    gap: 2rem;
  }

  .page-classique .form-submit {
    justify-content: center;
  }
    
.page-classique .form-contact {
    width: 100%;
    max-width: none;
}
}

/* ===============================
   CONTACT SECTION (LAYOUT)
================================ */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 🔥 1/3 - 2/3 */
  gap: 6rem;
  align-items: start;
}

/* IMAGE */
.contact-col.image img {
  width: 100%;
  height: auto;
  display: block;
}

/* FORM */
.contact-col.form {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.page-contact .contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw 8rem;
  align-items: center;
}

/* Image façon poster */
.page-contact .contact-col.image img {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}


.contact-wrapper {
  width: 100%;
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 6vw;
  box-sizing: border-box;
}

.contact-col.image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-col.form {
  width: 100%;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/*SOURIS EFFET SURVOL */
/* ===============================
   MEMORI – Mouse Aura
=============================== */

:root {
  --mx: 50vw;
  --my: 50vh;
}


/* ===============================
   Micro-glow sur le texte
=============================== */

a, p, h1, h2, h3, h4, h5, h6, span {
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Le texte s’éclaire quand la souris passe */
a:hover,
.lineup-artist:hover,
.artist-intro__title:hover {
  color: #f4e04d;
  text-shadow:
    0 0 12px rgba(244, 224, 77, 0.35),
    0 0 30px rgba(244, 224, 77, 0.15);
  transform: translateY(-1px);
}



/*Typography*/
.h3-classic{
    font-size: 1.3rem !important;
    font-family: 'memori';
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    text-align: right;
    color:#f4e04d;
}

h3{
    font-size: 1.3rem !important;
}


/*form*/
.page-classique .form-contact {
    width: 60%;
    max-width: none;
    margin: 0;
    padding: 3rem;
    background-color: #1d1c13;
    color: #f5f5f5;
    font-family: 'TemposRomanMonoBeta', serif;
    box-sizing: border-box;
    margin-top: -48vw;
}


@media screen and (max-width: 768px) {
 .page-classique .form-contact {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 3rem;
    background-color: #1d1c13;
    color: #f5f5f5;
    font-family: 'TemposRomanMonoBeta', serif;
    box-sizing: border-box;
    margin-top: -15vw;
}
}

