
.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
:root {
--neon-red :#f83224;
--neon-pink :rgb(180, 106, 119);
--dark-bg :#0a0a0a;
--darcker-bg:#050505;
--text-light :white;
--text-dim :#aaaaaa;
--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32 ,1.275, );

}
.col_1 {width: 8.333333%;}
.col_2 {width: 16.666666%;}
.col_3 {width: 25%;}
.col_4 {width: 33.333333%;}
.col_5 {width: 41.666666%;}
.col_6 {width: 50%;}
.col_7 {width: 58.333333%;}
.col_8 {width: 66.666666%;}
.col_9 {width: 75%;}
.col_10 {width: 83.333333%;}
.col_11 {width:91.666666%;}
.col_12 {width: 100%;}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
section{

background-clip: text;
color: transparent;
text-shadow: none;
}
header{
     display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-clip: ur;
}
#background-video {
height: 100vh;
width: 100vw;
object-fit: cover;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
}

h1, h2, #btnVideo{

color: rgb(236, 227, 227);

font-family: Trebuchet MS;

font-weight: bold;

text-align: center;

}

h1 {
font-size:  2.5rem;
margin-top: 30vh;

}

h2 { font-size: 2rem; }

#btnVideo{
font-size: 1.5rem;
background: 0;
border: 0;
margin-left: 50%;
transform: translateX(-50%);
}
.bleu{
   
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: fixed;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    border: 1px solid rgb(225, 225, 225, 0.15);
    box-shadow: 0 6px 6px rgb(0, 0, 0, 0.5);

}
nav ul {
    display: flex; 
    justify-content: center; 
    list-style: none;
    margin-top: 0%;
}

nav ul li {
	margin: 0 9rem;
    height: 50px;
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
   display: flex;align-items: center;
    color: white;
}

nav ul li a{
    color: #fff; 
    text-decoration: none; 
    font-size: 2rem; 
    white-space: nowrap;
}


.h1{
    background: linear-gradient(to bottom left, rgb(122, 243, 243) 50%, palegoldenrod 50%);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: fixed;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    border: 1px solid rgb(225, 225, 225, 0.15);
    box-shadow: 0 6px 6px rgb(0, 0, 0, 0.5);
    margin-top: 10px;

}

/* * parametrage de mon cv */


body{
    background: var(--dark-bg);
   color: var(--text-light);
   overflow-x: hidden;
   height: 100vh;
   position: relative;
   
   
}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width:100% ;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid rgba(255, 0, 60, 0.1);

}

.logo{
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
} 
.logo span {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.7)
}
.nav-links{
    display: flex;
    gap:35px;
}
.nav-link{
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    letter-spacing:1px ;
    position: relative;
    transition: var(--transition);

}
.nav-link::after{
    content:"" ;
    position: absolute;
    bottom: -5px;
    left:0 ;
    width: 0;
    height: 2px;
    background: var(--neon-red);
    transition: var(--transition);


}
.nav-link:hover {
    color:var(--text-light);
}
.nav-link:hover::after{
    width: 100%;
}
#hero{
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text{
    position: relative;
    z-index: 2;
}
h1,h2 {
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;

}
p{
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-weight: 300;  
}
.hero-text h1{
    font-size: 2rem;
    margin-bottom:25px ;
    background: linear-gradient(90deg, #ffffff, var(--neon-red), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}
.hero-text h2{
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: var(--text-dim);

}
.hero-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
}
.btn-group{
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-left: 70px;
}
.btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: transparent;
    color: var(--neon-red);
    border: 2px solid var(--neon-red);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 0 25px rgba (255, 0, 60 ,0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 50px;

}
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-red);
    transition: width 0.5s ease;
    z-index: -1;

}
.btn:hover {
    color: #000;
    box-shadow: 0 0 40px var(--neon-red);
    transform: translateY(-5px);
}
.btn:hover::before{
    width: 100%;
}
.btn-primary{
    background:var(--neon-red);
    color: #000;
    font-weight: 700;
}
.btn-primary:hover{
    background: transparent;
    color: var(--neon-red);
}
.btn-primary::before{
    background: #000;
}

