/**
 * Styles specifiques - Page Dons
 * 1000 Mains et Merveilles
 */

/* ========== SECTION DONS D'OBJETS ========== */
.dons-objets {
    padding: 80px 0;
    background: #faf8f5;
}

.dons-objets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.dons-liste-card {
    
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.dons-liste-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: #2b519f;
    margin-bottom: 20px;
}

.dons-accepte {
    border: 5px solid  #1fb4b7;

}

.dons-refuse {
    border: 5px solid #EE7D04;
}

.dons-liste {
    list-style: none;
    padding: 0;
}

.dons-liste li {
    padding: 8px 0;
    color: #5a4a3a;
    font-size: 15px;
    border-bottom: 1px solid #f0ede9;
}

.dons-liste li:last-child {
    border-bottom: none;
}

/* ========== POINTS DE DEPOT ========== */
.dons-depots {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.dons-depots h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: #2b519f;
    margin-bottom: 25px;
    text-align: center;
}

.dons-depots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.depot-card {
    background: #faf8f5;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}

.depot-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.depot-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: #2b519f;
    margin-bottom: 10px;
}

.depot-adresse {
    color: #5a4a3a;
    font-size: 14px;
    margin-bottom: 8px;
}

.depot-horaires {
    color: #8b7e74;
    font-size: 14px;
    margin-bottom: 12px;
}

.depot-link {
    color: #20b4b7;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.depot-link:hover {
    text-decoration: underline;
}

.depot-badge {
    display: inline-block;
    background: #ffc837;
    color: #5a4a3a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-top: 5px;
}

/* ========== SECTION DON FINANCIER ========== */
.dons-financier {
    padding: 80px 0;
    background: #ffffff;
}

.dons-financier-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #fff9f0 0%, #fef6ea 100%);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.dons-financier-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: #2b519f;
    margin: 15px 0;
}

.dons-financier-content > p {
    color: #5a4a3a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dons-financier-avantages {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.dons-financier-avantages li {
    padding: 8px 0;
    color: #5a4a3a;
    font-size: 15px;
    font-weight: 500;
}

.btn-helloasso {
    display: inline-block;
    background: linear-gradient(135deg, #f17f0a 0%, #ffc837 100%);
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(241, 127, 10, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-helloasso:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 127, 10, 0.4);
}

.dons-securise {
    margin-top: 12px;
    font-size: 13px;
    color: #8b7e74;
}

/* ========== RESPONSIVE DONS ========== */
@media (max-width: 768px) {
    .dons-objets-grid,
    .dons-depots-grid {
        grid-template-columns: 1fr;
    }

    .dons-financier-card {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

    .dons-financier-content h2 {
        font-size: 26px;
    }

    .btn-helloasso {
        font-size: 16px;
        padding: 14px 28px;
    }
}
