/* HERO */
.hero{
height:90vh;
background: linear-gradient(rgba(0,60,30,0.7), rgba(0,60,30,0.7)),
url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c') center/cover no-repeat;
display:flex;
align-items:center;
}
body{
  padding-top: 0;
  
}

section{
padding:80px 0;
}

img{
transition:0.3s;
}
.navbar{
padding:10px 0;
}

.navbar img{
transition:0.3s;
}

.navbar img:hover{
transform:scale(1.05);
}
img:hover{
transform:scale(1.02);
}
/* Cartes modernes */
.modern-card{
border:none;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.modern-card:hover{
transform:translateY(-10px);
}

.icon-circle{
width:70px;
height:70px;
background:#198754;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
margin:auto;
}

/* CTA */
.cta-section{
padding:80px 0;
background: linear-gradient(135deg,#198754,#0d6efd);
}

.navbar{
padding:15px 0;
}
.value-card{
background:white;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.value-card:hover{
transform:translateY(-10px);
color: #198754;
}

.value-icon{
width:70px;
height:70px;
background:linear-gradient(135deg,#198754,#0d6efd);
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
margin:auto;
}
.container h1 {
    margin-top: 30px;
}

.team-card{
background: white;
border-radius: 20px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
transition: 0.3s;
}

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

.team-card img{
    width: 180px;       /* Taille fixe */
    height: 180px;      /* Taille fixe */
    object-fit: cover;  /* Recadre proprement */
    border-radius: 50%; /* Cercle parfait */
    border: 5px solid #f8f9fa;
    display: block;
    margin: 0 auto;
}

/* CONTENEUR IMAGE */
.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* IMAGE HARMONISÉE */
.gallery-item img{
    width: 100%;
    height: 300px;          /* Taille fixe uniforme */
    object-fit: cover;      /* Recadrage propre */
    transition: transform 0.5s ease;
}

/* EFFET ZOOM */
.gallery-item:hover img{
    transform: scale(1.1);
}

/* OVERLAY */
.gallery-item .overlay{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    font-weight: bold;
}

/* OVERLAY APPARAÎT AU HOVER */
.gallery-item:hover .overlay{
    opacity: 1;
}

.card{
border-radius:20px;
}

form label{
color:#198754;
}

/* HERO PROJETS */
.project-hero{
    height: 50vh;
    background: linear-gradient(rgba(0,70,40,0.7), rgba(0,70,40,0.7)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
}

/* CARTE PROJET */
.project-card{
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.project-card:hover{
    transform: translateY(-10px);
}

/* IMAGE */
.project-img{
    overflow: hidden;
}

.project-img img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

.project-card:hover img{
    transform: scale(1.1);
}

/* HERO A PROPOS */
.about-hero{
    height: 50vh;
    background: linear-gradient(rgba(0,60,30,0.75), rgba(0,60,30,0.75)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40') center/cover no-repeat;
}

/* CARTE OBJECTIFS */
.about-card{
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

.about-icon{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#198754,#0d6efd);
    color: white;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto;
}

/* Bouton Adhérer personnalisé */
/* .adh-btn{
    background-color: #198754;
    border: none;
    transition: 0.3s ease;
} */
.adh-btn{
    /*background: linear-gradient(135deg,#e0932f,#0d6efd);*/
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
    box-shadow: 0 8px 10px rgba(0,0,0,0.10);
}
.adh-btn:hover{
    background-color: #146c43; /* vert plus foncé */
    transform: translateY(-2px);
    color: #f8f9fa !important;
}
.project-card form .form-control-lg {
    padding: 1.1rem;
    border-radius: 12px;
}

.project-card form label {
    font-weight: 600;
    color: #198754;
}

.project-card form h4 {
    border-bottom: 3px solid #198754;
    padding-bottom: 5px;
}
.brand-text{
    line-height: 0.8;
}

.brand-text small{
    font-size: 10px !important;
}

.brand-text .fw-bold{
    letter-spacing: 1px;
}
.brand-text{
    border-left: 3px solid #198754;
    padding-left: 8px;
}

.border-green-600 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(22 163 74 / var(--tw-border-opacity, 1)) !important;
    border-width: 1px !important;
    border-radius: 0.375rem !important;
}
.btn-orange{
    background:transparent;
    color:white;
    border:1px solid #028d2c;
    border-radius:8px;
}
.btn-outline-light{
    background: transparent;
    border: 1px solid #04863a;
    border-radius: 8px;
    padding: 8px 18px;
}

.btn-outline-light:hover{
    background: transparent;
    border: 1px solid #04863a;
    color: #198754;
}
.nav-item a{
    font-weight: bold;
    font-size: 14px;

}
.nav-item a:hover{
    color: #198754 !important;

}
.adh-hero{
    background: #f4f7fa;
    padding: 80px 0;
}

.adh-card{
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.section-title{
    font-weight: 600;
    margin-bottom: 15px;
    color: #198754;
    border-bottom: 2px solid #198754;
    padding-bottom: 5px;
}

.custom-input{
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #e1e5eb;
    transition: all 0.3s ease;
}

.custom-input:focus{
    border-color: #198754;
    box-shadow: 0 0 0 3px rgba(25,135,84,0.1);
}

.custom-btn{
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.btne{
    color: #f8f9fa;
}
.custom-btn:hover{
    transform: translateY(-2px);
}

.hero-section{
    background: linear-gradient(rgba(17,94,47,0.85), rgba(17,94,47,0.85)),
                url('../images/hero.jpg') center/cover no-repeat;
    height: 550px;
}

.hero-title{
    font-size: 48px;
    font-weight: 700;
}

.text-orange{
    color: #ff7a00;
}

.btn-orange{
    background: #ff7a00;
    color: white;
    border-radius: 10px;
}

.stats-section h2{
    font-size: 36px;
}

.value-card{
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.cta-section{
    background: linear-gradient(135deg,#198754,#1fa84f);
}

.main-footer{
    background: #155c2f;
}

.footer-links{
    list-style: none;
    padding: 0;
}

.footer-links li{
    margin-bottom: 8px;
}

.footer-links a{
    color: #cfead6;
    text-decoration: none;
}

.footer-links a:hover{
    color: white;
}

.footer-line{
    border-color: rgba(255,255,255,0.2);
}


