:root {
            --primary-orange: #cb2229;
            --accent-blue: #fff;
            --dark-bg: #12161f;
            --light-gray: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            /* font-family: 'Playfair Display', serif; */
            font-family: 'Montserrat', sans-serif;
        }
        .top-bar {
            position: absolute;
            top: 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-content: flex-end;
            text-align: right;
            color: white;
            padding: 15px;
        }
        .langue{
            color: white;
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            height: 70vh;
            background: url(./img/bateau-hero.jpg);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: start;
            text-align: start;
            color: white;
            border-top: 10px solid black;
        }
        .hero .container {
            gap: 100px;
        }
        .hero-tag {
            letter-spacing: 4px;
            font-size: 2rem;
            text-transform: uppercase;
            font-weight: 700;
            line-height: 30px;
            margin-top: 100px;
        }
        .hero-tag span {
            font-size: 1.25rem;
            padding-left: 60px;
            position: relative;
        }
        .hero-tag span::after {
            content: url('./img/lacs.svg');
            position: absolute;
            left: 88px;
            top: 5px;
        }

        .hero h1 {
            font-size: clamp(1rem, 8vw, 3rem);
            font-family: 'Montserrat', sans-serif !important;
            font-weight: 700;
        }
        .hero h1::after {
            content: url('./img/mastercraft-logo.svg');
            margin-left: 10px;
        }

        .hero h1 span {
            color: var(--accent-blue);
        }
        .hero h2 {
            font-size: 1.5rem;
            opacity: 0.9;
        }
        .hero .lead{
            font-size: 14px !important;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-orange {
            background-color: var(--primary-orange);
            color: white;
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }

        .btn-orange:hover {
            background-color: #191818;
            color: white;
            transform: translateY(-2px);
        }

        .reservation{
            background-color: #d91722;
            color: white;
            padding: 20px 0;
            font-family: 'Montserrat', sans-serif;
        }
        .reservation h2{
            font-size: 22px;
            padding: 0;
            margin: 0;
        }

        

        /* Destinations */
        .destinations-section {
            padding: 100px 0;
            background-color: #fafafa;
            background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d9d9d9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
        }
        .destinations-section .ete, 
        .destinations-section .ete * {
            font-family: 'Montserrat', sans-serif !important;
        }
        .destinations-section .ete p {
            color: #d91722 !important;
            font-weight: 600;
        }
        .section-tag {
            background: #eef6ff;
            color: #b0635d;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 1cqmax;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .date-card {
            border: 1px solid #eeeeeeb5;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            transition: 0.3s;
            height: 100%;
            background: white;
            border-top: 3px solid #D52B1E;
            box-shadow: 0 0 8px 2px #00000012 !important;
        }

        /* .date-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-color: rgb(27, 25, 25);
        } */

        .icon-box {
            width: 45px;
            height: 45px;
            background: #f3f3f3;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #0f0f0f;
            flex-shrink: 0;
        }

        .date-info .date {
            color: #322f2f;
            font-weight: 700;
            font-size: 1rem;
        }

        .date-info .location {
            font-weight: 600;
            color: #12161f;
        }

        .cancelled {
            opacity: 0.6;
            background-color: #fcfcfc;
        }

        .badge-red {
            background-color: #ffe5e5;
            color: #d90429;
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 800;
        }

        /* Form Section */
        .form-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .form-container {
            background: white;
            border: 1px solid #ececec;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.05);
        }

        .form-image {
            border-radius: 25px;
            height: 100%;
            object-fit: cover;
            width: 100%;
            max-height: 632px;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .form-control, .form-select {
            border-radius: 8px;
            padding: 12px;
            border: 1px solid #e0e0e0;
            background-color: #fcfdfe;
        }

        .form-section .text-red {
            color: #d91722 !important;
            font-weight: 600;
            font-size: 14px;
        }
        /* Footer */
        footer {
            background-color: black;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-info {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        footer img {
            max-width: 230px;
            margin-bottom: 20px;
        }
        .logo-container {
            display: inline-block;
            background: white;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            padding: 80px 12px 5px;
        }
        .logo-dm {
            display: inline-block;
            position: absolute;
            top: 20px;
            right: 0;
        }
        
        /* 1. Définition de l'animation de base */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 2. Animation du Hero (au chargement) */
        .hero > .container {
            animation: fadeInUp 1s ease-out forwards;
        }

        @keyframes reveal {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .date-card {
            /* Support moderne (Chrome/Edge) */
            @supports (animation-timeline: view()) {
                animation: reveal linear both;
                animation-timeline: view();
                animation-range: entry 20% cover 30%;
            }
            
            /* Fallback pour Safari/Firefox (Pas d'animation, mais visible) */
            @supports not (animation-timeline: view()) {
                opacity: 1;
                transform: none;
            }
        }

        /* 4. Le Stagger (0.3s entre chaque carte) */
        /* En CSS pur avec scroll-timeline, le "stagger" est naturel car 
        chaque carte s'anime selon sa position exacte dans le scroll. 
        Mais si vous voulez forcer un délai supplémentaire : */
        .date-card:nth-child(2) { animation-delay: 0.2s; }
        .date-card:nth-child(3) { animation-delay: 0.4s; }        
        .date-card:nth-child(4) { animation-delay: 0.6s; }     
        .date-card:nth-child(5) { animation-delay: 0.9s; }     
        .date-card:nth-child(6) { animation-delay: 1.2s; }     
        .date-card:nth-child(7) { animation-delay: 1.5s; }
        /* Validation et messages formulaire */
        .form-control.f-error,
        .form-select.f-error {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.2);
        }

        .f-message {
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 1rem;
            text-align: center;
        }

        .f-message.f-error {
            background-color: #fff0f0;
            color: #dc3545;
            border: 1px solid #f5c2c7;
        }

        .f-message.f-success {
            background-color: #f0fff4;
            color: #198754;
            border: 1px solid #a3cfbb;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .form-container { padding: 25px; }
        }

        .footer-info a {
            color: #f8f9fa;
        }

        .no-wrap {
            white-space: nowrap;
        }