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

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

/* Styles généraux */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-gold);
    color: var(--color-black);
    line-height: 1.6;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Section Hero */
.hero {
    background: linear-gradient(135deg, var(--color-green), var(--color-gold));
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3em;
    font-weight: 400;
}

/* Section Hajj Details */
.hajj-details {
    background-color: var(--color-white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    max-width: 900px; /* Limite la largeur pour un contenu centré */
    margin-left: auto;
    margin-right: auto; /* Centre horizontalement le bloc */
    text-align: center; /* Centre le texte horizontalement */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre verticalement le contenu */
    justify-content: center;
}

.hajj-details h2 {
    font-size: 2em;
    color: var(--color-green);
    margin-bottom: 20px;
}

.hajj-details h3 {
    font-size: 1.5em;
    color: var(--color-black);
    margin-bottom: 10px;
}

.hajj-details p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.8; /* Ajoute un espacement confortable entre les lignes */
    max-width: 800px; /* Limite la largeur des paragraphes */
}

.hajj-details ul {
    padding-left: 0; /* Supprime l'indentation des listes */
    list-style: none; /* Supprime les points des listes */
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto; /* Centre la liste */
    text-align: center;
}

.hajj-details ul li {
    margin-bottom: 10px;
}

/* Bouton Guide */
.guide-button {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 1.2em;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.guide-button:hover {
    background: #004a24;
}

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

    .hero p {
        font-size: 1em;
    }

    .hajj-details h2 {
        font-size: 1.8em;
    }

    .hajj-details p, .hajj-details ul {
        font-size: 1em;
    }

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