:root {
  --orange-prison: #eb5b25;
  --orange-hover: #c2471b;
  --noir-fond: #1d1d1d;
  --jaune-sable: #e7dbae;
  --rouge-danger: #dc3545;
  --rose-offre: #ff5151;
  --police-principale: 'Vitesse', sans-serif;
  --police-script: 'Marketing', cursive;
  --blanc: #ffffff;
  --noir: #000000;
}

/* --------------------------------------------------
   1. POLICES PERSONNALISÉES
-------------------------------------------------- */
@font-face {
    font-family: 'Vitesse';
    src: url('../fonts/Vitesse-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Vitesse';
    src: url('../fonts/Vitesse-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Marketing';
    src: url('../fonts/Marketing-script.woff2') format('woff2'),
         url('../fonts/Marketing-script.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* --------------------------------------------------
   2. RÉGLAGES GÉNÉRAUX
-------------------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
    font-family: var(--police-principale);
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
    text-align: center;
    scroll-behavior: smooth;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #000;
}
::-webkit-scrollbar-thumb {
    background-color: var(--orange-prison);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #b9ab75;
}
::-webkit-scrollbar-track {
    background: #000;
}

/* --------------------------------------------------
   3. LOADER
-------------------------------------------------- */
#loader {
  position: fixed;
  z-index: 9999;
  background-color: #000;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spinner {
  border: 6px solid #EB5B25;
  border-top: 6px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  margin-top: 20px;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1.2s forwards;
  font-weight: bold;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
   4. NAVBAR
-------------------------------------------------- */
.navbar {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    height: 70px !important;
    background: #1d1d1b !important;
    z-index: 1040 !important;
    padding: 5px 20px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    padding: 0 10px;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--orange-prison);
}

.navbar-toggler, .custom-toggler {
    border: none !important;
    outline: none !important;
    padding: 0;
}

.custom-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent !important;
}

.custom-toggler div {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.offcanvas {
    background-color: var(--noir-fond) !important;
}

.offcanvas .nav-link {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.offcanvas .nav-link:hover {
    color: var(--orange-prison);
}

/* Desktop navbar */
@media (min-width: 992px) {
    .navbar-expand-lg {
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar-expand-lg > .container-fluid {
        display: flex !important;
        align-items: center !important;
        height: 70px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar-expand-lg .navbar-nav {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        margin-left: auto !important;
    }
    
    .navbar-expand-lg .navbar-nav .nav-item {
        position: relative;
        display: flex;
        align-items: center;
        height: 70px;
        margin: 0;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
        position: relative;
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
        padding: 0 15px !important;
        margin: 0;
        line-height: 1;
        overflow: visible;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 22px;
        left: 15px;
        right: 15px;
        width: 0;
        height: 3px;
        background-color: #eb5b25;
        transition: width 0.3s ease-in-out;
    }
    
    .navbar-expand-lg .navbar-nav .nav-link:hover::after {
        width: calc(100% - 30px);
    }
}

/* --------------------------------------------------
   5. BARRE D'ACTUALITÉ
-------------------------------------------------- */
.news-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    height: 40px;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: bold;
    background: var(--jaune-sable);
    color: #000;
    position: relative;
    top: 70px;
    z-index: 1029;
}

.news-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.news-item {
    line-height: 1.4;
    margin: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    display: none;
}

.news-item.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

/* --------------------------------------------------
   6. HERO SECTION
-------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    margin-top: 70px;
    overflow: hidden;
    contain: layout style paint;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.hero-overlay .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-overlay h1 {
    font-size: 40px;
    line-height: 1.2;
    height: 96px;
    min-height: 96px;
    max-height: 96px;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.5;
    height: 54px;
    min-height: 54px;
    max-height: 54px;
    margin: 0 0 30px 0;
    font-weight: bold;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-overlay .btn {
    height: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    line-height: 1;
}

/* --------------------------------------------------
   7. BOUTONS
-------------------------------------------------- */
.btn-orange {
    background-color: #c2471b !important;
    background-image: none !important;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: bold !important;
    padding: 10px 20px;
    border-radius: 5px !important;
    border: none;
    opacity: 1 !important;
    transition: background-color 0.3s ease;
}

.btn-orange:hover,
.btn-orange:focus {
    background-color: #731f00 !important;
    color: #ffffff !important;
}

.btn-orange:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.btn-orange *,
.btn-orange i,
.btn-orange span,
.btn-orange svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.btn-orange.ripple {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-orange.ripple:active {
    transform: translateY(0);
}

#evenement-parfait .btn-orange {
    width: 100%;
}

.btn.ripple {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.ripple::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 50%;
    transform: scale(1);
    transform-origin: center;
    transition: opacity 0.6s, transform 0.6s;
    pointer-events: none;
    z-index: 0;
}

.btn.ripple:active::after {
    opacity: 1;
    transform: scale(30);
    transition: 0s;
    left: var(--ripple-x, 50%);
    top: var(--ripple-y, 50%);
}

/* --------------------------------------------------
   8. SECTIONS GÉNÉRALES
-------------------------------------------------- */
.section {
    padding: 80px 0;
    text-align: center;
}

#presentation-prison-island,
#adventure-section,
#evenement-parfait,
#conditions-age,
#reservation-pro,
#horaires-tarifs,
#galerie,
#avis-google,
#faq,
#nous-trouver {
    padding: 40px 20px;
    margin-top: 0 !important;
}

#presentation-prison-island .container,
#adventure-section .container,
#evenement-parfait .container,
#conditions-age .container,
#reservation-pro .container,
#galerie .container,
#avis-google .container,
#faq .container,
#nous-trouver .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.premTitre {
    font-size: 2.5rem;
    margin-bottom: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-weight: 700 !important;
}

.secondTitre {
    font-family: var(--police-script);
    font-style: normal;
    font-weight: 400;
    color: var(--orange-prison);
}

.section-light .premTitre {
    color: #000;
}

.section-dark .premTitre {
    color: var(--jaune-sable);
}

/* --------------------------------------------------
   9. CARTES
-------------------------------------------------- */
.card {
    background-color: #111;
}

.card-header {
    background-color: #EB5B25;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 10px;
}

.card-body ul {
    padding: 0;
    list-style: none;
}

.card-body ul li {
    padding: 5px 0;
    font-size: 16px;
}

.border-orange {
    border: 2px solid var(--orange-prison);
}

.text-orange {
    color: var(--orange-prison);
}

.card .text-orange,
h4.text-orange,
.text-uppercase.text-orange {
    color: #c2471b !important;
}

.card.bg-white.text-dark {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.card.bg-white .card-body {
    color: #212529 !important;
}

/* --------------------------------------------------
   10. PRÉSENTATION PRISON ISLAND
-------------------------------------------------- */
#presentation-prison-island {
    background: url('../images/bg-light-texture.webp') center/cover no-repeat;
}

#presentation-prison-island .premTitre {
    margin-bottom: 0;
}

#presentation-prison-island .secondTitre {
    font-family: Marketing !important;
    font-style: normal;
    font-weight: 400;
    color: var(--orange-prison);
}

