/* Styles de base */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #f1f1f1;
    background-color: #121212; /* Fond noir */
}

.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #fafe14; /* Jaune pour les titres */
    font-family: "Chakra Petch", sans-serif;
    font-weight: 600;
    font-style: normal;
}

a {
    color: #fafe14; /* Jaune pour les liens */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Logo */
#logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#logo {
    max-width: 160px;
    height: auto;
}

/* Header */
#main-header {
    text-align: center;
    margin-bottom: 20px;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1em;
    line-height: 1.5;
}

/* Articles */
.event {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #fafe14;
    border-radius: 8px;
    background-color: #1e1e1e; /* Fond pour les événements */
}

.event-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.event-subtitle {
    font-size: 1.2em;
    margin: 10px 0;
    color: #fafe14;
}

.event-description, .event-info, .event-organizer {
    font-size: 1em;
    line-height: 1.5;
}

.event-link {
    color: #fafe14;
}

.event-link:hover {
    color: #98f924; /* Jaune un peu plus vif */
}

/* Footer */
#main-footer {
    text-align: center;
    font-size: 0.9em;
    color: #888;
    margin-top: 40px;
}

.footer-link {
    color: #fafe14;
}

.footer-link:hover {
    color: #98f924;
}
