/* TITRE PAGE */

.page-title {
    text-align: center;
    padding: 50px 10%;
    background: #f8f9fa;
}

.page-title h2 {
    color: #1E3A8A;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-title p {
    color: #444;
}


/* OPTIONS GRID */

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 10%;
}

.option-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.option-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.option-card h3 {
    margin: 15px 0;
    color: #1E3A8A;
}

.option-card p {
    padding: 0 15px 15px;
    color: #555;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* TEMOIGNAGES */

.temoignages {
    padding: 50px 10%;
    background: #f8f9fa;
    text-align: center;
}

.temoignages h2 {
    color: #1E3A8A;
    margin-bottom: 30px;
}

.temoignage-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.temoignage-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.temoignage-card:hover {
    transform: scale(1.05);
}

.temoignage-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.temoignage-card h4 {
    color: #16A34A;
}


/* DETAILS OPTIONS */

.option-detail {
    padding: 60px 10%;
    background: #fff;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.option-detail h2 {
    color: #1E3A8A;
    margin-bottom: 15px;
    font-size: 2rem;
}

.option-detail p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 1.1rem;
}

.option-detail .galerie-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.option-detail .galerie-scroll img {
    height: 200px;
    border-radius: 10px;
    scroll-snap-align: start;
    transition: transform 0.3s;
}

.option-detail .galerie-scroll img:hover {
    transform: scale(1.1);
    border: 2px solid #16A34A;
}