.prison-days img {
    min-width: 150px;
    max-width: 40%;
    margin: 30px 0;
}

/* --------------------------------------------------
   11. BANNIÈRE DÉFILANTE
-------------------------------------------------- */
#bannerAnimationTop {
    background-color: var(--orange-prison);
    color: white;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.loop-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.loop-track {
    display: flex;
    width: fit-content;
    animation: scroll-loop-clean 40s linear infinite;
}

.loop-title {
    display: flex;
}

.loop-title__title-text {
    white-space: nowrap;
    margin: 0 10px;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    background: white;
    color: black;
    border-radius: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes scroll-loop-clean {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------
   12. SECTION AVENTURE
-------------------------------------------------- */
#adventure-section {
    background: url('../images/bg-dark-texture.webp') center center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    z-index: 1;
}

#adventure-section .premTitre {
    color: var(--jaune-sable) !important;
}

#adventure-section .secondTitre {
    font-family: Marketing !important;
    font-style: normal;
    font-weight: 400;
    color: var(--orange-prison);
}

.adventure-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.polaroid {
    background: white;
    padding: 10px 10px 20px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border-radius: 5px;
    max-width: 100%;
    display: inline-block;
    text-align: center;
    transition: transform 0.3s ease;
}

.polaroid:hover {
    transform: rotate(-1deg) scale(1.02);
}

.polaroid img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.polaroid-caption {
    font-size: 0.9rem;
    color: #333;
    font-style: italic;
    margin-top: 10px;
    padding: 0 5px;
    text-align: center;
    opacity: 0.85;
    font-family: var(--police-principale);
}

.custom-margin {
    margin-top: 50px;
}

