/* Style général pour les titres et les paragraphes */
body {
    font-family: 'Georgia', serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #007bff;
    margin-bottom: 20px;
}
h3 {
    color: #007bff;
}
p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Style pour les sections de la page */
.welcome-section {
    background: url('../images/background.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.welcome-text h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.welcome-text p {
    font-size: 20px;
    font-style: italic;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    color: #007bff;
}

/* Style pour le carousel */
.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    font-family: 'Georgia', serif;
}

/* Style pour les boutons sur l'image d'accueil */
.btn-custom {
    font-size: 1.25rem;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Georgia', serif;
}

.btn-custom-primary {
    background-color: #007bff;
    border: none;
    color: #fff;
}

.btn-custom-danger {
    background-color: #dc3545;
    border: none;
    color: #fff;
}

/* Style pour la section de texte */
.text-section {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}