/* --- Réinitialisation et Polices --- */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #a00000; /* Rouge profond italien pour les titres */
}

/* --- Section Héro (Bannière) --- */
.hero {
    background: url('https://images.unsplash.com/photo-1627993206775-f935398a7090?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    height: 60vh; /* 60% de la hauteur de la vue */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay sombre pour améliorer la lisibilité */
}

.hero-content {
    z-index: 10;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: white; /* Titre en blanc sur la bannière */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2em;
}

/* --- Contenu Principal --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1em;
}

p {
    text-align: justify;
    margin-bottom: 1.5em;
}

/* --- Bouton CTA et Lien --- */
.cta-section {
    text-align: center;
}

.button {
    display: inline-block;
    background-color: #a00000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.button:hover {
    background-color: #d40000;
}

.cta-link {
    color: #004d99; /* Couleur d'un lien standard */
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #004d99;
    padding-bottom: 2px;
    transition: color 0.3s, border-bottom-color 0.3s;
}

.cta-link:hover {
    color: #a00000;
    border-bottom-color: #a00000;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}

/* --- Responsive (pour les petits écrans) --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    .container {
        width: 95%;
        margin: 20px auto;
        padding: 10px;
    }
    h2 {
        font-size: 1.5em;
    }
}