/* --------------------------------------------------
   13. CARTES TEXTURÉES (ÉVÉNEMENTS)
-------------------------------------------------- */
#evenement-parfait {
    background: url('../images/bg-light-texture.webp') center/cover no-repeat;
}

#evenement-parfait .m-40 {
    margin-top: 25px;
}

#evenement-parfait .premTitre {
    color: #000;
    font-size: 2.5rem;
}

#evenement-parfait .secondTitre {
    font-family: Marketing !important;
    font-style: normal;
    font-weight: 400;
    color: var(--orange-prison);
    font-size: 1.9rem;
}

.textured-card {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://prisonisland-troyes.fr/assets/images/bg-dark-texture.webp') center center/cover no-repeat;
    background-blend-mode: multiply;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.textured-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.textured-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
}

.textured-card:hover img {
    transform: none !important;
}

.textured-card h3 {
    min-height: 60px;
    margin-bottom: 1rem;
}

.textured-card ul {
    flex-grow: 1;
    text-align: center !important;
}

.textured-card a.btn {
    margin-top: 10px;
    align-self: center;
}

.textured-card .btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.shine-effect {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.shine-effect::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
}

.shine-effect:hover::after {
    animation: shineFlashHover 2.5s ease-in-out 1;
    opacity: 1;
}

@keyframes shineFlashHover {
    0% {
        transform: translate(-150%, -150%) rotate(25deg);
    }
    100% {
        transform: translate(150%, 150%) rotate(25deg);
    }
}

.card .shine-effect img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.image-polaroid {
    background: white;
    padding: 10px 10px 0 10px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    display: inline-block;
    text-align: center;
    max-width: 100%;
}

.image-polaroid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* --------------------------------------------------
   14. HORAIRES & TARIFS
-------------------------------------------------- */
#horaires-tarifs {
    background: url('../images/bg-dark-texture.webp') center center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    position: relative;
    z-index: 1;
}

#horaires-tarifs .premTitre {
    color: var(--jaune-sable);
    font-size: 2.5rem;
    margin: 0;
}

#horaires-tarifs .secondTitre {
    font-family: Marketing !important;
    font-style: normal;
    font-weight: 400;
    color: var(--orange-prison);
    margin-bottom: 50px;
}

#horaires-tarifs .card {
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 5px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#horaires-tarifs .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

#horaires-tarifs .card-header {
    background-color: var(--orange-prison);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#horaires-tarifs .card-body {
    padding: 25px;
}

.horaire-list ul,
.tarif-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.horaire-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.horaire-jour {
    font-weight: bold;
    color: var(--jaune-sable);
}

.horaire-heure {
    text-align: right;
}

.info-mention {
    margin-top: 20px;
    font-size: 14px;
    color: #ffc107;
}

.tarif-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.tarif-label {
    font-weight: bold;
    color: var(--jaune-sable);
    min-width: 100px;
}

.tarif-valeur {
    text-align: right;
    flex: 1;
}

.old-price {
    position: relative;
    color: var(--rouge-danger);
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
}

.old-price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--rouge-danger);
    transform: rotate(-20deg);
}

.new-price {
    margin-right: 5px;
    color: #fff;
    font-weight: bold;
}

/* --------------------------------------------------
   15. CONDITIONS D'ÂGE
-------------------------------------------------- */
#conditions-age {
    background: url('../images/bg-light-texture.webp') center center/cover no-repeat;
    background-attachment: fixed;
    color: #111;
    position: relative;
    z-index: 1;
}

#conditions-age .card {
    background: #fff;
    border-radius: 5px;
    border: 2px solid #eb5b25;
    padding: 30px;
}

#conditions-age .card-title,
#conditions-age h4 {
    color: var(--orange-prison);
    font-weight: bold;
}

#conditions-age .premTitre {
    font-size: 2.2rem;
}

.age-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.age-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.age-list li:last-child {
    border-bottom: none;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.age-interval {
    font-weight: bold;
    color: var(--jaune-sable);
    min-width: 140px;
}

.age-regle {
    flex: 1;
    text-align: right;
}

.important-warning {
    color: #ff5151;
    font-weight: bold;
    text-align: center;
    animation: pulse 1.5s infinite;
}

.important-warning small {
    color: #f2bcbc;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --------------------------------------------------
   16. RÉSERVATIONS
-------------------------------------------------- */
#reservation-pro {
    background: url('../images/bg-dark-texture.webp') center/cover no-repeat;
}

#reservation-info {
    scroll-margin-top: 70px;
    padding-top: 40px;
    margin-top: 60px;
}

