/* =======================
   VARIABLES
======================= */
:root {
    --dark: #161519;
    --gold: #e0ae61;
    --gold-soft: #cf9a4f;
    --light: #f7f6f3;
    --text: #2f2f2f;
}

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

body {
    font-family: "Segoe UI", sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-soft);
    font-family: "Georgia", serif;
    text-align: center;
}

html, body {
  overflow-x: hidden;
}

/* =======================
   HEADER (GRID SANS CONFLIT)
======================= */

header {
  background: linear-gradient(180deg, #161519, #1f1e23);
}

.header-top {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | titre | bouton */
  align-items: center;
  gap: 16px;
  padding: 26px clamp(16px, 4vw, 60px) 18px;
}

/* Logo */
.logo-link {
  position: static;     /* enlève l'absolu */
  margin: 0;            /* enlève margin-left:100px */
  justify-self: start;
}

.logo {
  width: clamp(70px, 10vw, 120px);
  display: block;
}

/* Titre */
.site-title {
  text-align: center;
  color: var(--gold);
  font-family: "Georgia", serif;
  justify-self: center;
}

.site-title h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.05;
}

.site-title h2 {
  font-size: clamp(1.1rem, 2.2vw, 2.2rem);
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.1;
}

/* Bouton */
.btn-contact {
  position: static;     /* enlève l'absolu */
  transform: none;      /* enlève translateY */
  margin: 0;            /* enlève margin-right:100px */
  justify-self: end;

  padding: 14px clamp(18px, 2.2vw, 36px);
  border-radius: 40px;
  background-color: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--gold-soft);
  transform: scale(1.05);
}

