body,
body.bg-dark {
    background-color: var(--light) !important;
}
/* ---------- VARIABLES ---------- */
:root {
    --primary: #E53B17;
    --accent: #FAB824;
    --dark: #000;
    --light: #fff;
    --comment-bg: #1a1a1a;
}

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

/* ---------- BODY ---------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--light);
    line-height: 1.6;
}



/* ---------- MENU ---------- */
header {
    background-size: 100%;
    width: 100%;
    font-size: 38px;
}

.navbar-nav.mb-2.mb-lg-0 {
    margin: 0 auto;
    margin-right: 0px;
  }

@media (min-width: 992px) {
    .navbar-nav .nav-link {
      font-size: 0.9rem;
    }
  
    .navbar-nav .btn {
      font-size: 0.9rem;
      padding: 0.375rem 0.75rem;
    }
    .navbar-brand img {
        height: 50px;
        width: 50px;
    }
      /* Réduction des liens de navigation */
  .navbar-nav .nav-link {
    font-size: 0.9rem; /* ou 14px */
  }

  /* Réduction des boutons en desktop */
  .navbar-nav .btn {
    font-size: 0.85rem;
    padding: 0.3rem 0.9rem;
  }

  /* Optionnel : si tu veux aussi ajuster la taille des pictos à côté des boutons */
  .navbar-nav img.pictogramme {
    height: 16px;
    width: 16px;
    margin-right: 5px;
  }
}

@media (max-width: 991px) {
    .btn.btn-outline-light.fw-bold.rounded-pill.px-4.py-2.text-center {
        font-size: 40px;
    }
    .btn.btn-warning.fw-bold.rounded-pill.px-4.py-2.text-center {
        font-size: 40px;
    }
}


.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(0, 0, 0);
}


/* ---------- PARALLAX ---------- */


/* ---------- SECTION D'ACCUEIL ---------- */


/* ---------- COMMENTAIRES ---------- */
.commentaire {
    background-color: #444;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem auto;
    width: 90%;
    max-width: 700px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: white;
}

.commentaire:hover {
    background-color: #857e66f3;
    color: #000;
    transform: translateY(-4px);
}

.commentaire strong {
    font-size: 1.1rem;
}

.commentaire em {
    font-size: 0.9rem;
    color: #000000;
}

.commentaires-section h3 {
   color: white
}

@media screen and (max-width: 600px) {
    .commentaire {
        flex: 0 0 90%;
    }
}

/* ---------- HR ---------- */
hr {
    border: none;
    border-top: 1px solid #444;
    width: 90%;
    margin: 1rem auto;
}
/* -------- PARALLAX CONTENU -------- */
.parallax {
    background-image: url('/view/img/murder-parallax.jpg');
    height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

.parallax-content {
    z-index: 2;
    color: white;
    text-align: center;
}

.parallax-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.parallax-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.parallax-buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #b52d10;
}

.btn-secondary {
    background-color: var(--accent);
    color: black;
}

.btn-secondary:hover {
    background-color: #c79d1d;
}

/* -------- PICTOGRAMMES -------- */
.infos-rapides {
    display: flex;
    justify-content: center;
    gap: 20rem;
    background-color: var(--primary);
    padding: 2rem 1rem;
    text-align: center;
    flex-wrap: wrap;
}

.info-item {
    max-width: 120px;
    color: var(--light);
}

.info-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
}

/* -------- SECTIONS INTERNES (CONCEPT, INFOS, MENTIONS) -------- */
.page-section {
    background-color: #1a1a1a;
    padding: 4rem 2rem;
    color: var(--light);
    max-width: 900px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.page-section h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #ddd;
}

/* Lien stylé */
.page-section a {
    color: var(--accent);
    text-decoration: underline;
}

.page-section a:hover {
    color: var(--primary);
}

/* Responsive */
@media screen and (max-width: 600px) {
    .page-section {
        padding: 2rem 1rem;
    }

    .page-section h2 {
        font-size: 2rem;
    }
}


/* -------- FORMULAIRES INSCRIPTION / CONNEXION -------- */
.form-container {
    max-width: 500px;
    margin: 4rem auto;
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    color: var(--light);
}

