/* Importation d'une police Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Couleurs */
:root {
    --color-white: #fff;
    --color-green: #005f30;
    --color-gold: #e8dfc8;
    --color-black: #000000;
}

/* Styles généraux */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--color-black);
    background-color: var(--color-gold);
}

body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Cérémonie Funéraire */
.funerary-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--color-gold);
}

.funerary-section h1 {
    font-size: 2.5em;
    color: var(--color-green);
    margin-bottom: 20px;
}

.funerary-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--color-black);
    line-height: 1.6;
}

.funerary-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bouton CTA */
.cta {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #c8961e;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .funerary-section h1 {
        font-size: 2em;
    }

    .funerary-section p {
        font-size: 1em;
    }

    .funerary-image {
        max-height: 200px;
    }

    .cta {
        font-size: 1em;
        padding: 8px 16px;
    }
}
