        .prix {
            width: 64px;
            height: 64px;
            background-color: crimson;
            border-radius: 32px;
            line-height: 64px;
            text-align: center;
            color: white;
            font-size: 18pt;
        }

        .poste {
            font-size: 16pt;
            color: crimson;
            font-weight: bold;
            width: 10%;
            text-align: center;
        }

        .journee {
            width: 45%;
            color: green;
            text-align: center;
        }

        .nuit {
            width: 45%;
            text-align: center;
            color: darkslategrey;
        }

        .titre_peche {
            text-align: center;
            font-size: 18pt;
            color: crimson;
        }

        .RESERVE0 {
            background-color: green;
        }

        .RESERVE1 {
            background-color: orange;
            text-align: center;
            font-weight: bold;
        }

        .RESERVE2 {
            background-color: red;
            text-align: center;
            font-weight: bold;
            color: white;
        }

        .navigation {
            cursor: pointer;
        }

        .accompagnateur {
            text-align: center;
        }

        .tuile {
            background: linear-gradient(#f5fcbc, #50b559);
            border-radius: 12px;
            padding: 6px;
        }

        /* ===== Panorama + neige canvas + marquee ===== */
        .panorama-wrapper {
            position: relative;
            width: 100%;
            height: 680px;
            overflow: hidden;
        }

        .panorama-img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover; /* IMPORTANT pour ton format 3830x938 */
        }

        /* Canvas neige AU-DESSUS de la photo */
        #snowCanvas {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            display: block;
            z-index: 2;
            pointer-events: none;
        }


        .marquee-overlay {
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 3; /* AU-DESSUS de la neige */
        }

        .marquee-css {
            width: 100%;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            gap: 80px;
            white-space: nowrap;
            will-change: transform;
            animation: marqueeLoop 18s linear infinite;
        }

            .marquee-track span {
                font-size: 4rem;
                font-weight: bold;
                color: #c62828; /* secours */
                text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
                animation: marqueeNoel 10s ease-in-out infinite, sparkle 5.7s ease-in-out infinite;
                /* désynchronisation (si tu mets --sparkle-delay sur les spans) */
                animation-delay: calc(-1s * var(--sparkle-delay, 0));
            }

        @keyframes marqueeLoop {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Couleurs Noël (champagne doux) */
        @keyframes marqueeNoel {
            0% {
                color: #c62828;
                text-shadow: 0 0 6px rgba(198,40,40,0.55), 2px 2px 6px rgba(0,0,0,0.55);
            }

            25% {
                color: #e6c36a;
                text-shadow: 0 0 10px rgba(230,195,106,0.70), 2px 2px 6px rgba(0,0,0,0.55);
            }

            50% {
                color: #fff2df;
                text-shadow: 0 0 14px rgba(255,242,223,0.90), 2px 2px 6px rgba(0,0,0,0.55);
            }

            75% {
                color: #2e7d32;
                text-shadow: 0 0 10px rgba(46,125,50,0.70), 2px 2px 6px rgba(0,0,0,0.55);
            }

            100% {
                color: #c62828;
                text-shadow: 0 0 6px rgba(198,40,40,0.55), 2px 2px 6px rgba(0,0,0,0.55);
            }
        }

        /* Scintillement léger (opacity + text-shadow = compatible partout) */
        @keyframes sparkle {
            0% {
                opacity: 1;
                text-shadow: 0 0 4px rgba(255,255,255,0.15), 2px 2px 6px rgba(0,0,0,0.55);
            }

            12% {
                opacity: 0.92;
                text-shadow: 0 0 10px rgba(255,255,255,0.45), 2px 2px 6px rgba(0,0,0,0.55);
            }

            18% {
                opacity: 1;
                text-shadow: 0 0 6px rgba(255,255,255,0.25), 2px 2px 6px rgba(0,0,0,0.55);
            }

            33% {
                opacity: 0.95;
                text-shadow: 0 0 14px rgba(255,255,255,0.55), 2px 2px 6px rgba(0,0,0,0.55);
            }

            45% {
                opacity: 1;
                text-shadow: 0 0 5px rgba(255,255,255,0.20), 2px 2px 6px rgba(0,0,0,0.55);
            }

            62% {
                opacity: 0.90;
                text-shadow: 0 0 16px rgba(255,255,255,0.65), 2px 2px 6px rgba(0,0,0,0.55);
            }

            70% {
                opacity: 1;
                text-shadow: 0 0 7px rgba(255,255,255,0.28), 2px 2px 6px rgba(0,0,0,0.55);
            }

            100% {
                opacity: 1;
                text-shadow: 0 0 4px rgba(255,255,255,0.15), 2px 2px 6px rgba(0,0,0,0.55);
            }
        }
        /* ===== fin panorama/neige/marquee ===== */

        /* LE CONTENEUR DU TABLEAU */
        .tarif-table {
            width: 100%;
            max-width: 900px; /* Plus large pour laisser respirer le contenu */
            margin: 40px auto;
            border-collapse: separate; /* Permet d'avoir des coins arrondis propres */
            border-spacing: 0;
            background-color: #ffffff;
            border-radius: 15px; /* Coins bien arrondis */
            overflow: hidden;
            /* Ombre très douce et élégante */
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

            /* LES CELLULES (C'est ici que le Padding fait la différence) */
            .tarif-table td {
                padding: 12px 20px; /* Padding généreux pour le confort visuel */
                vertical-align: middle;
                border-bottom: 1px solid gray;
                transition: all 0.2s ease-in-out;
            }

            /* DERNIÈRE LIGNE SANS BORDURE */
            .tarif-table tr:last-child td {
                border-bottom: none;
            }

            /* EFFET AU SURVOL (HOVER) */
            .tarif-table tr:hover {
                background-color: #f0f7f0 !important; /* Vert très doux mais visible */
                cursor: pointer;
            }

                /* BARRE VERTE DYNAMIQUE À GAUCHE AU SURVOL */
                .tarif-table tr:hover td:first-child {
                    box-shadow: inset 8px 0 0 #2e7d32;
                }

        /* STYLES DES TEXTES */
        .periode {
            font-weight: 600;
            color: #333;
            font-size: 1.8rem;
        }

        .cannes {
            color: #777;
            font-style: italic;
            font-size: 1.5rem;
            text-align: center;
        }

        .location {
            font-weight: 800;
            color: #2e7d32; /* Vert foncé pro */
            text-align: right;
            font-size: 2rem;
            white-space: nowrap;
        }

        /* STYLE DE LA LIGNE PROMO */
        .row-promo {
            background-color: #fafffa;
        }

        .promo-badge {
            background-color: #e63946; /* Rouge moderne */
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 2rem;
            font-weight: bold;
            margin-right: 10px;
            text-transform: uppercase;
            vertical-align: middle;
        }

        /* RESPONSIVE : Pour les petits écrans */
        @media (max-width: 600px) {
            .tarif-table td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }

            .location {
                font-size: 1.1rem;
            }

            .promo-badge {
                display: block;
                margin-bottom: 5px;
                width: fit-content;
            }
        }
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: darkgreen; /* Pour que le menu déroulant soit bien lisible */
                padding: 15px;
                border-radius: 8px;
                margin-top: 10px;
            }

            .facebook-link {
                display: none; /* Cache le gros bloc Facebook sur mobile pour libérer de l'espace */
            }
        }
		/* --- STYLE DU MENU MODERNISÉ --- */