.form-container h2 {
    text-align: center;
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
    margin-top: -28px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-container label {
    font-weight: bold;
    color: #575757;
}

.form-container input {
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-container input:focus {
    border-color: var(--accent);
    outline: none;
}

.form-container button {
    margin-top: 1rem;
    padding: 0.9rem;
    background-color: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #b53010;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .form-container {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    .commentaire {
        flex: 0 0 100%;
      }
}


/* -------- SCÉNARIO INTRO 3 COLONNES -------- */
.scenario-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--light);
    padding: 4rem 2rem;
    gap: 5rem;
    flex-wrap: wrap;
    margin: auto;
}

.intro-col {
    flex: 1;
    min-width: 250px;
}

.intro-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #000000;
}

.intro-col.right {
    gap: 1.2rem;
    align-items: center;
}

.mini-info {

    align-items: center;
    gap: 0.5rem;
}

.mini-info img {
    width: 110px; /* adapte selon tes besoins */
    height: auto;
}



.mini-info span {
    font-size: 1rem;
    color: #fff;
}

.right {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    gap: 1rem; /* espacement entre les éléments */
  }

/* Responsive */
@media screen and (max-width: 768px) {
    .scenario-intro {
        flex-direction: column;
        text-align: center;
    }

    .intro-col.right {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .mini-info img {
        width: 80px;
        height: auto;
      }
    .right {
        grid-template-columns: 1fr; /* une seule colonne en mobile */
    }
}

  

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.commentaires-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
}

.commentaire {
    flex: 0 0 80%;
    max-width: 500px;
    scroll-snap-align: start;
    background-color: #ecdfb5f3;
    border-radius: 8px;
    padding: 1rem;
    color: black;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.commentaires-section{
    background-color: #FAB824;
}

/* ---------- CARROUSEL SCÉNARIO (taille image d'origine) ---------- */
.carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    height: 600px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: all 0.5s ease;
    transform: scale(0.85);
    z-index: 1;
}

