/* ===========================================
   JLR Signalisation, Escorte et Sécurité Routière Inc.
   Style principal
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
    line-height:1.6;
}

/* ==========================
   HEADER
========================== */

header{
    background:#222;
    color:white;
    padding:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

.container{
    width:95%;
    max-width:1300px;
    margin:auto;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#ff9800;
}

/* ==========================
   MENU
========================== */

nav{
    margin-top:20px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-right:20px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ff9800;
}

/* ==========================
   HERO
========================== */

.hero{
    background:linear-gradient(135deg,#ff9800,#ffb300);
    color:white;
    padding:70px 20px;
    text-align:center;
}

.hero h2{
    font-size:42px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
}

/* ==========================
   SECTION
========================== */

section{
    padding:60px 20px;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#ff9800;
}

/* ==========================
   CARTES
========================== */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

figure{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

figure h3{
    color:#ff9800;
    margin-bottom:15px;
}

/* ==========================
   BOUTONS
========================== */

.btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    background:#ff9800;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#e68900;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:40px;
}

footer a{
    color:#ff9800;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:768px){

.hero h2{
    font-size:30px;
}

nav a{
    display:block;
    margin:10px 0;
}

}