@import url('kihim.css');
@import url('nippo.css');
@import url('sixtyfour.css');
@import url('https://fonts.googleapis.com/css2?family=Sixtyfour&display=swap');
@import url('jgs9.css');

:root{
    --neon_color: #f2f2c1;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: #03031a;
}
/* --- Bandeau ---*/
#bandeau {
    position:sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(38, 38, 38, 0.43);
    backdrop-filter: blur(4px); 
    height: auto; 
    min-height: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    margin: 20px;
    margin-bottom:30px;
    align-items: center; 
    justify-content: center;
    padding: 20px;
}
#bandeau-title {
    border-top: 2px solid #FCFCE5; 
    border-bottom: 2px solid #FCFCE5;
    color: #FCFCE5;
    font-family: Nippo-Medium;
    font-size: clamp(2rem, 8vw, 5.5rem); /* 1rem = 16px | clamp(Minimum,Valeur ideal,Maximum) */
    text-transform: uppercase;
    transform: scaleX(1.2); 
    text-align: center;
    margin: 0;
}

.main-container{
    display: flex;

}

.main-container div{
    margin: 15px;
}

/* --- Liste des projects --- */
#projects-list{
    position:sticky;
    top: --bandeau-hight;
    width:max-content;
    height: max-content;
    background: #03031a;
    border: 2px solid var(--neon_color);
    border-radius: 10px;
    padding: 20px;
    animation: neon-pulse 10s infinite alternate;
}

@keyframes neon-pulse {
    from {
        box-shadow: 
            0 0 3px var(--neon_color),
            0 0 8px var(--neon_color),
            0 0 15px var(--neon_color);
    }
    to {
        box-shadow: 
            0 0 4px var(--neon_color),
            0 0 8px var(--neon_color),
            0 0 15px var(--neon_color),
            0 0 30px var(--neon_color);
    }
}
#projects-list-titre {
    font-family: Sixtyfour;
    color: #fdfdfd;
    text-align: left;
    margin-left: 5px;
    font-size: clamp(0.5rem, 1.5vw, 2.5rem);
    text-shadow: 2px 2px 4px #8c8c8c ;   
}

#project-list-tx{
    font-family: Sixtyfour;
    color: #fdfdfd;
    text-align: left;
    font-size: clamp(0.3rem, 1vw, 2rem);
}   
/* --- Affichage des pages de projects --- */
.project-container {
    flex-grow: 4;
    vertical-align: top;
    width:auto;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#project-close{
    display:flex;
    align-items: left; 
    justify-content: center;
    border: 2px solid #f2f2c1;
    border-radius: 20px;
}

#Luxi-preview{
    width: 8%;
    height: 8%;
}
#project-text-container{
    font-family: jgs7;
}
/* --- ADAPTATION MOBILE --- */
@media (max-width: 768px) {
    #bandeau {
        margin: 10px;
        padding: 10px;
    }
    
    #nippo-title {
        transform: scaleX(1); 
    }
}