/* Nom du fichier: style-home.css
  But: Fournir des styles personnalisés pour compléter Tailwind CSS pour la page d'accueil B2B.
*/

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust for sticky header height */
}

body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card-link:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.matrix-quadrant {
    border: 1px solid #e5e7eb;
    background-color: rgba(255, 255, 255, 0.6);
}
