/* Custom styles pour personnaliser Bootstrap */
body {
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-weight: bold;
}

.hero-section .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #0056b3;
}

/* Services Section */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Contact Section */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    border-radius: 5px;
}

/* Footer */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
