/* --- CONFIGURATION DU FOND --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url("Le palaisGLD.svg") no-repeat center center fixed;
    
    /* MODIFICATION ICI : Ajustez le % pour zoomer ou dézoomer (ex: 50%, 70%) */
    background-size: 38%; 
    
    /* ASTUCE : On force le fond en blanc (ou une autre couleur) pour combler le vide autour */
    background-color: #000000; 
    
    height: 100vh;
}

/* --- STRUCTURE GÉNÉRALE --- */
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pousse les blocs en haut et en bas */
    height: 100vh;
    box-sizing: border-box;
    padding: 40px 20px 60px 20px; /* 60px de marge en bas pour éviter les coupures */
}

/* --- LIGNES DE NAVIGATION --- */
.nav-row {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espace entre les boutons */
    flex-wrap: wrap;
}

/* --- STYLE DES ONGLETS "OR" --- */
.nav-item {
    text-decoration: none;
    padding: 12px 20px;
    min-width: 150px;
    text-align: center;
    
    /* Couleurs demandées */
    color: hsl(51, 100%, 90%); /* Jaune Or */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    
    /* Cadre Or */
    border: 2px solid hsl(51, 100%, 90%);
    border-radius: 5px;
    background-color: #000000b7; /* Fond noir pour détacher l'or */
    
    transition: all 0.3s ease;
}

.nav-item:hover {
    background-color: #DAA520;
    color: #000;
    transform: scale(1.05);
}

/* Espace central vide pour laisser voir le nom sur l'image */
.spacer {
    flex-grow: 1;
}

/* Adaptation mobile (les boutons se mettent les uns sous les autres) */
@media (max-width: 800px) {
    .nav-row {
        gap: 8px;
    }
    .nav-item {
        font-size: 11px;
        padding: 8px 10px;
        min-width: 120px;
    }
}