.reservation-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    background: #00000085;
    border-radius: 15px;
    padding: 10px 15px;
}

.alert {
    border-radius: 5px;
    padding: 30px !important;
    font-weight: 400;
}

.alert-danger,
.alert-warning {
    background-color: #1d1d1b;
    color: white;
}

.alert a {
    color: #EB5B25;
    text-decoration: none;
    font-weight: bold;
}

.alert a:hover {
    text-decoration: underline;
}

#no-phone-reservation {
    background: #1a1a1a !important;
    color: #ffffff !important;
    margin-bottom: 40px;
}

#no-phone-reservation .alert {
    border: 2px dotted #ff0000 !important;
    animation: leftRightShake 6s ease-in-out infinite, flashBorder 6s ease-in-out infinite;
}

#no-phone-reservation h4 {
    font-size: 1.1rem !important;
}

#no-phone-reservation h4.text-danger {
    color: #ffffff !important;
    background: #b91c1c !important;
    padding: 10px 15px !important;
    border-radius: 5px;
    display: inline-block;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

#no-phone-reservation p {
    font-size: 0.95rem;
}

#no-phone-reservation .text-warning {
    color: #ffcc00 !important;
}

#no-phone-reservation .text-muted {
    color: #cccccc !important;
}

@keyframes leftRightShake {
    0%, 100% { transform: translateX(0); }
    5% { transform: translateX(-6px); }
    10% { transform: translateX(6px); }
    15% { transform: translateX(-6px); }
    20% { transform: translateX(6px); }
    25% { transform: translateX(-6px); }
    30% { transform: translateX(6px); }
    35% { transform: translateX(0); }
}

@keyframes flashBorder {
    0%, 100% {
        border-color: #FF0000;
        box-shadow: 0 0 0 transparent;
    }
    10% {
        border-color: #ffc107;
        box-shadow: 0 0 10px #ffc107;
    }
    20% {
        border-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }
    30% {
        border-color: #ffc107;
        box-shadow: 0 0 10px #ffc107;
    }
    40% {
        border-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }
    50% {
        border-color: #ffc107;
        box-shadow: 0 0 10px #ffc107;
    }
    60% {
        border-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }
}

.badge-pro {
    display: inline-block;
    background-color: #c82333 !important;
    color: #ffffff !important;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    transform: rotate(-5deg);
    font-weight: 700 !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
    position: relative;
    top: -2px;
    animation: badgeWiggleDesktop 1.5s ease-in-out infinite;
}

@keyframes badgeWiggleDesktop {
    0%, 100% {
        transform: rotate(-6deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) translateY(-2px);
    }
}

.btn-group-responsive {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-group-responsive .btn,
.btn-group-responsive a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    height: 48px;
    padding: 12px 24px !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    white-space: nowrap;
    text-align: center;
    border-radius: 5px;
}

.btn-group-responsive .btn-orange {
    background-color: #c2471b !important;
    color: #ffffff !important;
    border: 2px solid #c2471b !important;
    font-weight: 700;
}

.btn-group-responsive .btn-orange:hover {
    background-color: #a33a16 !important;
    border-color: #a33a16 !important;
}

.btn-group-responsive .btn-outline-dark {
    background-color: transparent !important;
    color: #212529 !important;
    border: 2px solid #212529 !important;
    font-weight: 700;
}

.btn-group-responsive .btn-outline-dark:hover {
    background-color: #212529 !important;
    color: #ffffff !important;
}

.btn-group-responsive .btn i,
.btn-group-responsive a i {
    margin-right: 8px;
    font-size: 1rem;
}

/* --------------------------------------------------
   17. SECTION QUI PEUT RÉSERVER
-------------------------------------------------- */
.resa-title {
    color: #e7dbae !important;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resa-title i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.resa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.resa-card-full {
    grid-column: 1 / -1;
    min-height: auto !important;
}