/* *parametrage de profil */
.profile-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}
.profile-wrapper{
    position: relative;
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;

}
@keyframes float {

    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    }
    50%{
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    75%{
        transform : translateY(-20px) rotateX(-5deg) rotateY(-5deg);
    }
}
.profile-img{
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% /30% 30% 70% 70% ;
    object-fit: cover;
    border:6px solid transparent;
    box-shadow: 0 0 50px var(--neon-red);
    animation: glow 3s infinite alternate, morph 12s ease-in-out infinite;
    position: relative;
    z-index: 10;
    background: linear-gradient(45deg, var(--dark-bg), var(--darcker-bg));
}
@keyframes glow {
    0%{
        box-shadow: 0 0 40px var(--neon-red), 0 0 80px rgba(255, 0, 60, 0.3);
        border-color: var(--neon-red);
    }
    100%{
        box-shadow: 0 0 60px var(--neon-red), 0 0 120px rgba(255, 0, 60, 0.5);
        border-color: var(--neon-pink);
    }
}
@keyframes morph{
    0%{
        border-radius: 30% 70% 70% 30% /30%  30% 70%  70%  ; 
    }
    33% {
        border-radius: 58% 42% 75% 25% / 76%  46% 54%  24%  ; 
    }
    66%{
        border-radius: 18% 82% 41% 59% /59%  54% 46%  41%  ; 
       
    }
    100%{
        border-radius: 30% 70% 70% 30% /30%  30% 70%  70%  ; 
        
    }
}
.glow-effect{
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    background: var(--neon-red);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 4s infinite alternate;

}
@keyframes pulse{
    0%{
        opacity: 0.2;
        transform: scale(0.95);
    }
    100%{
        opacity: 0.4;
        transform: scale(1.05);
    }
}
footer{
    background: var(--darcker-bg);
    padding: 50px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 60, 0.1);
}
.footer-content{
    max-width: 600px;
    margin: 0 auto;
}
.footer-logo{
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    
}
.footer-logo span{
    color: var(--neon-red);
}
.footer-text{
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}



.social-links{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}
.social-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
   
}
.social-link:hover{
    background: var(--neon-red);
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 0, 60, 0.4);
    border-color: var(--neon-red);

}
.copyright{
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);

}
/* custom scollbar*/
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #0cd1580f;

}
::-webkit-scrollbar-thumb {
    background: var(--neon-red);
    border-radius:10px ;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}
@media (max-width: 992px){
    .hero-content{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text{
        margin-bottom: 60px;
    }
    .btn-group{
        justify-content: center;
    }
    .profile-wrapper{
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    h1 {
    font-size:  1.5rem;
    margin-top: 30vh;
    }
    h2 { font-size: 0.8rem; 
    }
    nav ul li {
        margin: 0 2rem;
    }
       nav ul li a{
        color: #fff; 
        text-decoration: none; 
        font-size: 0.9rem; 
        white-space: nowrap;
    }

}
@media(max-width: 576px){
    .hero-text h1{
        font-size: 2.5rem;
    }
    .btn-group {
        flex-direction: column;

    }
    .profile-wrapper{
        width: 280px;
        height: 280px;
    }
    .section-title{
        font-size: 2.3rem;
        
    }
    .particle {
        position: absolute;
        border-radius: 50%;
        background: var(--neon-red);
        pointer-events: none;
        z-index: 5;
        
    }

    .nav-link{
        margin: 0 -0.5rem;
    }
     h1 {
    font-size:  1.5rem;
    margin-top: 30vh;
    }
    h2 { font-size: 0.8rem; 
       }
    nav ul li {
        margin: 0 .5rem;
    }
     nav ul li a{
        color: #fff; 
        text-decoration: none; 
        font-size: 0.8rem; 
        white-space: nowrap;
        color: #f83224;
    }

    

    
}
