/* --- Variables & Reset --- */
:root {
    --bg-color: #f9f7f2; /* Blanc cassé / Crème */
    --text-color: #4a4a4a; /* Gris anthracite doux pour le texte principal */
    --accent-color: #8c7b6c; /* Taupe / Terre */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    /* Suppression du padding global pour que la bannière touche les bords */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* --- Typography Générale --- */
h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Un peu plus grand pour l'impact */
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

/* --- NOUVEAU : Hero Banner Section --- */
.hero-banner {
    width: 100%;
    height: 60vh; /* Prend 60% de la hauteur de l'écran */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--white); /* Le texte sur l'image doit être blanc */
    
    /* L'image de fond avec un filtre sombre par-dessus */
    /* Note : J'utilise une image d'Antibes générique d'Unsplash pour l'exemple */
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.unsplash.com/photo-1533641136934-330339743df7?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover; /* L'image couvre tout l'espace sans se déformer */
    background-position: center center; /* Centre l'image */
    background-attachment: fixed; /* Petit effet sympa : l'image reste fixe quand on défile */
    margin-bottom: 40px; /* Espace sous la bannière */
    border-bottom: 4px solid var(--white); /* Une petite bordure blanche pour la propreté */
}

.hero-content {
    /* Un petit effet d'ombre sous le texte pour le faire ressortir davantage */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 20px;
}

.subtitle-hero {
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

/* --- Layout Main Content --- */
main {
    width: 100%;
    max-width: 900px;
    padding: 0 20px; /* On remet un peu de marge sur les côtés pour le contenu */
}

.intro {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 1.1rem;
}

/* --- PDF Viewer Styling (Inchangé) --- */
.pdf-container {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.pdf-wrapper {
    width: 100%;
    border: 1px solid #eee;
    height: 70vh;
    border-radius: 4px;
    overflow: hidden;
}

/* --- Buttons (Inchangé) --- */
.actions {
    text-align: center;
    margin-top: 20px;
}

.btn-download {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-download:hover {
    background-color: #6d5f53;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 123, 108, 0.3);
}

.fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* --- Footer --- */
.site-footer {
    margin-top: auto;
    padding: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

/* --- Animation Classes (Inchangé) --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}