/* STYLE GLOBAL */

body{

font-family: "Segoe UI", Arial, sans-serif;
margin:0;
background:#ffffff;
color:#222;
line-height:1.6;

}



/* HEADER */

header{

display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;

background:linear-gradient(90deg,#000000,#8B0000);

color:white;

box-shadow:0px 3px 10px rgba(0,0,0,0.3);

}



/* LOGO */

.logo{

height:60px;

}



/* MENU */

nav a{

color:white;
margin:12px;
text-decoration:none;
font-weight:600;
letter-spacing:0.5px;

transition:0.3s;

}

nav a:hover{

color:#2ecc71;

}



/* SOCIAL LINKS */

.social a{

color:white;
margin:6px;
font-size:14px;
text-decoration:none;
transition:0.3s;

}

.social a:hover{

color:#2ecc71;

}



/* HERO SECTION */

.hero{

text-align:center;

padding:90px 20px;

background:linear-gradient(120deg,#b30000,#ff0000);

color:white;

}



.hero h1{

font-size:40px;
margin-bottom:15px;

}



.hero p{

max-width:800px;
margin:auto;
font-size:18px;

}



.hero button{

margin-top:25px;

padding:14px 35px;

border:none;

background:#2ecc71;

color:white;

font-size:16px;

font-weight:bold;

border-radius:4px;

cursor:pointer;

transition:0.3s;

}



.hero button:hover{

background:#27ae60;

transform:scale(1.05);

}



/* SECTION PHOTOS */

.photos{

padding:60px 20px;

text-align:center;

background:#f9f9f9;

}



.photos h2{

color:#b30000;
margin-bottom:30px;

}



/* GRID PHOTOS */

.grid-photos{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

max-width:750px;

margin:auto;

}



.grid-photos img{

width:100%;

border-radius:10px;

border:4px solid white;

box-shadow:0px 5px 15px rgba(0,0,0,0.25);

transition:0.3s;

}



.grid-photos img:hover{

transform:scale(1.03);

}



/* A PROPOS */

.apropos{

padding:60px 30px;

background:white;

text-align:center;

}



.apropos h2{

color:#b30000;
margin-bottom:15px;

}



.apropos p{

max-width:800px;
margin:auto;
font-size:17px;

}



/* MISSION */

.mission{

padding:60px 30px;

background:#111;

color:white;

}



.mission h2{

text-align:center;

color:#2ecc71;

margin-bottom:25px;

}



.mission ul{

max-width:700px;

margin:auto;

font-size:17px;

}



.mission li{

margin:12px 0;

}



/* FOOTER */

footer{

background:linear-gradient(90deg,#000000,#8B0000);

color:white;

text-align:center;

padding:40px 20px;

margin-top:40px;

}



.social-footer a{

color:white;

margin:12px;

text-decoration:none;

font-weight:bold;

transition:0.3s;

}



.social-footer a:hover{

color:#2ecc71;

}



/* RESPONSIVE DESIGN */

@media(max-width:768px){

header{

flex-direction:column;

}

nav{

margin:10px 0;

}

.grid-photos{

grid-template-columns:1fr;

}

.hero h1{

font-size:28px;

}

}







/* ==============================
   MOLHA BANNER (CODE ISOLE)
   ============================== */

.molha-banner-wrapper{

width:100%;
display:flex;
justify-content:center;
align-items:center;

padding:15px 0;

background:linear-gradient(90deg,#000000,#b30000);

}

.molha-banner-img{

width:92%;
max-width:1250px;

border-radius:8px;

box-shadow:0px 6px 18px rgba(0,0,0,0.4);

transition:transform 0.3s ease;

}

/* Effet léger */

.molha-banner-img:hover{

transform:scale(1.01);

}






#btnDevenirMembre.btn-devenir-membre {
  background-color: #00a651; /* Vert dominan bouton MOLHA */
  color: #ffffff;            /* Ekriti blan */
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

#btnDevenirMembre.btn-devenir-membre:hover {
  background-color: #008f44; /* Vert pi fon pou hover */
}
