
.story-section {
 max-width: 800px;
    padding: 20px;

    /* centrage dans le navigateur */
    margin: 0 auto;

    /* centrage du contenu */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Titres */
.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 0;
    color: #2c2c2c;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-top: -10px;
    color: #d35400; /* Couleur terre cuite / rouille */
    letter-spacing: 1px;
}

/* Texte principal */
.content {
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.content p {
    margin: 10px 0;
}

.thanks {
    margin-top: 20px;
}

.heart {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Bouton avec dégradé */
.btn-message {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(to right, #b33912, #ff8a5c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-message:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Adaptabilité mobile */
@media (max-width: 600px) {
    .title { font-size: 2.5rem; }
    .subtitle { font-size: 1.4rem; }
    .content { font-size: 1rem; }
}