@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
min-height:100vh;
background:linear-gradient(
135deg,
#fff7f8 0%,
#ffe8ef 50%,
#ffffff 100%
);
overflow-x:hidden;
}

/* ==========================
HEADER
========================== */

.header{
width:100%;
background:#ffffff;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.logo-container{
display:flex;
align-items:center;
}

.header-logo{
width:70px;
height:70px;
object-fit:cover;
border-radius:50%;
border:3px solid #e7b4c4;
}

.header-buttons{
display:flex;
align-items:center;
gap:10px;
}

.contact-btn,
.tracking-btn{
text-decoration:none;
color:white;
padding:10px 15px;
border-radius:30px;
font-weight:600;
font-size:14px;
transition:.3s;
white-space:nowrap;
}

.contact-btn{
background:#25D366;
}

.tracking-btn{
background:#d48ea4;
}

.contact-btn:hover,
.tracking-btn:hover{
transform:translateY(-3px);
}

/* ==========================
HERO
========================== */

.hero{
min-height:75vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:60px 20px;
}

.hero h1{
font-size:60px;
color:#d48ea4;
margin-bottom:20px;
}

.hero h1 span{
color:#d4a24f;
}

.hero p{
max-width:750px;
font-size:20px;
color:#555;
line-height:1.8;
margin-bottom:40px;
}

/* ==========================
BOUTONS PRINCIPAUX
========================== */

.buttons{
width:100%;
max-width:500px;
display:flex;
flex-direction:column;
gap:15px;
}

.btn-primary,
.btn-secondary,
.btn-guide{
text-decoration:none;
text-align:center;
padding:18px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn-primary{
background:#e7b4c4;
color:white;
box-shadow:0 6px 20px rgba(231,180,196,.4);
}

.btn-secondary{
background:#d4a24f;
color:white;
box-shadow:0 6px 20px rgba(212,162,79,.4);
}

.btn-guide{
background:white;
color:#d48ea4;
border:2px solid #e7b4c4;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-guide:hover{
transform:translateY(-5px);
}

/* ==========================
RESEAUX SOCIAUX
========================== */

.socials{
padding:80px 20px;
text-align:center;
}

.socials h2{
color:#d48ea4;
font-size:42px;
margin-bottom:35px;
}

.social-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.social{
width:85px;
height:85px;
border-radius:50%;
background:white;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
color:#d48ea4;
font-size:35px;
box-shadow:0 5px 15px rgba(0,0,0,.10);
transition:.3s;
}

.social:hover{
transform:translateY(-8px);
}

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

footer{
background:#e5e5e5;
color:#555;
text-align:center;
padding:25px;
margin-top:40px;
border-top:1px solid #d4d4d4;
}

/* ==========================
TABLETTE
========================== */

@media(max-width:992px){

```
.hero h1{
    font-size:48px;
}

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

}

/* ==========================
MOBILE
========================== */

@media(max-width:768px){

```
.header{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:10px;
}

.header-logo{
    width:55px;
    height:55px;
}

.header-buttons{
    display:flex;
    flex-direction:row;
    gap:5px;
    align-items:center;
}

.contact-btn,
.tracking-btn{
    padding:8px 10px;
    font-size:11px;
    border-radius:25px;
}

.hero{
    min-height:60vh;
    padding:40px 15px;
}

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

.hero p{
    font-size:15px;
    line-height:1.6;
}

.btn-primary,
.btn-secondary,
.btn-guide{
    padding:15px;
    font-size:14px;
}

.socials{
    padding:50px 15px;
}

.socials h2{
    font-size:28px;
}

.social{
    width:70px;
    height:70px;
    font-size:28px;
}
```

}

/* ==========================
PETITS TELEPHONES
========================== */

@media(max-width:480px){

```
.header-logo{
    width:50px;
    height:50px;
}

.contact-btn,
.tracking-btn{
    padding:7px 8px;
    font-size:10px;
}

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

.hero p{
    font-size:14px;
}
.guide-container{
padding:60px 20px;
display:flex;
justify-content:center;
}

.guide-card{
max-width:900px;
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.guide-card h1{
text-align:center;
color:#d48ea4;
margin-bottom:20px;
}

.guide-card p{
color:#555;
line-height:1.7;
}

.step{
margin-top:20px;
padding:20px;
background:#fff7f8;
border-left:4px solid #e7b4c4;
border-radius:10px;
}

.step h3{
color:#d48ea4;
margin-bottom:10px;
}

.highlight{
background:#fffaf2;
border-left:4px solid #d4a24f;
}

.image-block{
margin-top:20px;
background:#f9f9f9;
}

.image-placeholder{
margin-top:10px;
padding:35px;
border:2px dashed #ccc;
text-align:center;
border-radius:10px;
color:#888;
}

/* bouton retour centré */
.back-btn-container{
display:flex;
justify-content:center;
margin-top:30px;
}
```

}
