body {
    background-color: #000000;
}

.page-title {
    font-family: var(--font-titres);
    font-size: var(--taille-h1);
    font-weight: var(--poids-gras);
    text-align: center;
    padding-bottom: 0.5rem; /* Espace pour la lueur */
    background: rgba(255, 215, 0, 0.9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
                 0 0 10px rgba(255, 165, 0, 0.2);
}

/* --- Styles communs pour les sections --- */
#tarifs-intro-container,
#calculateur-wrapper,
#calculateur-container {
    padding: 1.5625rem; /* 25px */
}

#tarifs-intro-container p,
#calculateur-container h2,
#calculateur-container p,
#tarifs-exemples-container p,
#tarifs-exemples-container h3 {
    text-align: center;
}

/* --- Section Introduction --- */
#tarifs-intro-container {
    margin-bottom: 1.875rem; /* 30px */
    background-color: rgba(0, 0, 18, 0.4);
}

#tarifs-intro-container .souligner {
    font-size: 1.5rem;
    text-decoration: underline;
    color: rgba(238, 238, 238, 1);
}

#tarifs-intro-container p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 50rem; /* 800px */
    margin: 1.25rem auto 0; /* 20px */
}

.fonctionnement {
    /* 1. Encadrement visuel pour créer un "bloc" */
    border-left: 3px solid rgba(255, 215, 0, 0.5); /* Trait doré semi-transparent, subtil */
    background-color: rgba(255, 215, 0, 0.05); /* Léger fond pour renforcer le bloc */
    padding: 1rem 1.5rem; /* Espace intérieur confortable */
    margin: 2.5rem 0; /* Espace avant et après le bloc */
    border-radius: 4px; /* Adoucit les coins */
    
    /* 2. Style du texte, moins agressif */
    color: rgba(255, 250, 220, 0.9); /* Couleur crème/ivoire, dans le thème mais plus douce */
    font-size: 1.1em; /* Légèrement plus petit pour un ton informatif */
    line-height: 1.6; /* Améliore la lisibilité */
}


/* --- Section Calculateur --- */
#calculateur-wrapper,
#calculateur-container {
    margin-top: 1.875rem; /* 30px */
}

#calculateur-container {
    border-radius: 0.9375rem; /* 15px */
}

#calculateur-container h2 {
    margin-top: 0;
    font-size: 2rem;
    background: rgba(255, 215, 0, 0.9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4),
    0 0 10px rgba(255, 165, 0, 0.2);
    margin-bottom: 0;
}

#calculateur-container p {
    font-family: var(--font-oceanside);
    font-size: 1.2rem;
}

/* --- Section Exemples --- */
#tarifs-exemples-container {
    color: rgba(238, 238, 238, 1);
    font-size: 1.2em;
    margin: 0.625rem 0; /* 10px */
}

#tarifs-exemples-container p {
    margin-bottom: 2rem; /* 32px */
    padding-bottom: 1.5rem; /* 24px */
}

#tarifs-exemples-container h3 {
    margin-top: 0;
    margin-bottom: 1.25rem; /* 20px */
    color: rgba(255, 255, 255, 1);
    font-size: 2rem;
}

.exemple_de_prix {
    color: rgba(255, 215, 0, 1);
}

/* --- Note de l'artiste --- */
.note-artiste {
    margin-top: 1.5625rem !important; /* 25px */
    font-size: 1.4rem !important;
    font-style: italic;
    opacity: 0.9;
}

/* ==========================================================
   STYLES RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {

    #tarifs-intro-container {
        padding: 1.5rem;
    }

    #tarifs-intro-container .souligner {
        font-size: 1.4rem;
    }

    #tarifs-intro-container p {
        font-size: 1rem;
        line-height: 1.2;
    }

    .note-artiste {
        font-size: 1.1rem !important;
        opacity: 1;
    }

    #tarifs-exemples-container h3 {
        font-size: 1.6rem;
    }

    #calculateur-wrapper {
        padding: 0;
    }

    #calculateur-container h2 {
        font-size: 1.5rem;
    }
    
    #calculateur-container p {
        font-size: 1rem;
    }
}