/**
 * Développement d'un portail pour permettre aux fournisseurs de billons
 * de saisir les numéros RDUE et leurs codes de validation par N) de chantier.
 *
 * @auteur [Moulay EL ATMANI](melatmani@groupetartiere.fr)
 * @voir <a href="https://portailrdue.groupetartiere.fr">Portail RDUE</a>
 */

/* Couleurs principales *//* Couleurs principales-green: #2e4d38;
    --leaf-green: #4CAF50;
    --light-green: #e8f5e9;
    --text-dark: #333;
    --white: #fff;
}

/* Style global */
body {
	background-image : url("../images/background_right_prdue_TA.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 40%;
	background-position: 100% 88%;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
/*    background: var(--light-green);*/
    color: var(--text-dark);
}

/* Header */
header {
    background: var(--forest-green);
    color: var(--white);
    text-align: center;
    padding: 25px;
    font-size: 1.2em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Onglets */
.tabs {
    display: flex;
    justify-content: center;
    background: var(--leaf-green);
    padding: 10px;
}

.tab {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.tab:hover {
    background: #3b6b4a;
}

.tab.active {
    background: #1f3326;
	color : #fff
}

/* Contenu principal */
main {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Sections */
.content {
    display: none;
}

.content.active {
    display: block;
}

/* FAQ */
details {
    margin-bottom: 15px;
    background: var(--light-green);
    padding: 10px;
    border-radius: 5px;
}

summary {
    font-weight: bold;
    cursor: pointer;
    color: var(--forest-green);
}

/* Liens et texte */
a {
    color: var(--leaf-green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
:root {
