/* ====================================================================
   FICHIER : /assets/css/evenement.css
   RÔLE    : Styles pour la page de détail d'un événement
   ==================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
}

.evenement-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px 80px;
}

.evenement-badge {
    display: inline-block;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evenement-titre {
    color: #1E3A8A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.evenement-periode {
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

.evenement-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 2px solid #1E3A8A;
}

.evenement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evenement-image-logo {
    background: linear-gradient(180deg, #1E3A8A 0%, #60A5FA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.evenement-image-logo img {
    object-fit: contain;
    max-width: 50%;
}

.evenement-description {
    color: #333;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 50px;
}

.evenement-retour {
    text-align: left;
}

.btn-retour {
    display: inline-block;
    background-color: #1E3A8A;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-retour:hover {
    background-color: #3B82F6;
}

/* Responsive */
@media (max-width: 768px) {
    .evenement-container {
        margin: 40px auto;
        padding: 0 20px 60px;
    }

    .evenement-titre {
        font-size: 24px;
    }

    .evenement-image {
        height: 250px;
    }

    .evenement-description {
        font-size: 15px;
    }
}
