body{
font-family:'Poppins', sans-serif;
margin:0;
background:#a9bde5;
color:#333;
line-height:1.6;
}

*{
box-sizing:border-box;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 60px;
background:white;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
flex-wrap:wrap;
}

.logo{
height:120px;
margin-right:15px;
}

.logo-area{
display:flex;
align-items:center;
}

/* HAMBURGER */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#0a6feb;
}

/* NAVIGATION */

nav{
display:flex;
align-items:center;
gap:14px;
margin-left:auto;
flex-wrap:wrap;
}

nav a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
width:110px;
height:70px;
background:#0a6feb;
color:white;
text-decoration:none;
font-weight:600;
border-radius:10px;
transition:all 0.3s ease;
font-size:15px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

nav a:first-child{
background:none;
width:auto;
height:auto;
box-shadow:none;
padding:0;
}

nav a:hover{
background:#2e8b57;
transform:translateY(-4px);
}

nav a i{
font-size:20px;
margin-bottom:5px;
}

nav a.join{
background:#ea0a0a;
}

nav a.join:hover{
background:#2e8b57;
}

.arrow-home{
width:70px;
height:auto;
margin-right:10px;
}

nav a.arrow-link{
background:none !important;
width:auto !important;
height:auto !important;
box-shadow:none !important;
padding:0 !important;
}

/* HERO */

.hero{
position:relative;
height:420px;
overflow:hidden;
}

.swiper{
width:100%;
height:100%;
}

.swiper-slide img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:10;
width:80%;
}

.hero-text h1{
font-size:52px;
font-weight:700;
margin-bottom:15px;
}

.hero-text p{
font-size:20px;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
z-index:5;
}

.hero-btn{
background:#3817c9;
color:#f6f6f9;
padding:15px 30px;
border-radius:18px;
text-decoration:none;
font-weight:600;
font-size:30px;
margin-top:20px;
display:inline-block;
transition:0.3s;
}

.hero-btn:hover{
background:#05b638;
}

/* STATS */

.stats{
display:flex;
justify-content:center;
gap:80px;
padding:70px 0;
flex-wrap:wrap;
}

.stat{
text-align:center;
}

.stat-icon{
width:110px;
height:110px;
object-fit:contain;
background:white;
padding:15px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.stat h2{
color:#3817c9;
font-size:55px;
margin:10px 0 0 0;
}

.stat p{
font-size:20px;
font-weight:600;
}

/* SECTIONS */

.section{
padding:60px 120px;
text-align:center;
}

.section h2{
color:#3817c9;
margin-bottom:20px;
font-size:42px;
font-weight:700;
}

.section p{
font-size:18px;
line-height:1.8;
max-width:1100px;
margin:auto;
text-align:justify;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all 0.3s ease;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.card img{
width:130px;
height:130px;
border-radius:50%;
object-fit:cover;
margin-bottom:18px;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.card h3{
margin:8px 0;
font-size:20px;
}

.card p{
font-size:15px;
color:#666;
}

/* CTA */

.cta{
background:#3817c9;
color:white;
text-align:center;
padding:90px 20px;
}

.cta a{
background:#f40606;
color:white;
padding:16px 32px;
border-radius:8px;
text-decoration:none;
font-weight:700;
font-size:18px;
}

/* FORM */

.training-form,
.contact-form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:16px;
}

.training-form input,
.training-form textarea,
.contact-form input,
.contact-form textarea{
padding:14px;
border-radius:6px;
border:1px solid #ccc;
font-size:16px;
}

/* FOOTER */

footer{
text-align:center;
padding:35px;
background:#222;
color:white;
font-size:14px;
}

/* =====================================
   RESPONSIVE TABLETTE + MOBILE
===================================== */

@media (max-width:768px){

.header{
flex-direction:column;
align-items:flex-start;
padding:15px 20px;
}

.logo{
height:80px;
margin-bottom:10px;
}

/* bouton hamburger visible */

.menu-toggle{
display:block;
margin-left:auto;
}

/* menu caché */

.navbar{
display:none;
flex-direction:column;
width:100%;
gap:8px;
margin-top:10px;
}

/* menu ouvert */

.navbar.active{
display:flex;
}

/* boutons menu */

nav a{
width:100%;
height:auto;
padding:12px;
flex-direction:row;
justify-content:flex-start;
gap:10px;
font-size:16px;
}

nav a i{
margin-bottom:0;
font-size:18px;
}

/* sections */

.section{
padding:40px 20px;
}

.hero-text h1{
font-size:32px;
}

.hero-text p{
font-size:16px;
}

.stats{
flex-direction:column;
gap:40px;
}

}

/* =====================================
   PETITS TELEPHONES
===================================== */

@media (max-width:480px){

.hero-text h1{
font-size:26px;
}

.hero-btn{
font-size:18px;
padding:12px 20px;
}

}

/* =====================================
   JOIN IGEEC PAGE
===================================== */

/* HERO */

.page-hero{
background:linear-gradient(135deg,#3817c9,#5a4df0);
color:white;
text-align:center;
padding:90px 20px;
}

.page-hero h1{
font-size:48px;
margin-bottom:15px;
font-weight:700;
}

.page-hero p{
font-size:20px;
max-width:800px;
margin:auto;
}

/* MEMBERSHIP SECTION */

.membership{
padding:80px 40px;
text-align:center;
}

.membership h2{
font-size:40px;
color:#3817c9;
margin-bottom:10px;
}

.membership p{
font-size:18px;
margin-bottom:50px;
color:#555;
}

/* GRID */

.membership-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

/* CARD */

.member-card{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:0.3s;
text-align:center;
}

.member-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.member-card img{
width:180px;
height:auto;
object-fit:contain;
margin-bottom:0px;
}

.member-card h3{
font-size:30px;
margin-bottom:5px;
margin-top:5px;
color:#171616;
}

.member-card p{
font-size:16px;
color:#666;
margin-bottom:10px;
}

.member-card:nth-child(2){
transform:scale(1.05);
border:3px solid #3817c9;
}

/* LIST */

.member-card ul{
list-style:none;
padding:0;
margin:10px 0;
}

.member-card ul li{
padding:4px 0;
font-size:15px;
border-bottom:1px solid #eee;
}

/* PRICE */

.member-card h4{
font-size:26px;
color:#0911e4;
margin:12px 0;
font-weight:700;
}

/* BUTTONS */

.pay-btn{
display:inline-block;
background:#2a86e2;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:700;
font-size:16px;
transition:0.3s;
}

.pay-btn:hover{
background:#2ecc71;
transform:translateY(-2px);
}

.register-btn{
display:inline-block;
background:#2a86e2;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:700;
font-size:16px;
transition:0.3s;
}

.register-btn:hover{
background:#2ecc71;
transform:translateY(-2px);
}

.pay-submit-btn{
display:block;
width:35%;
margin:20px auto; /* centre horizontal */
padding:14px;
border:none;
border-radius:30px;
background:linear-gradient(135deg,#3817c9,#5a4df0);
color:white;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:all 0.3s ease;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
text-align:center;
}

.pay-submit-btn:hover{
background:linear-gradient(135deg,#2ecc71,#27ae60);
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* CLICK */
.pay-submit-btn:active{
transform:scale(0.97);
}

/* RESPONSIVE */

@media(max-width:768px){

.page-hero h1{
font-size:34px;
}

.page-hero p{
font-size:16px;
}

.membership{
padding:60px 20px;
}

}