/* HERO pleine largeur */
.hero-fullwidth {
    width: 100%;
    height: 320px;
    background-image: url('/images/Bandeau_Hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.14);
    animation: heroFadeIn 0.9s ease-out both;
    margin-top: 70px;
}

/* Voile doux pour lisibilité du texte */
.hero-fullwidth .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 24px;
}

/* Logo */
.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* Titre */
.hero-title {
    color: var(--color-text-primary, #333) !important;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

/* Sous-titre */
.hero-subtitle {
    color: var(--color-text-primary, #333) !important;
    font-size: 1.02rem;
    margin: 0;
}

/* Animation d'apparition */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Styles harmonisés pour toutes les cartes --- */
.card,
.verse-card,
.home-events .card {
    background-color: var(--color-card-bg, #fff7e6) !important;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border: none;
    margin-top: 30px;
}

/* Option : un léger padding pour respirer */
.verse-card .card-body,
.home-events .card-body {
    padding: 2rem;
}

/* Section bienvenue */
.welcome-section .card {
    background-color: var(--color-card-bg, #fff7e6) !important;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.welcome-section .welcome-text .card-body {
    line-height: 1.7;
}

.welcome-section .welcome-info .card-body {
    font-size: 0.95rem;
}

/* Responsive pour téléphones */
@media (max-width: 576px) {
    .hero-fullwidth {
        height: 240px;
        border-radius: 0;
    }

    .hero-logo {
        width: 64px;
        height: 64px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: normal;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Mini cartes événements sur la home */
.event-mini-card {
    background-color: var(--color-card-bg, #fffdf8) !important;
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    margin-bottom: 1.5rem; /* AJOUTÉ : espace en dessous de chaque carte */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Bonus: animation au survol */
}

/* Effet au survol (optionnel mais agréable) */
.event-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

/* Bloc date compact */
.event-date-mini {
    min-width: 46px;
    padding: 4px 0;
    border-radius: 12px;
    background: var(--color-card-bg, #fff7e0) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    font-size: 0.8rem;
}

.event-day-mini {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
}

.event-month-mini {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
    color: var(--color-text-secondary, #777) !important;
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem;
    margin-bottom: 60px;
}