/* Styles de base */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 50px;
}

.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card {
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    height: 100%;
}

/* Formulaire */
.form-control, .form-select {
    padding: 10px;
    margin-bottom: 15px;
}

/* Calendrier */
#calendar {
    max-width: 100%;
    margin: 0 auto;
}

.fc-event {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Pied de page */
footer {
    background-color: #343a40;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
}