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

/* ---------- RESET ---------- */
* {
    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;
}
@media (min-width: 992px) {
    .navbar-nav .nav-link {
      font-size: 0.9rem; /* taille réduite en desktop */
    }
  
    .navbar-nav .btn {
      font-size: 0.9rem; /* taille réduite aussi pour les boutons */
      padding: 0.375rem 0.75rem; /* optionnel : ajuste le padding si tu veux garder un bon aspect */
    }
    .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;       /* Réduit le texte */
    padding: 0.3rem 0.9rem;   /* Réduit l'espace autour */
  }

  /* 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;
}

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

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

.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;
    color: red;
}

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



.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:2%;
}

.intro-img {
    height: 60px; /* ou ajuste selon tes images */
    width: auto;
    border-radius: 6px;
}