/* Styles de base */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #4a4a4a;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Section Héro (Accroche) */
.hero-section {
    background: url('hero_background.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 0.2em;
}

.hero-section .subtitle {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 2em;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.book-cover {
    width: 250px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.cta-button {
    background-color: #A0522D; /* Couleur terre de sienne, évoquant la sensualité et l'élégance */
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background-color: #8B4513; /* Couleur plus foncée au survol */
}

/* Section Histoire */
.story-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.story-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.story-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

blockquote {
    font-style: italic;
    margin: 40px auto;
    padding: 20px;
    background-color: #f1f1f1;
    border-left: 5px solid #A0522D;
    max-width: 600px;
}

/* Section Témoignages */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: #666;
    font-weight: bold;
}

/* Section Achat (CTA final) */
.purchase-section {
    padding: 80px 0;
    background-color: #A0522D;
    color: white;
    text-align: center;
}

.purchase-section h2 {
    font-size: 3em;
    color: white;
}

.purchase-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.final-cta {
    background-color: #fff;
    color: #A0522D;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.final-cta:hover {
    background-color: #eee;
}

/* Footer */
footer {
    background-color: #333;
    color: #eee;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design pour les petits écrans */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section .subtitle {
        font-size: 1.2em;
    }
    .book-cover {
        width: 200px;
    }
    .story-section h2, .testimonial-section h2, .purchase-section h2 {
        font-size: 2em;
    }
}