:root{
    --vert:#243A2A;
    --vert-fonce:#1D2D21;
    --or:#B08B42;
    --beige:#E7D4B2;
    --clair:#F8F6F2;
    --texte:#3D3D3D;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--clair);
    color:var(--texte);
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(36,58,42,0.95);
    backdrop-filter:blur(10px);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    height:75px;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:white;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:0.85rem;
}

.menu a:hover{
    color:var(--beige);
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2000&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:850px;
    padding:20px;
}

.hero-logo{
    width:220px;
    margin:0 auto 30px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:4rem;
    font-weight:600;
    margin-bottom:15px;
}

.hero p{
    font-size:1.1rem;
    margin-bottom:10px;
}

.signature{
    letter-spacing:2px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:40px;
    background:var(--vert);
    color:white;
    transition:0.3s;
}

.btn:hover{
    background:var(--or);
}

/* SECTIONS */

section{
    padding:110px 0;
}

.section-title{
    text-align:center;
    color:var(--vert);
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    margin-bottom:20px;
}

.section-text{
    max-width:800px;
    margin:auto;
    text-align:center;
}

/* SERVICES */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    margin-top:60px;
}

.card{
    background:white;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.card h3{
    color:var(--vert);
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:10px;
}

/* CTA */

.cta{
    background:var(--vert);
    color:white;
    text-align:center;
}

.cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    margin-bottom:20px;
}

/* FOOTER */

footer{
    background:var(--vert-fonce);
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

.menu{
    display:none;
}

.hero h1{
    font-size:2.8rem;
}

.hero-logo{
    width:160px;
}

.section-title{
    font-size:2.2rem;
}

}