/* =========================
   Freshzik Distribution
   Professional Style
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#050505;
    color:#fff;
    line-height:1.7;
}

header{
    background:#000;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:2px solid #D4AF37
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#F2C94C
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-weight:bold;
}

nav ul li a:hover{
    color:#00e676;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(180deg,#101010,#181818);
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#ddd;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:#00c853;
    color:#fff;
    padding:15px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#00e676;
    transform:scale(1.05);
}

section{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#00e676;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#121212;
    border:1px solid #222;
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#00e676;
}

.card h3{
    color:#00e676;
    margin-bottom:20px;
}

.card ul{
    padding-left:20px;
}

.card li{
    margin-bottom:12px;
}
/* =========================
   FORMULAIRE
========================= */

form{
    max-width:700px;
    margin:auto;
}

input,
select,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    background:#222;
    color:#fff;
    font-size:16px;
}

input:focus,
select:focus,
textarea:focus{
    outline:2px solid #00e676;
}

button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:40px;
    background:#00c853;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#00e676;
}

/* =========================
   CONTACT
========================= */

.contact{
    text-align:center;
}

.contact p{
    margin:10px 0;
    color:#ddd;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#000;
    text-align:center;
    padding:30px;
    color:#aaa;
    border-top:2px solid #00c853;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

nav{
    flex-direction:column;
}

nav ul{
    flex-direction:column;
    text-align:center;
    margin-top:20px;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:18px;
}

h2{
    font-size:30px;
}

.cards{
    grid-template-columns:1fr;
}
.card{
    margin-bottom:35px;
}

section{
    padding:100px 25px;
}

.card ul li{
    margin-bottom:15px;
}
}

