/* Styles spécifiques à la page Événement (evenement.html) */

.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/evenement_background.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-header h1 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Section Liste des Événements */
.events-list-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.events-list-section h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.no-events-message {
    background-color: #ffe0b2;
    color: var(--text-dark);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    font-size: 1.2em;
    font-weight: 600;
}

/* Section Avis (Témoignages) */
.testimonials-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 60px 20px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    color: var(--primary-color);
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.2);
    border-top: 5px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial-card .author {
    display: block;
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
}

.imageseveenements img {
    width: 400px;
    height: 280px;
}
nav {
    display: flex;
    align-items: center;
    gap: 40px; /* espace entre les liens */
}

nav a {
    display: flex;
    flex-direction: column; /* Garde les 3 langues les unes sous les autres */
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Tu peux ajuster le style si besoin */
nav a:hover div[data-lang="fr"],
nav a:hover div[data-lang="en"],
nav a:hover div[data-lang="es"] {
    text-decoration: underline;
}
.lang-option {
    cursor: pointer;
    opacity: 0.6;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.lang-option.active-lang {
    opacity: 1;
    font-size: 22px;
}

.lang-option:hover {
    opacity: 1;
}