.resa-card {
    background: #1a1a1a;
    border: 2px solid;
    border-radius: 5px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resa-card:not(.resa-card-full) {
    min-height: 300px;
}

.resa-card:hover {
    transform: translateY(-5px);
}

.resa-card-green {
    border-color: #28a745;
}

.resa-card-orange {
    border-color: #ffc107;
}

.resa-card-blue {
    border-color: #17a2b8;
}

.resa-card-red {
    border-color: #dc3545;
    background: #1a1a1a;
}

.resa-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.resa-card-header i {
    font-size: 1.4rem;
    color: #eb5b25;
    flex-shrink: 0;
}

.resa-card-header h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.resa-card-desc {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.resa-card-action {
    color: #ffc107;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0.75rem 0 0 0;
}

.resa-card-notice {
    background: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #ffc107;
    padding: 0.5rem 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #ffc107;
    border-radius: 5px;
}

.resa-card-notice i {
    margin-right: 0.35rem;
}

.resa-card-forbidden {
    background: rgba(220, 53, 69, 0.3);
    border: 1px solid #dc3545;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.resa-card-forbidden i {
    margin-right: 0.4rem;
}

.resa-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.resa-card-list li {
    color: #fff;
    font-size: 0.9rem;
    padding: 0.35rem 0;
}

.resa-card-full .resa-card-forbidden {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.resa-card-full .resa-card-desc {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.resa-card-full .resa-card-notice {
    text-align: center;
    margin-top: 0;
}

.resa-cta {
    background: #1a0a05 !important;
    border: 2px dashed #eb5b25;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
}

.resa-cta .btn {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    padding: 0.75rem 2.5rem;
}

.resa-cta-info {
    color: #ffd700 !important;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.resa-cta-info i {
    margin-right: 0.4rem;
    color: #ffd700 !important;
}

.resa-cta-info a {
    color: #ffd700 !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.resa-cta-info a:hover {
    color: #ffed4e !important;
    text-decoration: underline;
}

.resa-cta-warning {
    color: #ff3333 !important;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0;
}

.resa-cta-warning i {
    margin-right: 0.4rem;
    color: #ff3333 !important;
}

/* --------------------------------------------------
   18. GALERIE
-------------------------------------------------- */
#galerie {
    background: url('../images/bg-dark-texture.webp') center/cover no-repeat;
}

.gallery-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-scroll {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll-gallery 30s linear infinite;
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.btn-gallery-access {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    color: white;
    background: #eb5b25;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    max-width: 110%;
    text-overflow: ellipsis;
}

.btn-gallery-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-gallery-access:hover::before {
    left: 100%;
}

.btn-gallery-access:hover {
    transform: translateY(-2px);
    color: #fff;
}

.btn-gallery-access span,
.btn-gallery-access i {
    position: relative;
    z-index: 1;
}

#funGalleryBtn {
    position: relative;
    z-index: 1000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.3s ease, left 0.3s ease;
    max-width: 90vw;
}

/* --------------------------------------------------
   19. AVIS GOOGLE
-------------------------------------------------- */
#avis-google {
    background: url('../images/bg-dark-texture.webp') center/cover no-repeat;
    padding: 40px 20px 60px 20px;
    color: #000;
}

.avis-swiper {
    position: relative;
    padding: 1rem;
}

.avis-google {
    background: url('../images/bg-light-texture.webp') center/cover no-repeat;
    color: #000;
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #EB5B25;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
}

.avis-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.avis-stars {
    color: #EB5B25;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.avis-auteur {
    font-weight: bold;
    color: #EB5B25;
    margin-top: auto;
}

.swiper-pagination-bullet {
    background: #EB5B25;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #EB5B25;
    font-weight: bold;
}

.avis-swiper .swiper-wrapper {
    align-items: stretch;
}

.avis-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
}

/* --------------------------------------------------
   20. FAQ
-------------------------------------------------- */
#faq {
    padding: 80px 0;
}

.faq-item {
    background: #1a1a1a;
    border: 3px solid #444;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: repeating-linear-gradient(
        0deg,
        #eb5b25,
        #eb5b25 10px,
        #d44a1f 10px,
        #d44a1f 20px
    );
}

.faq-item:hover {
    border-color: #eb5b25;
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 25px 10px 35px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Vitesse', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-question:hover {
    color: #eb5b25;
    padding-left: 40px;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(90deg, rgba(235, 91, 37, 0.2) 0%, transparent 100%);
    color: #eb5b25;
}

.faq-icon {
    font-size: 1.2rem;
    color: #eb5b25;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background: #2d2d2d;
    border-top: 2px solid #444;
}

.faq-answer-content {
    padding: 20px;
    font-size: 1rem;
    text-align: left;
    line-height: 2;
    color: #e0e0e0;
}