.navbar-ruchette {
    background-color: #145a27; /* Un vert foncé un peu plus profond et élégant que "darkgreen" */
    transition: all 0.3s ease;
}

/* Style des liens */
.navbar-ruchette .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-ruchette .nav-link:hover {
    color: #ffffff;
}

/* Effet de soulignement animé façon "premium" */
.navbar-ruchette .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #f1c40f; /* Touche dorée/miel */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-ruchette .nav-link:hover::after {
    width: 80%;
}

/* Bouton Facebook modernisé */
.btn-social-modern {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-social-modern:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
/* --- ISOLATION DE L'ICÔNE FACEBOOK --- */
.btn-social-modern a i.fab.fa-facebook {
    /* On force une marge à droite de l'icône pour repousser le texte */
    margin-right: 20px !important; /* Augmentez cette valeur (ex: 25px) pour isoler encore plus */
    
    /* Optionnel : Ajustement vertical si nécessaire */
    position: relative;
    top: 1px;
}
/* On cible le bloc de texte pour le pousser vers la droite */
.fb-text-block {
    padding-left: 25px !important; /* Ajuste cette valeur pour isoler plus ou moins */
    line-height: 1.2;
    border-left: 1px solid rgba(255,255,255,0.2); /* Optionnel : une petite barre de séparation très fine */
}

.fb-sub {
    font-size: 0.7rem; 
    opacity: 0.8; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.fb-main {
    font-size: 0.85rem;
}

/* On s'assure que l'icône a une taille fixe pour ne pas bouger */
.btn-social-modern i.fa-facebook {
    width: 30px;
    text-align: center;
}
/* Style spécial pour la photo de Jean en exergue */
.jean-featured-frame {
    padding: 10px;
    background: white;
    border: 1px solid #dee2e6;
    display: inline-block;
    border-radius: 15px;
    transform: rotate(-2deg); /* Un petit effet "photo posée" très léger */
    transition: transform 0.3s ease;
}

.jean-featured-frame:hover {
    transform: rotate(0deg) scale(1.05); /* Elle se remet droite au survol */
}

.jean-featured-frame img {
    border-radius: 10px;
    max-height: 400px; /* On évite qu'elle ne prenne tout l'écran */
}
