body{
margin:0;
font-family:'Segoe UI',sans-serif;
background:linear-gradient(135deg,#2f5f8a,#1b3d5c);
color:white;
}

/* INTRO */
#intro{
position:fixed;
top:0;left:0;
width:100%;height:100%;
background:black;
z-index:9999;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

#intro video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0.7;
}

.intro-overlay{
position:relative;
text-align:center;
animation:fadeIn 2s;
}

.intro-logo{width:150px;}

.intro-overlay button{
margin-top:20px;
padding:15px 30px;
background:#00b4ff;
border:none;
border-radius:8px;
cursor:pointer;
}

.construction-banner{
background:#00b4ff;
text-align:center;
padding:10px;
font-weight:bold;
}

header{text-align:center;padding:40px;}
.logo{width:120px;}

nav{
display:flex;
justify-content:center;
flex-wrap:wrap;
background:rgba(0,0,0,0.6);
}

nav a{
padding:15px 20px;
cursor:pointer;
}

.section{
display:none;
padding:60px 20px;
max-width:1000px;
margin:auto;
}

.section.active{display:block;}

.glass{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
border-radius:15px;
padding:30px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{width:100%;border-radius:10px;}

form{
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea,select{
padding:12px;
border:none;
border-radius:8px;
}

button{
padding:15px;
background:#00b4ff;
border:none;
border-radius:8px;
cursor:pointer;
}

footer{
text-align:center;
padding:20px;
background:rgba(0,0,0,0.6);
}

@keyframes fadeIn{
from{opacity:0;}
to{opacity:1;}
}

/* FOOTER LEGAL COMPLET */

.footer-legal{
background:#111;
padding:40px 20px;
font-size:14px;
margin-top:80px;
}

.footer-content{
max-width:1000px;
margin:auto;
line-height:1.8;
text-align:center;
}

.footer-content h3{
margin-bottom:15px;
}

.footer-legal i{
margin-right:8px;
color:#00b4ff;
}

.footer-legal a{
color:#00b4ff;
cursor:pointer;
text-decoration:none;
}

.footer-legal a:hover{
text-decoration:underline;
}

.rgpd{
margin-top:15px;
font-size:13px;
opacity:0.9;
}