.carousel-item.center {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.carousel-item.left {
    left: 0;
    transform: translateX(-60%) scale(0.85);
    z-index: 2;
}

.carousel-item.right {
    right: 0;
    transform: translateX(60%) scale(0.85);
    z-index: 2;
}

/* BOUTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem 1rem;
}

.carousel-btn:hover {
    color: var(--primary);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}



.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1rem;
    text-align: left;
  }

  
  .footer-col {
    flex: 1;
    min-width: 200px;
    color: #fff;
  }
  
  .footer-col h4 {
    margin-bottom: 1rem;
    color: black;
    font-size: 1.1rem;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .footer-col ul li a {
    color: rgb(61, 61, 61);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: var(--accent);
  }
  
  .contact-icons {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }
  
  .contact-icons img {
    width: 24px;
    height: 24px;
  }
  
  .btn-newsletter {
    margin-top: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-newsletter:hover {
    background-color: #b53010;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .footer-columns {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .footer-col {
      margin-bottom: 2rem;
    }
  
    .contact-icons {
      justify-content: center;
    }
  }
  .intro-images-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    margin: 1rem 0 2rem 0;
      margin-left: 0px;
    padding-left: 2rem;
    margin-left: 2%;
    margin-top:5%;
}

.intro-img {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

.inscription-section {

  font-family: 'Arial', sans-serif;
  background-color: #EDEDED;
}

.intro-text {
  padding: 40px;
  text-align: left;
  border-radius: 10px;
  font-size: 1.2rem;
}

.intro-text h2 {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.form-container {
  display: flex;
  background-color: #F2F2F2;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.signup-form {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
  flex: 1;
  padding: 10px;
  border: 2px dashed #F44336;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
  color: black;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  gap: 8px;
  color: #333;
}

.signup-form button {
  background-color: #F44336;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;

}

.signup-form button:hover {
  background-color: #D32F2F;
}

.form-logo {
  background-color: #FDEBCE;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #F44336;
}

.form-logo img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}
.form-and-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: #febb24;
  }

    @media screen and (max-width: 768px) {
    .form-and-image {
      flex-direction: column;
      align-items: center;
    }
  
    .intro-images-row .intro-img {
      max-width: 100%;
    }
  }
  
  .intro-paragraph-and-image {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
}

  
  .intro-paragraph-and-image p {
    flex: 1 1 50%;
    max-width: 50%;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

  
  .additional-image img {
    width: 88%;
    height: auto;
  }
  @media screen and (max-width: 600px) {
    .parallax-content h1 {
      font-size: 2.2rem;
    }
  
    .parallax-content h2 {
      font-size: 1.2rem;
    }
  
    .page-section h2,
    .form-container h2 {
      font-size: 1.8rem;
    }
  }
  @media (max-width: 600px) {
    .btn {
      font-size: 1.2rem;
      padding: 0.6rem 1.2rem;
    }
  }  
  
  .bloc-infos {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: rgb(255, 227, 148);
}
@media screen and (max-width: 768px) {
    .intro-paragraph-and-image {
        flex-direction: column;
    }
    .intro-paragraph-and-image p,
    .bloc-infos {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

  
  .bloc-infos .info-item {
    display: flex;
    align-items: center;
    max-width: 150px;
    text-align: center;
    color: #000;
  }
  
  .bloc-infos .info-item img {
    width: 30px;
    height: auto;
  }
  
  .bloc-infos .info-item p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .bloc-infos ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 0 auto;
  }
  
  .bloc-infos li {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
  }

.infojaune {
    background-color: #FAB824;
  }

  .infojaune .intro-img {
    padding-left: 2rem;
    margin-left: 5%;
    margin-top: 5%;
  }

  .infoblanc {
    background-color: white;
  }

  .infoblanc .intro-img {
    padding-left: 2rem;
    margin-left: 5%;
    margin-top: 5%;
  }

  .infoconcept {
    background-color: #f6d3ad;
  }

  .infoconcept .intro-img {
    padding-left: 2rem;
    margin-left: 5%;
    margin-top: 5%;
  }


  .info-itineraire {
    background-color: #FAB824;
    padding: 3rem 2rem;
  }
  
  .contenu-itineraire {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .carte-google {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .carte-google iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  
  .btn-carte {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .btn-carte:hover {
    transform: scale(1.03);
  }
  
  .bloc-infos {
    flex: 1 1 35%;
    background-color: #f0e5d8;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .bloc-infos ul {
    padding-left: 1rem;
  }
  
  .bloc-infos li {
    margin-bottom: 0.5rem;
  }
  
 /* SECTION GLOBALE */
.promo-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* CONTENU CENTRÉ */
  .promo-content {
    max-width: 900px;
    z-index: 2;
    width: 100%;
  }
  
  /* CONTENEUR À 2 COLONNES */
  .promo-text-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .promo-text {
    flex: 1 1 300px;
    font-size: 1.1rem;
    color: #222;
    line-height: 1.7;
    text-align: left;
  }
  
  /* BOUTON */
  .promo-button {
    background-color: #e84118;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    clip-path: polygon(10% 0%, 90% 0%, 100% 30%, 90% 100%, 10% 100%, 0% 70%);
    box-shadow: 2px 4px 0 rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s;
  }
  
  .promo-button:hover {
    background-color: #c23616;
  }
  
  /* DÉCORATIONS */
  .promo-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
  }
  
  .promo-decor--left {
    bottom: 0;
    left: 0;
    max-height: 100%;
  }
  
  .promo-decor--right {
    top: 0;
    right: 0;
    max-height: 100%;
  }
  
  .promo-decor--bottom {
    bottom: 0;
    right: 0;
    max-height: 220px;
    width: auto;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .promo-text-container {
      flex-direction: column;
      gap: 20px;
    }
  
    .promo-text {
      text-align: center;
      font-size: 1rem;
    }
  
    .promo-button {
      font-size: 0.9rem;
      padding: 12px 20px;
    }
  
    .promo-decor--left,
    .promo-decor--right,
    .promo-decor--bottom {
      max-height: 100px;
      opacity: 0.7;
    }
  }
  
  @media (max-width: 480px) {
    .promo-button {
      font-size: 0.85rem;
      padding: 10px 18px;
    }
  
    .promo-decor--left,
    .promo-decor--right,
    .promo-decor--bottom {
      display: none;
    }
  }
  
  .etapes-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 20px;
    background-color: #f6d3ad; /* couleur beige orangée */
    text-align: center;
  }
  
  .etape {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .etape-icone {
    height: 60px;
    margin-bottom: 15px;
  }
  
  .etape-titre {
    font-size: 1.5rem;
    margin-bottom: 10px;

  }
  
  .etape-description {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #222;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .etapes-section {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .etape-icone {
      height: 50px;
    }
  
    .etape-titre {
      font-size: 1.3rem;
    }
  
    .etape-description {
      font-size: 0.95rem;
    }
  }
  

