/* ============================================
   GNDM – Page Evenements
   ============================================ */

/* --- Hero event featured --- */
.featured-event {
    background: var(--color-bg-alt);
}

.featured-event__card {
    display: grid;
    gap: var(--space-xl);
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-gold);
}

@media (min-width: 768px) {
    .featured-event__card {
        grid-template-columns: 280px 1fr;
    }
}

.featured-event__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-text-on-gold);
    text-align: center;
    min-height: 180px;
}

.featured-event__day {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: var(--fw-bold);
    line-height: 1;
}

.featured-event__month {
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
}

.featured-event__year {
    font-size: var(--fs-md);
    opacity: 0.8;
}

.featured-event__content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-event__badge {
    display: inline-block;
    align-self: flex-start;
    padding: var(--space-2xs) var(--space-sm);
    background: var(--color-gold-muted);
    color: var(--color-gold);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.featured-event__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-heading);
    margin-bottom: var(--space-md);
    line-height: var(--lh-snug);
}

.featured-event__meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.featured-event__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: var(--fs-base);
}

.featured-event__meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.featured-event__desc {
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
}

/* --- Reunions mensuelles --- */
.monthly-section {
    background: var(--color-bg-primary);
}

.monthly-info {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .monthly-info {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.monthly-details {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.monthly-details__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.monthly-details__item:last-child {
    border-bottom: none;
}

.monthly-details__item svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.monthly-details__item strong {
    display: block;
    color: var(--color-heading);
    margin-bottom: var(--space-2xs);
}

.monthly-details__item span {
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
}

/* --- Calendrier des prochaines reunions --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.calendar-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-base);
}

.calendar-item:hover {
    box-shadow: var(--shadow-md);
}

.calendar-item--next {
    border: 2px solid var(--color-gold);
    background: var(--color-gold-muted);
}

.calendar-item__month {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    font-weight: var(--fw-semibold);
}

.calendar-item__day {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-heading);
    line-height: var(--lh-tight);
    margin: var(--space-xs) 0;
}

.calendar-item--next .calendar-item__day {
    color: var(--color-gold);
}

.calendar-item__status {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
}

.calendar-item--next .calendar-item__status {
    color: var(--color-gold);
    font-weight: var(--fw-semibold);
}

/* --- Archives --- */
.archives-section {
    background: var(--color-bg-alt);
}

.archives-note {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.archives-note p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}