.faq-answer-content strong {
    color: #eb5b25;
    font-weight: 600;
}

.faq-answer-content br {
    display: block;
    margin: 5px 0;
    content: "";
}

/* --------------------------------------------------
   21. NOUS TROUVER
-------------------------------------------------- */
#nous-trouver {
    background: url('../images/bg-dark-texture.webp') center/cover no-repeat;
    color: #000;
}

#nous-trouver a {
    text-decoration: none;
}

#nous-trouver .btn-maps a {
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
}

#nous-trouver .btn-maps a:hover {
    color: #fff;
    background: #eb5b25;
}

/* --------------------------------------------------
   22. FOOTER
-------------------------------------------------- */
footer {
    background-color: #1d1d1b;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
    position: relative;
    margin-top: auto;
}

/* --------------------------------------------------
   23. ANCRES AVEC NAVBAR FIXE
-------------------------------------------------- */
section[id],
div[id] {
    scroll-margin-top: 150px;
}

/* --------------------------------------------------
   24. ACCESSIBILITÉ
-------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid #eb5b25;
    outline-offset: 2px;
}

.br-mobile {
    display: none;
}

/* --------------------------------------------------
   25. RESPONSIVE MOBILE
-------------------------------------------------- */
@media (max-width: 768px) {
    * {
        background-attachment: scroll !important;
        animation: none !important;
    }
    
    .loop-track,
    .gallery-scroll {
        animation: scroll-loop-clean 30s linear infinite !important;
    }
    
    section[id],
    div[id] {
        scroll-margin-top: 120px;
    }
    
    .loader-text {
        font-size: 14px;
    }
    
    .navbar-brand img {
        height: 40px;
        max-width: 180px;
    }
    
    .navbar {
        padding: 5px 0;
    }
    
    .header__image {
        padding-left: 0 !important;
    }
    
    .news-bar {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .news-item {
        font-size: 12px;
    }
    
    .hero {
        height: 75vh !important;
        min-height: 75vh !important;
        max-height: 75vh !important;
    }
    
    .hero-video {
        display: none !important;
    }
    
    .hero-overlay h1 {
        font-size: 28px;
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
    }
    
    .hero-overlay p {
        font-size: 16px;
        height: 72px !important;
        min-height: 72px !important;
        max-height: 72px !important;
    }
    
    .hero-overlay .btn {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .btn-orange,
    .btn-orange.ripple {
        width: 100%;
    }
    
    .card-body ul li {
        font-size: 10px;
    }
    
    .prison-days img {
        max-width: 100%;
        margin: 20px 0 30px 0;
    }
    
    .loop-title__title-text {
        padding: 8px 15px;
    }
    
    #adventure-section .text-white {
        margin-top: 30px;
    }
    
    .adventure-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    #adventure-section .premTitre {
        font-size: 2.5rem;
    }
    
    #adventure-section .secondTitre {
        font-size: 1.25rem;
    }
    
    #adventure-section .col-md-6.text-start {
        text-align: center !important;
    }
    
    #adventure-section .col-md-6.text-start p {
        text-align: left !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }
    
    #evenement-parfait .premTitre {
        font-size: 2.5rem;
    }
    
    #evenement-parfait .secondTitre {
        font-size: 1.3rem;
    }
    
    #evenement-parfait .col-md-4 {
        margin-bottom: 30px;
    }
    
    #evenement-parfait .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    #horaires-tarifs .col-md-6:first-child {
        margin-bottom: 20px;
    }
    
    #horaires-tarifs .card-body {
        padding: 25px 15px;
    }
    
    #horaires-tarifs .premTitre {
        font-size: 2.1rem;
    }
    
    #horaires-tarifs .secondTitre {
        font-size: 1.4rem;
    }
    
    #horaires-tarifs .card-body h3 {
        font-size: 0.9rem !important;
        line-height: 1.1 !important;
        margin-bottom: 8px !important;
        word-spacing: -1px;
    }
    
    #horaires-tarifs .card-body p {
        font-size: 0.78rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }
    
    #horaires-tarifs .card-body .text-orange {
        font-size: 0.72rem !important;
        line-height: 1.2 !important;
        margin-top: 8px !important;
    }
    
    #horaires-tarifs .tarif-card .card-body {
        padding: 12px 10px !important;
    }
    
    #horaires-tarifs .card-body h3 span,
    #horaires-tarifs .card-body h3 small,
    .card-body h3.text-warning .text-restriction {
        color: #ff3333 !important;
        font-size: 0.65em !important;
        font-weight: 600 !important;
    }
    
    .info-mention {
        font-size: 14px;
    }
    
    .tarif-valeur.nous-contacter {
        font-size: 10px;
    }
    
    .br-mobile {
        display: inline;
    }
    
    .age-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .age-interval,
    .age-regle {
        text-align: center !important;
        width: 100%;
    }
    
    #conditions-age h4 {
        font-size: 20px;
    }
    
    #conditions-age .card {
        padding: 0;
    }
    
    .reservation-lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .conditions-reservation {
        font-size: 12px;
    }
    
    .mailbox {
        font-size: 12px;
    }
    
    .badge-pro {
        animation: badgeFloatMobile 2.5s ease-in-out infinite;
    }
    
    @keyframes badgeFloatMobile {
        0%, 100% {
            transform: rotate(0deg);
        }
        25% {
            transform: rotate(-5deg);
        }
        75% {
            transform: rotate(5deg);
        }
    }
    
    #no-phone-reservation h4 {
        font-size: 0.95rem !important;
    }
    
    #no-phone-reservation p {
        font-size: 0.85rem;
    }
    
    #reservation-info {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .btn-group-responsive {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-group-responsive .btn,
    .btn-group-responsive a {
        width: 100%;
        max-width: 100%;
    }
    
    .resa-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .resa-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .resa-card {
        padding: 1.25rem;
    }
    
    .resa-card:not(.resa-card-full) {
        min-height: auto;
    }
    
    .resa-card-header h4 {
        font-size: 1rem;
    }
    
    .resa-card-full .resa-card-desc {
        text-align: left;
    }
    
    .resa-card-full .resa-card-notice {
        text-align: left;
    }
    
    .resa-cta {
        padding: 1.5rem;
    }
    
    .resa-cta .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .gallery-scroll {
        animation-duration: 20s;
        gap: 10px;
    }
    
    .gallery-item {
        width: 160px;
        height: 100px;
    }
    
    #funGalleryBtn {
        font-size: 1rem;
    }
    
    .small-text {
        font-size: 0.70rem;
    }
    
    #nous-trouver .btn-maps .google-link {
        display: block !important;
        margin: 20px 0;
    }
    
    #nous-trouver .btn-maps .waze-link {
        display: block !important;
    }
    
    .avis-google {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 18px 20px 18px 30px;
    }
    
    .faq-answer-content {
        padding: 18px 20px 18px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 374px) {
    .card-body h3.text-uppercase.text-warning {
        font-size: 0.85rem !important;
    }
    
    .card-body p {
        font-size: 0.75rem !important;
    }
    
    .card-body p.fw-bold.text-orange {
        font-size: 0.7rem !important;
    }
    
    #horaires-tarifs .tarif-card .card-body {
        padding: 12px 10px !important;
    }
}

