/* --- ABOUT WHEEL PAGE STYLES --- */
body {
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.about-wheel-section {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.about-title {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- MAIN LAYOUT (HORIZONTAL) --- */
.wheel-main-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

/* --- WHEEL CONTAINER (LEFT SIDE) --- */
.wheel-container {
    position: relative;
    flex: 0 0 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    z-index: 5;
}

.wheel-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 50px rgba(229, 46, 46, 0.15);
    background: #111;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    opacity: 0.8;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #000;
    border: 3px solid var(--color-primary, #e52e2e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(229, 46, 46, 0.4);
}

.wheel-logo {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 3rem;
    color: var(--color-primary, #e52e2e);
    font-weight: bold;
}

/* --- PILLAR NODES positionnés circulairement --- */
.pillars-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pillar-node {
    position: absolute;
    width: 160px;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s ease;
    z-index: 15;
}

.pillar-node:hover {
    transform: scale(1.1);
    border-color: var(--color-primary, #e52e2e);
}

.pillar-node.active {
    background: var(--color-primary, #e52e2e);
    border-color: var(--color-primary, #e52e2e);
    box-shadow: 0 0 20px rgba(229, 46, 46, 0.4);
}

.node-icon {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.node-label {
    font-family: var(--font-body, 'Barlow', sans-serif);
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

/* Positionnement des 4 points cardinaux */
.node-1 { top: 0; left: 50%; transform: translateX(-50%); } 
.node-2 { top: 50%; right: 0; transform: translateY(-50%); } 
.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); } 
.node-4 { top: 50%; left: 0; transform: translateY(-50%); } 

/* --- INFO PANEL (RIGHT SIDE) --- */
.info-panel {
    flex: 1;
    min-height: 450px;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.info-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 3rem;
    opacity: 0;
    transform: translateY(-30%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.info-content.active {
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
}

.info-content h2 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 3rem;
    color: var(--color-primary, #e52e2e);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.info-content p {
    font-family: var(--font-body, 'Barlow', sans-serif);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Listes et Stats */
.valeurs__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.valeurs__item {
    background: #0a0a0a;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--color-primary, #e52e2e);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background: #000;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border-top: 3px solid var(--color-primary, #e52e2e);
    text-align: center;
}

.stat-box strong { font-size: 1.5rem; color: #fff; }

/* Responsive */
@media (max-width: 1200px) {
    .wheel-main-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .wheel-container { flex: none; width: 100%; height: auto; }
    .pillars-circle {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    .pillar-node { position: static; width: 100%; transform: none !important; }
    .info-panel { width: 100%; min-height: auto; align-items: flex-start; }
    .info-content { position: relative; opacity: 1; transform: none; top: 0; padding: 2rem; display: none; }
    .info-content.active { display: block; }
}
