/* Boutons centrés et couleur personnalisée */
.boat-card .btn-primary,
.booking-cta .btn-primary,
.bateau-hero .btn-primary {
    background: #A51A1E !important;
    background-image: none !important;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    margin: 16px auto 0 auto;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    display: block;
    text-align: center;
}

.boat-card .btn-primary:hover,
.booking-cta .btn-primary:hover,
.bateau-hero .btn-primary:hover {
    background: #7d1517 !important;
    box-shadow: 0 4px 16px rgba(30, 60, 114, 0.18);
}

/* Section Itinéraires moderne et centrée */
.bateau-itineraires {
    background: #f8f8f8;
    padding: 40px 0 32px 0;
    text-align: center;
}

.bateau-itineraires h2 {
    font-size: 2rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 32px;
}

.itineraires-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.itineraire-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30, 60, 114, 0.08);
    padding: 28px 24px;
    max-width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.itineraire-card h3 {
    font-size: 1.15rem;
    color: #2a5298;
    font-weight: 700;
    margin-bottom: 10px;
}

.itineraire-card p {
    font-size: 1rem;
    color: #2a5298;
    margin-bottom: 8px;
}

.itineraire-card .duration {
    font-size: 0.98rem;
    color: #A51A1E;
    font-weight: 600;
    margin-top: 6px;
}

/* Section Informations moderne et centrée */
.bateau-info {
    background: #fff;
    padding: 40px 0 32px 0;
    text-align: center;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 24px;
}

.info-block {
    background: #f8f8f8;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30, 60, 114, 0.08);
    padding: 28px 24px;
    max-width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-block h3 {
    font-size: 1.15rem;
    color: #2a5298;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.info-block ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.info-block ul li {
    font-size: 1rem;
    color: #2a5298;
    margin-bottom: 6px;
}

.horaires p {
    font-size: 1rem;
    color: #2a5298;
    margin-bottom: 6px;
}

@media (max-width: 900px) {

    .itineraires-grid,
    .info-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .itineraire-card,
    .info-block {
        max-width: 98vw;
    }
}

/* Bloc hero avec image d'arrière-plan et overlay */
.hero-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 340px;
    position: relative;
}

.hero-overlay {
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 60, 114, 0.45);
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 48px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.promo-offer {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #ffe082;
    font-weight: 600;
}

/* Grille moderne pour la flotte de bateaux */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 32px 0;
}

.boat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30, 60, 114, 0.08);
    padding: 24px 18px 18px 18px;
    text-align: center;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.boat-card:hover {
    box-shadow: 0 8px 32px rgba(30, 60, 114, 0.18);
    transform: translateY(-4px) scale(1.03);
}

.boat-image img {
    width: 100%;
    max-width: 260px;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.12);
    margin-bottom: 16px;
}

.boat-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.boat-info p {
    font-size: 1rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.pricing .price {
    font-size: 1.2rem;
    color: #A51A1E;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.btn-primary {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #2a5298, #1e3c72);
    box-shadow: 0 4px 16px rgba(30, 60, 114, 0.18);
}

@media (max-width: 1100px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 0;
    }

    .boat-card {
        max-width: 98vw;
    }
}

/* Centrage et modernisation des titres */
.bateau-hero h1,
.bateau-fleet h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
}

.promo-offer {
    text-align: center;
    font-size: 1.1rem;
    margin: 12px 0 18px 0;
    color: #e74c3c;
    font-weight: 600;
}

.intro-content {
    text-align: center;
    margin-bottom: 18px;
}

/* Style images grille bateaux */
.fleet-grid .boat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin: 12px;
    padding: 18px;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet-grid .boat-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
}

.fleet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}


/* bateaux.css - Styles pour la page Bateaux */

/* Header hero bateaux moderne et centré */
.bateau-hero {
    width: 100%;
    position: relative;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bateau-hero .hero-bg {
    background: url('/images/backgroundskipper.png') center/cover no-repeat;
    min-height: 340px;
    width: 100%;
    position: relative;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bateau-hero .hero-overlay {
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 60, 114, 0.45);
}

.bateau-hero .hero-content {
    text-align: center;
    color: #fff;
    padding: 18px 32px 32px 32px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    top: -24px;
}

.bateau-hero .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.bateau-hero .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bateau-hero .promo-offer {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #ffe082;
    font-weight: 600;
    text-align: center;
}

.bateau-grid-container {
    padding: 40px 0;
    background: #f8f8f8;
}

.bateau-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin: 20px;
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.bateau-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bateau-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.bateau-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1a2a3a;
}

.bateau-card .price {
    font-size: 1.1rem;
    color: #e74c3c;
    margin-bottom: 12px;
}

.btn-reserver {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-reserver:hover {
    background: #c0392b;
}

.bateau-info-section {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    margin: 32px auto;
    max-width: 700px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    text-align: center;
}


.booking-cta {
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;

}