/* --------------------------------------------------
   26. TABLETTES
-------------------------------------------------- */
@media (max-width: 991px) {
    .navbar .btn-reservation {
        display: inline-flex;
        margin-right: 10px;
        font-size: 12px;
    }
    
    .resa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .resa-card-full {
        grid-column: 1 / -1;
    }
    
    .resa-card:not(.resa-card-full) {
        min-height: 250px;
    }
}

/* ==========================================================
   CORRECTIONS VERSION MOBILE - QUI PEUT RÉSERVER
   ========================================================== */

@media (max-width: 767px) {
    /* Correction 1 : Espacement entre les cards */
    .resa-grid {
        grid-template-columns: 1fr;
        gap: 20px; /* Augmente l'espace entre les cards */
    }
    
    .resa-card {
        margin-bottom: 0; /* Supprime tout margin supplémentaire */
    }
    
    /* Correction 2 : Alignement du texte "→ Réservation recommandée/requise" */
    .resa-card-action {
        color: #ffc107;
        font-weight: 700;
        font-size: 0.95rem;
        margin: 0.75rem 0 0 0;
        text-align: center; /* Centre le texte */
        display: block;
        width: 100%;
    }
    
    /* Correction 3 : Notice (info bulle jaune) - centrage */
    .resa-card-notice {
        background: rgba(255, 193, 7, 0.15);
        border-left: 3px solid #ffc107;
        padding: 0.5rem 0.75rem;
        margin-top: 0.75rem;
        font-size: 0.75rem;
        color: #ffc107;
        border-radius: 5px;
        text-align: center; /* Centre le texte de la notice */
    }
    
    /* Correction 4 : Texte dans la card "Particuliers" - alignement centré */
    .resa-card-full .resa-card-desc {
        text-align: center; /* Force le centrage */
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .resa-card-full .resa-card-notice {
        text-align: center; /* Centre la notice */
        margin-top: 0;
    }
    
    /* Correction 5 : Badge "Pas de réservation possible" - centrage */
    .resa-card-forbidden {
        background: rgba(220, 53, 69, 0.3);
        border: 1px solid #dc3545;
        color: #fff;
        font-weight: 700;
        padding: 0.75rem 1rem;
        border-radius: 5px;
        text-align: center;
        margin: 0 auto 0.75rem auto; /* Centre horizontalement */
        font-size: 0.95rem;
        width: fit-content; /* Largeur automatique */
        display: block; /* Force le comportement de bloc */
    }
    
    /* Correction 6 : Description des cards - centrage */
    .resa-card-desc {
        color: #ccc;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        flex-grow: 1;
        text-align: center; /* Centre le texte sur mobile */
    }
    
    /* Correction 7 : Liste anniversaires - centrage */
    .resa-card-list {
        list-style: none;
        padding: 0;
        margin: 0 auto 1rem auto; /* Centre la liste */
        flex-grow: 1;
        text-align: center; /* Centre les items */
    }
    
    .resa-card-list li {
        color: #fff;
        font-size: 0.9rem;
        padding: 0.35rem 0;
        text-align: center; /* Centre chaque item */
    }
}

/* ==========================================================
   TEXTE OBLIGATOIRE 72H - ENTREPRISES & PRO
   ========================================================== */

.resa-card-mandatory {
    background: rgba(40, 167, 69, 0.15);
    border-left: 3px solid #28a745;
    padding: 0.5rem 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #28a745;
    border-radius: 5px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

.resa-card-mandatory i {
    margin-right: 0.35rem;
    font-size: 0.85rem;
}

/* Mobile : version ultra-compacte et propre */
@media (max-width: 767px) {
    .resa-card-mandatory {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.6rem;
        line-height: 1.3;
        margin-top: 0.5rem;
    }
    
    .resa-card-mandatory i {
        font-size: 0.7rem;
        margin-right: 0.25rem;
    }
}

/* Très petits écrans - encore plus compact */
@media (max-width: 374px) {
    .resa-card-mandatory {
        font-size: 0.6rem !important;
        padding: 0.35rem 0.5rem;
    }
}

/* ==========================================================
   TEXTE OBLIGATOIRE - GROUPES 20+ (ORANGE)
   ========================================================== */

.resa-card-mandatory-orange {
    background: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #ffc107;
    color: #ffc107;
}

/* Mobile : version ultra-compacte */
@media (max-width: 767px) {
    .resa-card-mandatory-orange {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.6rem;
        line-height: 1.3;
        margin-top: 0.5rem;
    }
    
    .resa-card-mandatory-orange i {
        font-size: 0.7rem;
        margin-right: 0.25rem;
    }
}

/* Très petits écrans */
@media (max-width: 374px) {
    .resa-card-mandatory-orange {
        font-size: 0.6rem !important;
        padding: 0.35rem 0.5rem;
    }
}

/* ==========================================================
   TEXTE OBLIGATOIRE - ANNIVERSAIRES (BLEU)
   ========================================================== */

.resa-card-mandatory-blue {
    background: rgba(23, 162, 184, 0.15);
    border-left: 3px solid #17a2b8;
    color: #17a2b8;
}

/* Mobile : version ultra-compacte */
@media (max-width: 767px) {
    .resa-card-mandatory-blue {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.6rem;
        line-height: 1.3;
        margin-top: 0.5rem;
    }
    
    .resa-card-mandatory-blue i {
        font-size: 0.7rem;
        margin-right: 0.25rem;
    }
}

/* Très petits écrans */
@media (max-width: 374px) {
    .resa-card-mandatory-blue {
        font-size: 0.6rem !important;
        padding: 0.35rem 0.5rem;
    }
}

@media (max-width: 767px) {
    .resa-card .resa-card-desc span[style*="opacity"] {
        display: none;
    }
    .resa-card .resa-card-desc strong {
        display: block;
        margin-top: 8px;
    }
    .resa-card .resa-card-desc strong:first-child {
        margin-top: 0;
    }
}