/* Couleurs personnalisées */
:root {
    --primary: #0d6efd;
    --secondary: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Override de Bootstrap pour les couleurs principales */
.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #1976D2;
    border-color: #1976D2;
}

.text-primary {
    color: var(--primary) !important;
}

/* Styles pour la hero section */
.hero-section {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

/* Styles pour les cartes de cours */
.card {
    transition: all 0.3s ease;
}

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

/* Footer styles */
footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

/* Styles pour les témoignages */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
}
