html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial;
line-height:1.6;
}

/* HEADER */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
transition:0.3s;
background:rgba(0,0,0,0.5);
}

.header a{
			color: #ffffff!important;
}

.header.scrolled{
background:#ffffff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled .logo{
color:#5DA7C0;
}

.header.scrolled a{
color:#5DA7C0!important;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
}

.logo{
font-weight:bold;
font-size:20px;
color: #ffffff;
}

/* MENU */

.nav-menu{
display:flex;
z-index:1500;
gap:30px;
list-style:none;
margin:0;
padding:0;
padding-top:40px;
}


.nav-menu a{
position:relative;
text-decoration: none;
color: #ffffff!important;
}

.nav-menu a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#ff2a00;
transition:0.3s;
}

.nav-menu a:hover::after{
width:100%;
}

/* BURGER */

.burger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
z-index:2000;
}

.burger span{
width:25px;
height:3px;
background:#ff2a00;
display:block;
}

/* MOBILE */

@media(max-width:900px){

.nav-menu{
position:fixed;
top:0;
right:-100%;
height:100vh;
width:250px;
background:white;
flex-direction:column;
justify-content:center;
align-items:center;
gap:40px;
transition:0.4s;
box-shadow:-5px 0 15px rgba(0,0,0,0.1);
}

@media(max-width:900px){

.nav-menu a{
color:#000!important;
}

}

.nav-menu.active{
right:0;
}

.burger{
display:flex;
}

}

/* ANIMATION BURGER */

.burger{
position:relative;
z-index:2000;
}

.burger span{
transition:0.3s;
}

.burger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.burger.active span:nth-child(2){
opacity:0;
}

.burger.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}


/* HERO */

.hero{
height:100vh;
background:url("../img/unnamed.jpg") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.3);
}

.hero-content{
position:relative;
color:white;
font-size:40px;
text-align:center;
}


/* INTRO SECTION */

.intro{
padding:80px 10%;
background:#f8f8f8;
}

.intro-container{
display:flex;
align-items:center;
gap:60px;
}

/* IMAGE */

.intro-image{
flex:1;
}

.intro-image img{
width:100%;
height:500px;
object-fit:cover;
border-radius:10px;
}

/* TEXTE */

.intro-content{
flex:1;
}

.intro-content h2{
font-size:32px;
margin-bottom:20px;
color: #D3704B;
}

.intro-content p{
margin-bottom:30px;
font-size:20px;
color:#555;
line-height:1.6;
}

/* CTA */

.cta{
display:inline-block;
padding:14px 28px;
background:#5DA7C0;
color:white;
text-decoration:none;
border-radius:6px;
transition:0.3s;
}

.cta:hover{
background:#D3704B;
}


/* TEAM */

.team{
padding:80px 10%;
text-align:center;
}

.team h2{
margin-bottom:40px;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.member{
cursor:pointer;
}

.member img{
width:100%;
border-radius:8px;
}

.member h3{
margin:10px 0 5px;
}

.member p{
margin:0;
font-size:14px;
color:#666;
}

.member-details{
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
font-size:14px;
margin-top:10px;
text-align: left;
}

.member.active .member-details{
max-height:200px;
overflow-y:auto;
padding-right:5px;
}


.member-btn{

margin-top:10px;
padding:16px 14px;
border:none;
background:#5DA7C0;
color:white;
font-weight: bold;
border-radius:50px;
cursor:pointer;
font-size:18px;
transition:0.3s;

}

.member-btn:hover{
background:#D3704B;
}


/* GRID */

.actions-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;

}


/* CARTE */

.action-card{

background:white;
border-radius:10px;
padding:30px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;

}

.action-card:hover{

transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);

}

.action-card h3{

text-align:center;
margin-bottom:20px;

}

/* ACTION CARDS ANIMATION */

.action-card{

cursor:pointer;
overflow:hidden;
transition:0.4s;

}

.action-content{

max-height:0;
overflow:hidden;
transition:0.5s;

}

.action-card.active .action-content{

max-height:400px;

}

.action-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);

}


/* CONTENU */

.action-content{

display:grid;
grid-template-columns:1fr 1fr;
gap:20px;

}

.action-content h4{

margin-bottom:10px;

}

.action-content ul{

padding-left:18px;
font-size:14px;

}

.action-content li{

margin-bottom:6px;

}


/* RESPONSIVE */

@media(max-width:900px){

.actions-grid{

grid-template-columns:1fr;

}

.action-content{

grid-template-columns:1fr;

}

}

/* FADE SCROLL */

.fade-in{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}

/* ZOOM IN IMG */

.intro-image{
flex:1;
overflow:hidden;
border-radius:10px;
}

.intro-image img{
width:100%;
height:400px;
object-fit:contain;
transition:transform 0.6s ease;
}

.intro-image:hover img{
transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:1000px){

.team-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:700px){

.team-grid{
grid-template-columns:repeat(2,1fr);
}

.hero-content{
font-size:28px;
}

}

@media(max-width:500px){

.team-grid{
grid-template-columns:1fr;
}

}

@media(max-width:900px){

.intro-container{
flex-direction:column;
}

.intro-image img{
height:400px;
}

}

.hero-page{
padding-top:140px;
padding-bottom:80px;
background:#f5f5f5;
text-align:center;
}

.hero-page h1{
font-size:40px;
margin-bottom:20px;
color:#5DA7C0;
}

.hero-page p{
max-width:800px;
margin:auto;
font-size:18px;
}


.container{
max-width:1200px;
margin:auto;
padding:0 10%;
}


/* INTRO */

.project-intro{
padding:60px 0;
text-align:center;
}

.intro-text{
font-size:20px;
max-width:700px;
margin:auto;
}


/* SECTIONS */

.project-section{
padding:100px 0;
}

.project-section.alt{
background:#f9f9f9;
}

.project-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.project-text ul{
padding-left:20px;
}

.project-text li{
margin-bottom:10px;
}

.project-image img{
width:100%;
border-radius:10px;
}


/* PRIORITIES */

.priorities{
padding:100px 0;
background:#f5f5f5;
}

.priorities h2{
text-align:center;
margin-bottom:60px;
}

.priorities-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.priority-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.priority-card:hover{
transform:translateY(-6px);
}

.priority-card h3{
color:#D3704B;
margin-bottom:10px;
}


/* RESPONSIVE */

@media(max-width:900px){

.project-grid{
grid-template-columns:1fr;
}

.priorities-grid{
grid-template-columns:1fr;
}

}