body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    /* Texte blanc par défaut */
    color: white;

    /* Fond d’écran */
    background-image: url('images/fond.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('images/fond.jpg') center/cover no-repeat;
    z-index: -1; /* derrière le contenu */
}

body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* voile noir transparent */
    z-index: -1;
}


/* Options section */
.options {
	color: #333; /* texte gris foncé */
    margin-top: 30px;
    text-align: center;
}

.options h1 {
	color : white;
}

.options h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
	color : white;
}

.options-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.option-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.option-card img {
    width: 100%;
    height: auto; /* s’adapte à la largeur */
    object-fit: cover;
}


.option-card:hover {
    transform: translateY(-5px);
}

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

.option-card h3 {
	color: #004080; /* bleu pour les titres */
    margin: 10px;
    font-size: 1.2rem;
    color: #004080;
}

/* Responsive for options */
@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }
}
