/* style.css : personnalisations CSS du site */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3 {
    color: #0056b3;
}

footer {
    font-size: 0.9em;
}

.card {
    border-radius: 10px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-bottom: 2rem;
}

.hero-slider .carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slider .carousel-caption {
    bottom: 30%;
    z-index: 1;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

.slider-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.carousel-item {
    height: 500px; /* Ajustez selon vos besoins */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
:root {
    --primary: #1e3a8a;    /* Bleu profond */
    --secondary: #10b981;  /* Vert émeraude */
    --accent: #f59e0b;     /* Jaune ambre */
    --light: #f8fafc;     /* Gris clair */
    --dark: #1f2937;      /* Gris foncé */
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.carousel-caption {
    bottom: 20%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--light), #e2e8f0);
}