/* ======================================================
   SENTINEL BIKE AI 2027
   Site Officiel
   Version 2027
====================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,Helvetica,sans-serif;
background:#111;
color:#ffffff;
line-height:1.6;

}

/* ================= HEADER ================= */

header{

background:#1b1b1b;
border-bottom:3px solid #00c8ff;
position:sticky;
top:0;
z-index:999;

}

/* ================= NAVIGATION ================= */

nav{

display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
padding:18px;

}

.logo{

color:#00c8ff;
font-size:30px;
margin-right:40px;

}

nav a{

color:white;
text-decoration:none;
margin:8px;
padding:12px 20px;
border-radius:8px;
transition:.3s;

}

nav a:hover{

background:#00c8ff;
color:#000;

}

/* ================= HERO ================= */

.hero{

padding:90px 30px;
text-align:center;

}

.hero h2{

font-size:55px;
color:#00c8ff;
margin-bottom:20px;

}

.slogan{

font-size:26px;
color:#7fdfff;
margin-bottom:25px;

}

.hero p{

max-width:900px;
margin:auto;
font-size:20px;

}

/* ================= BOUTON ================= */

.btn{

display:inline-block;
margin-top:40px;
padding:18px 35px;
background:#00c8ff;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:12px;
transition:.4s;

}

.btn:hover{

background:#00ff99;
transform:scale(1.08);

}

/* ================= SECTIONS ================= */

section{

padding:70px 40px;

}

section h2{

text-align:center;
color:#00c8ff;
font-size:40px;
margin-bottom:30px;

}

section p{

max-width:1000px;
margin:auto;
font-size:18px;

}

/* ================= LISTES ================= */

ul{

max-width:900px;
margin:40px auto;

}

li{

margin:15px 0;
font-size:20px;

}

/* ================= GALERIE ================= */

.gallery{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;

}

.gallery figure{

background:#1b1b1b;
padding:20px;
border-radius:12px;
text-align:center;
transition:.4s;

}

.gallery figure:hover{

transform:translateY(-8px);

}

.gallery img{

width:100%;
border-radius:10px;

}

.gallery figcaption{

margin-top:15px;
color:#7fdfff;
font-weight:bold;

}

/* ================= FOOTER ================= */

footer{

background:#1b1b1b;
padding:35px;
text-align:center;
border-top:3px solid #00c8ff;

}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.logo{

width:100%;
text-align:center;
margin-bottom:20px;
margin-right:0;

}

.hero h2{

font-size:38px;

}

.slogan{

font-size:22px;

}

nav{

flex-direction:column;

}

nav a{

width:90%;
text-align:center;

}

}