/* Ajoute ceci dans styles.css */
.mentions-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    padding: 40px 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentions-section h2 {
    color: #E53B17;
    font-family: 'Permanent Marker', cursive;
    margin-bottom: 24px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.mentions-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(229,59,23,0.08);
    padding: 32px 28px;
    max-width: 600px;
    width: 90%;
    color: #222;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mentions-card strong {
    color: #E53B17;
}

.mentions-card a {
    color: #FAB824;
    text-decoration: underline;
    transition: color 0.2s;
}

.mentions-card a:hover {
    color: #E53B17;
}

/* Style pour le formulaire de commentaire */
.commentaire-form-section {
    background: #fff8e1;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(229,59,23,0.07);
    max-width: 600px;
    margin: 40px auto 24px auto;
    padding: 32px 24px 18px 24px;
    text-align: center;
}

.commentaire-form-section h2 {
    color: #E53B17;
    font-family: 'Permanent Marker', cursive;
    margin-bottom: 18px;
}

.commentaire-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.commentaire-form label {
    font-weight: bold;
    color: #E53B17;
    text-align: left;
}

.commentaire-form textarea {
    resize: vertical;
    border-radius: 8px;
    border: 1px solid #FAB824;
    padding: 10px;
    font-size: 1rem;
    min-height: 80px;
    transition: border 0.2s;
}

.commentaire-form textarea:focus {
    border: 2px solid #E53B17;
    outline: none;
}

.commentaire-form button {
    background: #FAB824;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.commentaire-form button:hover {
    background: #E53B17;
    color: #fff;
}

.commentaire-info {
    margin-top: 12px;
    font-size: 0.98rem;
    color: #888;
}


/* Cadre rouge pour la messagerie */
.messagerie-cadre {
    border: 3px solid #E53B17;
    border-radius: 18px;
    max-width: 900px;
    margin: 40px auto 24px auto;
    padding: 32px 28px;
    background: #fff8f6;
    min-height: 60vh;
    box-shadow: 0 4px 24px rgba(229,59,23,0.08);
}

.messagerie-cadre h2 {
    color: #E53B17;
    font-family: 'Permanent Marker', cursive;
    margin-bottom: 18px;
    text-align: center;
}

.btn-nouveau-message {
    display: inline-block;
    background: #FAB824;
    color: #222;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 18px;
    transition: background 0.2s;
}
.btn-nouveau-message:hover {
    background: #E53B17;
    color: #fff;
}

.liste-messages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.message-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(229,59,23,0.07);
    padding: 18px 16px;
    margin-bottom: 18px;
}

.message-entete {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.message-date {
    color: #888;
    font-size: 0.95em;
    font-style: italic;
}

.message-contenu {
    margin-top: 6px;
    word-break: break-word;
    font-size: 1.08rem;
    color: #222;
}
@media screen and (max-width: 700px) {
    .messagerie-cadre {
        padding: 12px 4vw;
        max-width: 98vw;
    }
    .message-item {
        padding: 10px 4px;
    }
}


.form-nouveau-message {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.form-nouveau-message label {
    font-weight: bold;
    color: #E53B17;
    text-align: left;
}

.form-nouveau-message select,
.form-nouveau-message textarea {
    border-radius: 8px;
    border: 1px solid #FAB824;
    padding: 10px;
    font-size: 1rem;
    transition: border 0.2s;
}

.form-nouveau-message textarea:focus,
.form-nouveau-message select:focus {
    border: 2px solid #E53B17;
    outline: none;
}

.form-nouveau-message button {
    background: #FAB824;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.form-nouveau-message button:hover {
    background: #E53B17;
    color: #fff;
}


/* Style pour la page profil */
.profil-cadre {
    border: 3px solid #E53B17;
    border-radius: 18px;
    max-width: 500px;
    margin: 40px auto 24px auto;
    padding: 32px 28px;
    background: #fff8f6;
    box-shadow: 0 4px 24px rgba(229,59,23,0.08);
    color: #222;
}

.profil-cadre h2 {
    color: #E53B17;
    font-family: 'Permanent Marker', cursive;
    margin-bottom: 18px;
    text-align: center;
}

.profil-infos p {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #222;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    box-shadow: 0 1px 6px rgba(229,59,23,0.04);
}

.profil-infos span {
    color: #E53B17;
    font-weight: bold;
    margin-right: 8px;
}
@media screen and (max-width: 600px) {
    .profil-cadre {
        padding: 16px 6vw;
        max-width: 98vw;
    }
    .profil-infos p {
        font-size: 1rem;
        padding: 8px 6px;
    }
}