/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    line-height:1.6;
    color:#333;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    background:white;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 20px;

    box-shadow:0 2px 10px rgba(0,0,0,0.1);

    z-index:1000;
}

.logo img{
    width:100px;
}

.infos-header{
    text-align:center;
}

.infos-header h1{
    color:green;
    font-size:40px;
}

.telephone{
    color:green;
    text-decoration:none;
    font-weight:bold;
}

/* MENU */
/* MENU */

.burger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    z-index:1001;
}

.burger span{
    width:30px;
    height:3px;
    background:#2e7d32;
    border-radius:2px;
    transition:0.3s;
}

.menu{
    position:absolute;
    top:90px;
    right:20px;
    display:none;
    flex-direction:column;
    background:white;
    border-radius:10px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    overflow:hidden;
}

.menu.active{
    display:flex;
}

.menu a{
    padding:15px 25px;
    text-decoration:none;
    color:#333;
    font-weight:bold;
}

.menu a:hover{
    background:#4CAF50;
    color:white;
}


.hero{
    margin-top:90px;

    min-height:85vh;

    background-image:url("images/hero.jpg");
    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{

    background:rgba(0,0,0,0.45);

    padding:50px;

    border-radius:20px;

    text-align:center;

    color:white;
}

.hero h2{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
}

.btn{
    padding:15px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.btn-vert{
    background:#4CAF50;
    color:white;
}

.btn-blanc{
    background:white;
    color:green;
}

/* MOBILE */

@media(max-width:768px){

    .header{
        height:80px;
    }

    .logo img{
        width:60px;
    }

    .infos-header h1{
        font-size:20px;
    }

    .telephone{
        font-size:10px;
    }

    .hero h2{
        font-size:36px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}


/* ===========================
   PRESENTATION
=========================== */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

.presentation{

    padding:100px 0;

}

.presentation .container{

    display:flex;

    align-items:center;

    gap:60px;

}

.presentation-image{

    flex:1;

}

.presentation-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.presentation-text{

    flex:1;

}

.presentation-text h2{

    color:#2e7d32;

    font-size:40px;

    margin-bottom:25px;

}

.presentation-text p{

    font-size:20px;

    margin-bottom:20px;

    text-align:justify;

}

/* Responsive */

@media(max-width:900px){

.presentation .container{

    flex-direction:column;

}

.presentation-text{

    text-align:center;

}

.presentation-text p{

    text-align:left;

}

}


/* ===========================
   SERVICES
=========================== */

.services{

    padding:100px 0;

    background:#f7f9f7;

}

.section-title{

    text-align:center;

    color:#2e7d32;

    font-size:42px;

    margin-bottom:60px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    color:#2e7d32;

    margin-bottom:20px;

    font-size:28px;

}

.service-content p{

    margin-bottom:20px;

}

.service-content ul{

    list-style:none;

    padding:0;

}

.service-content li{

    margin-bottom:10px;

}

/* MOBILE */

@media(max-width:1000px){

.services-grid{

    grid-template-columns:1fr;

}

.service-card img{

    height:220px;

}

}



/* ===========================
   GALERIE
=========================== */

.gallery{

    padding:100px 0;

}

.section-intro{

    text-align:center;

    margin-bottom:50px;

    font-size:20px;

    color:#666;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    box-shadow:0 8px 25px rgba(0,0,0,.10);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* LIGHTBOX */

.lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox img{

    max-width:92%;

    max-height:88vh;

    border-radius:10px;

}

.close-lightbox{

    position:absolute;

    top:25px;

    right:40px;

    color:white;

    font-size:45px;

    cursor:pointer;

}





.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    margin-top: 3%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}







/* MOBILE */

@media(max-width:900px){

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-item img{

    height:240px;

}

}


/* ===========================
   APPEL A L'ACTION
=========================== */

.cta{

    padding:100px 0;

    background:#2e7d32;

}

.cta-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    background:white;

    border-radius:25px;

    padding:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.cta-text{

    flex:2;

}

.cta-text h2{

    color:#2e7d32;

    font-size:40px;

    margin-bottom:20px;

}

.cta-text p{

    font-size:22px;

}

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.btn-outline{

    border:3px solid #2e7d32;

    color:#2e7d32;

    background:white;

}

.btn-outline:hover{

    background:#2e7d32;

    color:white;

}

/* MOBILE */

@media(max-width:900px){

.cta-box{

    flex-direction:column;

    text-align:center;

}

.cta-buttons{

    width:100%;

}

.cta-buttons a{

    width:100%;

}

}


/* ===========================
   CONTACT
=========================== */

.contact{

    padding:100px 0;

    background:#f7f9f7;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    margin-top:50px;

}

.contact-info{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.contact-info h3{

    color:#2e7d32;

    font-size:30px;

    margin-bottom:25px;

}

.contact-info p{

    margin-bottom:20px;

    font-size:19px;

}

.contact-info a{

    color:#2e7d32;

    text-decoration:none;

}

.reseaux{

    display:flex;

    gap:20px;

    margin-top:30px;

}

.reseaux a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2e7d32;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    transition:.3s;

}

.reseaux a:hover{

    transform:scale(1.1);

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:18px;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    background:#2e7d32;

    color:white;

    border:none;

    padding:18px;

    border-radius:50px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#1f5d24;

}

/* Responsive */

@media(max-width:900px){

.contact-grid{

    grid-template-columns:1fr;

}

}


/* ===========================
   FOOTER
=========================== */

.footer{

    background:#1f1f1f;

    color:white;

    text-align:center;

    padding:30px 20px;

    font-size:15px;

}