/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4a3b2c;
    padding: 20px;
    background-image: url('paolobenassicom.jpg'); /* Remplacez par le chemin de votre image d'arrière-plan */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Dégradé doux en haut comme sur la maquette */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(214, 230, 242, 0.45) 0%, rgba(255, 255, 255, 0) 30%),
        rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* --- Section Citation --- */
.quote-section {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #5c4d3c;
    padding: 0 10px;
}

.quote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 8px;
}

.author {
    font-size: 1.1rem;
    font-style: normal;
    display: block;
}

/* --- Carte Principale --- */
.card {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(5px); /* Léger effet de flou artistique derrière la carte */
    border-radius: 30px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Icône */
.icon-container {
    margin-bottom: 15px;
}

.icon-hands-heart {
    width: 52px;
    height: 52px;
    opacity: 0.8;
}

/* Titres et Textes */
.association-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #705d49;
    margin-bottom: 20px;
}

.association-description p {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #554637;
}

.association-description p:last-child {
    margin-bottom: 0;
}

/* Séparateur */
.separator {
    border: none;
    height: 1px;
    background-color: #c5b9ac;
    width: 40%;
    margin: 30px auto;
}

.bank-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #61503e;
    margin-bottom: 25px;
}

/* Détails Bancaires */
.bank-details {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
}

.bank-details p {
    color: #554637;
    word-break: break-all; /* Évite que l'IBAN dépasse sur petit écran */
}

.bank-details strong {
    font-weight: 700;
    color: #705d49;
}

/* --- Adaptabilité Mobile (Responsive) --- */
@media (max-width: 480px) {
    .quote {
        font-size: 1.15rem;
    }
    
    .card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .association-title {
        font-size: 1.2rem;
    }
    
    .association-description p {
        font-size: 1.05rem;
    }
    
    .bank-details {
        font-size: 1.05rem;
    }
}