/* =======================
   NAVBAR
======================= */
.navbar {
    position: relative;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 15px 0;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar a:hover {
    color: var(--gold);
}

/* =======================
   MAIN & SECTIONS
======================= */

main {
    padding: clamp(20px, 5vw, 80px);
}


section {
    margin-bottom: 100px;
}


/* =======================
   DUO CONTAINER
======================= */
.duo-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


.image {
    width: 50%;
    height: 340px;            
    object-fit: cover;        
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.duo-text h3 {
    font-family: "Georgia", serif;
    font-size: 2.4rem;
    color: var(--gold-soft);
    text-align: center;
    margin-bottom: 30px;
}

.duo-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Présentation : texte centré dans la colonne mais aligné à gauche */

.presentation .duo-text {
  width: 50%;
  margin: 0 auto;     /* centre le bloc dans sa colonne */
  text-align: left;   /* aligne le texte à gauche */
}

.presentation .duo-text h3,
.presentation .duo-text h4 {
  text-align: left;
}

.presentation .duo-text p {
  text-align: justify;
}

/* =======================
   PRESENTATION – TITRES CENTRÉS
======================= */

.presentation .duo-text h3,
.presentation .duo-text h4 {
  text-align: center;
}

.presentation .duo-text p {
  text-align: justify; /* ou left si tu préfères */
}


/* =======================
    VIDEO (HÉBERGÉE SITE)
======================= */

.video-wrapper {
  max-width: 1000px;                 /* cohérent avec tes sections (900–1200) */
  margin: 60px auto;
  padding-bottom: 22px;
  border-radius: 20px;               /* cohérent avec .duo-container / .audio-player */
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;               /* cohérent avec .image */
  background: #000;                  /* évite flash blanc avant lecture */
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  outline: none;
}

/* Focus clavier (accessibilité) */
.video-wrapper video:focus-visible {
  box-shadow:
    0 14px 30px rgba(0,0,0,0.18),
    0 0 0 4px rgba(207,154,79,0.25); /* var(--gold-soft) en rgba */
}


/* Responsive : réduit les marges et padding */
@media (max-width: 700px) {
  .video-wrapper {
    margin: 35px auto;
    padding: 14px;
    border-radius: 16px;
  }

  .video-wrapper video {
    border-radius: 12px;
  }
}

/* =======================
   SECTION VIDEO (TITRE AU-DESSUS)
======================= */
.duo-container-video {
  flex-direction: column;
  align-items: center;
}

.duo-container-video .duo-text {
  width: 100%;
  text-align: center;
}

.duo-container-video .video-wrapper {
  width: 100%;
  max-width: 1000px; /* garde ton design actuel */
  margin: 0;         /* important : sinon ça rajoute un gros espace */
}

/* =======================
   BOUTON CTA (dans le contenu)
======================= */
.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 40px;
  background-color: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.btn-cta:hover {
  background-color: var(--gold-soft);
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

.video-cta {
  text-align: center;
  margin-top: 80px;
}

/* =======================
   LIGHTBOX IMAGE
======================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: zoomIn 0.35s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* curseur explicite */
.image.is-zoomable {
  cursor: zoom-in;
}


/* =======================
   ANIMATION FADE-IN SCROLL
======================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =======================
   REVEAL GLOBAL
======================= */
.reveal {
  opacity: 1; 
}

/* IMAGE */
.reveal-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* TEXTE (retardé) */
.reveal-text {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition-delay: 0.2s;
}

/* ACTIF */
.reveal.active .reveal-img,
.reveal.active .reveal-text {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   BOUTON AUDIO (LISIBLE)
======================= */
.btn-audio {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
    padding: 14px 30px;

    border-radius: 35px;
    background-color: var(--gold-soft);
    color: var(--dark);

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;

    text-decoration: none;
    border: none;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

.btn-audio:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* =======================
   VIDEOS
======================= */

/* VIDÉOS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.video-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* GALERIE PHOTOS */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* =======================
   MÉDIAS – CENTRAGE CONTENU
======================= */
.presentation .duo-text,
.sonorisation .duo-text {
    width: 100%;
    text-align: center;
}

.duo-text p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    text-align: center;
}

/* =======================
   PAGE MARIAGES – ALIGNEMENT TEXTE
======================= */
.duo-text p.description-mariage {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

.mariage-net-wrapper {
  text-align: center;
  margin-top: 40px;
}

.mariage-net {
    display: inline-block;   /* limite la zone cliquable */
    line-height: 0;          /* supprime l’espace vertical invisible */
    margin-bottom: 40px;
    margin-top: -40px;
    text-align: center;
}

.mariage-net img {
  display: block;          /* supprime l’espace sous l’image */
}

.mariage-net-wrapper :hover{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.tarif-mariage {
    max-width: 900px;
    margin: 30px auto;
    padding: 18px 22px;
    border-left: 5px solid var(--gold-soft);
    background-color: #f8f3eb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.duo-text .tarif-mariage p {
    margin: 0;
    max-width: 100%;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
}

.zone-geographique {
    max-width: 900px;
    margin: 20px auto 30px;
    padding: 18px 22px;
    border-left: 5px solid var(--gold);
    background-color: #f8f3eb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.duo-text .zone-geographique p {
    margin: 0;
    max-width: 100%;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
}

/*AVIS CLIENTS*/

#wp-widget-reviews {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 30px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* =======================
   AUDIO PLAYER
======================= */

audio {
    width: 100%;
    margin: 15px 0;
}


.audio-player {
  background: white;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 60px auto;
}

/* HEADER */
.audio-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.audio-cover {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

.audio-info h4 {
  font-size: 0.95rem;
  color: #666;
}

.audio-info .track-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 4px 0;
}

.audio-info span {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--gold-soft);
}

/* PLAY BUTTON */
.audio-play {
  margin-left: auto;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.audio-play:hover {
  background-color: var(--gold-soft);
  color: var(--dark);
}

/* PROGRESS */
.audio-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.audio-progress span {
  font-size: 0.85rem;
  color: #666;
}

.progress-bar {
  flex: 1;
  accent-color: var(--gold-soft);
  cursor: pointer;
}

/* PLAYLIST */
.audio-playlist {
  list-style: none;
  margin-top: 15px;
  padding: 0;
}

.audio-playlist li {
  display: flex;
  justify-content: space-between;
  padding: 12px 5px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: color 0.25s ease;
}

.audio-playlist li:hover {
  color: var(--gold-soft);
}

.audio-playlist li.active {
  font-weight: 700;
  color: var(--gold-soft);
}

/* =======================
   SECTION SONORISATION AUDIO
======================= */

.audio-wrapper {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}

/* =======================
   SONORISATION – AUDIO SOUS TEXTE
======================= */

.sonorisation .duo-container {
  flex-wrap: wrap; /* permet retour à la ligne */
}

/* image colonne gauche */
.sonorisation .image {
  flex: 1 1 45%;
}

/* texte colonne droite */
.sonorisation .duo-text {
  flex: 1 1 45%;
}

/* lecteur audio prend toute la largeur */
.sonorisation .audio-player {
  flex: 1 1 100%;
  max-width: 1000px;   /* plus large qu’avant */
  margin: 40px auto 0;
}

/* =======================
   FOOTER
======================= */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-socials {
    margin-top: 15px;
}

.logo-footer {
    width: 40px;
    margin: 0 15px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-footer:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}


.footer-socials a {
    text-decoration: none;
    outline: none;
}

.footer-socials a:focus,
.footer-socials a:active,
.footer-socials a:hover {
    text-decoration: none;
}


/* =======================
   EVENEMENTS CTA
======================= */

.cta-contact {
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff, #f1efe9);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.cta-contact p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text);
}

.cta-contact a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
}

.cta-contact a:hover {
    text-decoration: underline;
}

.cta-contact .btn-cta {
    color: var(--dark);
    text-decoration: none;
}

.cta-contact .btn-cta:hover {
    color: var(--dark);
}

/* =======================
   BOUTON JUKE BOX
======================= */
.btn-jukebox {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    border-radius: 40px;
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-jukebox:hover {
    background-color: var(--gold-soft);
    transform: scale(1.05);
}

/* =======================
   JUKE BOX – CENTRAGE
======================= */
.jukebox .duo-text {
    text-align: center;
}

.jukebox .btn-jukebox {
    margin-left: auto;
    margin-right: auto;
}


/* =======================
   INVERSION IMAGE / TEXTE
======================= */
.duo-container.reverse {
    flex-direction: row-reverse;
}



/* =======================
   MENU HAMBURGER
======================= */
.menu-toggle {
    display: none;
    font-size: 2rem;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    background-color: rgba(255,255,255,0.95);
}

/* =======================
   FORMULAIRE CONTACT
=======================

.contact-form {
    display: grid;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

/* Labels 
.contact-form label {
    display: flex;
    /*flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    gap: 8px;
}

/* Champs 
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: "Segoe UI", sans-serif;
    background-color: #fff;
    transition: all 0.25s ease;
}

/* Focus élégant 
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 3px rgba(207,154,79,0.25);
}

/* Placeholder 
.contact-form textarea::placeholder {
    color: #999;
    font-size: 0.95rem;
}

/* Select 
.contact-form select {
    cursor: pointer;
}

/* Bouton envoyer 
.contact-form button {
    align-self: center;
    margin-top: 10px;
    padding: 16px 40px;
    border-radius: 40px;
    border: none;

    background-color: var(--gold);
    color: var(--dark);

    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

.contact-form button:hover {
    background-color: var(--gold-soft);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.hidden {
    display: none;
}

/* Responsive 
@media (max-width: 700px) {
    .contact-form {
        width: 100%;
    }
} */


/* =======================
   FORMULAIRE CONTACT
======================= */

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

/* Placement des champs */
.field-left {
    grid-column: 1;
}

.field-right {
    grid-column: 2;
}

.field-left:nth-of-type(1) { grid-row: 1; }
.field-left:nth-of-type(2) { grid-row: 2; }
.field-left:nth-of-type(3) { grid-row: 3; }

.field-right:nth-of-type(4) { grid-row: 1; }
.field-right:nth-of-type(5) { grid-row: 2; }
.field-right:nth-of-type(6) { grid-row: 3; }
.field-right:nth-of-type(7) { grid-row: 4; }
.field-right:nth-of-type(8) { grid-row: 5; }

/* Labels */
.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    gap: 8px;
    text-align: left;
}

/* Champs */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: "Segoe UI", sans-serif;
    background-color: #fff;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* Focus */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 3px rgba(207, 154, 79, 0.25);
}

/* Placeholder */
.contact-form textarea::placeholder {
    color: #999;
    font-size: 0.95rem;
}

/* Select */
.contact-form select {
    cursor: pointer;
}

/* Zone message un peu plus haute */
.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

/* Bouton envoyer */
.contact-form button {
    grid-column: 1 / 3;
    justify-self: center;
    margin-top: 10px;
    padding: 16px 40px;
    border-radius: 40px;
    border: none;
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover {
    background-color: var(--gold-soft);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 700px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .field-left,
    .field-right {
        grid-column: 1;
    }

    .contact-form button {
        grid-column: 1;
    }
}



/* =======================
   MERCI – MESSAGE DE CONFIRMATION
======================= */
.merci-btn-wrap {
    display: flex;
    justify-content: center;
}


/* =======================
   MESSAGE CONFIRMATION FORMULAIRE
======================= */

.form-success {
    display: none;
    margin-top: 30px;
    padding: 20px 25px;

    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;

    color: var(--dark);
    background: linear-gradient(180deg, #ffffff, #f1efe9);
    border-radius: 16px;

    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Visible */
.form-success.active {
    display: block;
}



/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {

    .duo-container {
        flex-direction: column;
        text-align: center;
    }

    .image {
        width: 100%;
    }

    .logo {
        position: static;
        margin-bottom: 20px;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 900px) {
  .header-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .logo-link { justify-self: center; }
  .btn-contact { justify-self: center; }
}

/* =======================
   MENU BURGER – TEXTE CENTRÉ
======================= */

@media (max-width: 900px) {

  .navbar ul {
    text-align: center;      /* centre le contenu global */
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar ul li a {
    display: block;
    text-align: center;      /* centre le texte */
    padding: 12px 0;
  }

}


/* =======================
   PAGE RESULTAT CONTACT – CORRECTION LAYOUT
======================= */
@media (max-width: 900px) {
.contact-result {
    display: block;  
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-result .duo-text {
    width: 100%;
}

.contact-result .duo-text p {
    max-width: 100%;
    text-align: center;
}

.contact-result h3 {
    margin-bottom: 25px;
}
}


/* =======================
   RESPONSIVE 
======================= */
@media (max-width: 900px) {
/* 1) Typo fluide (desktop -> mobile) */
.site-title h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.site-title h2 {
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
}

.duo-text h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

h4 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.duo-text p {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

/* Boutons */
.btn-contact,
.btn-cta {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  padding: clamp(12px, 1.3vw, 16px) clamp(22px, 2.4vw, 40px);
}

/* 2) Largeurs + espacements (plus de place sur l'écran) */
main {
  padding: clamp(24px, 4vw, 80px);
}

.duo-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(20px, 5vw, 80px);
    border-radius: 0;
}

/* Image : plus grande / plus immersive */
.image {
  height: clamp(240px, 30vw, 420px);
}

/* Vidéo wrapper : plus large aussi */
.video-wrapper {
  max-width: 1200px;
  width: min(1200px, 96vw);
}

/* Audio player : plus large */
.audio-player {
  max-width: 1100px;
  width: min(1100px, 96vw);
}
}

/* 3) Breakpoints : optimisation tablette / mobile */
@media (max-width: 1100px) {
  .logo-link { margin-left: 20px; }
  .btn-contact { margin-right: 20px; }
  .navbar ul { gap: 30px; }
}

@media (max-width: 900px) {
  /* tu avais déjà une règle, on l'améliore pour prendre plus de place */
  .duo-container {
    flex-direction: column;
    align-items: stretch;
  }

  .image {
    width: 100%;
    height: clamp(220px, 55vw, 380px);
  }

  /* Texte plus lisible sur mobile */
  .duo-text p {
    max-width: 100%;
    text-align: left; /* justification sur mobile souvent moins jolie */
  }

  /* Header : évite les collisions */
  .header-top {
    padding: 26px 16px 12px;
  }

  .logo-link {
    position: static;
    margin: 0;
  }

  .btn-contact {
    position: static;
    transform: none;
    margin: 14px auto 0;
    display: inline-block;
    
  }
}

@media (max-width: 900px) {
  .sonorisation .audio-player {
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
    padding: 18px;              /* réduit un peu le padding */
  }
}

@media (max-width: 520px) {
  .audio-header {
    justify-content: center;
    flex-wrap: wrap;
  }

  .audio-play {
    margin-left: 0;            /* annule le push à droite */
  }
}

@media (max-width: 520px) {
  .navbar ul { gap: 16px; }
  .duo-container { border-radius: 16px; }
  .image { border-radius: 14px; }
}