:root {
    --bg-color: #f4f1de; /* Beige 'Hoodie' */
    --tech-brown: #8C7C67; /* Marron 'Technique' des tracés */
    --neon-purple: rgb(180, 167, 214); /* Violet Néon */
    --tech-font: 'Roboto Condensed', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: var(--tech-font), serif;
    color: var(--tech-brown);
    overflow-x: hidden;
}

/* CONTAINER PRINCIPAL AVEC MARGE */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* LE CADRE GLOBAL 'STREETWEAR/BRUTALISTE' */
.street-frame {
    background-color: var(--bg-color);
    border: 5px solid var(--tech-brown);
    box-shadow: 15px 15px var(--tech-brown);
    padding: 60px 40px;
    position: relative;
}

/* STYLES TECHNIQUES COMMUNS (Style zine/dessin technique) */
.tech-frame {
    border: 2px solid var(--tech-brown);
    background-color: white;
    padding: 30px;
    margin-bottom: 50px;
    position: relative;
}

.tech-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    margin-bottom: 25px;
    border-bottom: 3px dashed var(--tech-brown);
    display: inline-block;
}

/* BOUTONS TECHNIQUES STYLE ÉTIQUETTE */
.btn-tech {
    display: inline-block;
    background-color: var(--tech-brown);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid var(--tech-brown);
    box-shadow: 6px 6px var(--neon-purple);
    transition: all 0.2s ease;
    margin-top: 20px;
}

.btn-tech:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px var(--neon-purple);
}

/* --- 1. BIOGRAPHIE --- */
.bio-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.bio-profile {
    flex-shrink: 0;
}

.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.bio-text { flex: 1; }

.bio-text .quote {
    color: var(--neon-purple);
    font-style: italic;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 5px 0;
}

/* --- 2. PORTFOLIO & CARROUSEL --- */
.portfolio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proj-title {
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 2.8rem;
}

.carousel-area {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MONTAGNE NÉON */
.center-mountain {
    z-index: 50;
    width: 500px;
    position: relative;
}

.mountain-svg {
    width: 100%;
    height: auto;
    animation: neonGlowPulse 1.5s infinite alternate ease-in-out;
}

@keyframes neonGlowPulse {
    from { filter: drop-shadow(0 0 5px var(--neon-purple)); }
    to { filter: drop-shadow(0 0 15px var(--neon-purple)); }
}

/* ITEMS D'ORBITE (CLIQUABLES) */
.orbit-item {
    position: absolute;
    width: 260px;
    border: 3px solid var(--tech-brown);
    background: white;
    padding: 5px;
    text-decoration: none; /* Enlève le soulignement du lien */
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.orbit-item img {
    width: 100%;
    display: block;
}

.orbit-item:hover {
    border-color: var(--neon-purple);
    box-shadow: 10px 10px 0px var(--neon-purple);
    z-index: 100 !important;
    transform: scale(1.05) !important;
}

.tech-label {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.8);
    padding: 2px 5px;
    border: 1px dashed var(--tech-brown);
    font-family: monospace;
}

/* --- 3. MARQUE --- */
.marque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.marque-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.marque-visual {
    display: flex;
    justify-content: center;
}

.logo-tampon-container {
    position: relative;
    border: 3px solid var(--tech-brown);
    padding: 15px;
    background-color: white;
}

.logo-tampon {
    width: 300px;
    height: auto;
    filter: grayscale(0.2) contrast(1.1);
}
