/* ============================================
   PAGE BLEUETS - ACCÈS BASE DE DONNÉES
   ============================================ */

.bleuets-database-access {
    margin-bottom: 48px;
}

.database-access-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #FEF9C3 100%);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 4px 20px -2px rgba(54, 94, 138, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.database-access-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(54, 94, 138, 0.15);
}

.database-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin-bottom: 24px;
    color: #365E8A;
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.1);
}

.database-title {
    font-size: 2rem;
    font-weight: 800;
    color: #365E8A;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #365E8A 0%, #F4EC6C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.database-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.database-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #365E8A 0%, #2A4A6E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(54, 94, 138, 0.3);
    transition: all 0.2s ease;
}

.database-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(54, 94, 138, 0.4);
    color: white;
}

.database-button svg {
    transition: transform 0.2s ease;
}

.database-button:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 768px) {
    .database-access-card {
        padding: 32px 24px;
    }
    
    .database-title {
        font-size: 1.5rem;
    }
    
    .database-description {
        font-size: 1rem;
    }
    
    .database-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}
