body{
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3{
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}
h1{font-size: 2.8rem;
    color: #fff;
    text-align: center;
}
h2{
    font-size: 2.2rem; margin-top: 1.5rem;
}
h3{
    font-size: 1.6rem;
}
p{
    margin-bottom: 1rem;
}
.lead-text{
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #554;
}
a{
    text-decoration: none;
    color: rgb(11, 51, 228);
}
a:hover{
    color: rgb(228, 32, 6);
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;/*supp space*/
}
.text-center{
    text-align: center;
}
.section-padding{
    padding: 80px;
}

/*header*/
.main-header {
    background-color: #ecfcfc;
    padding: 4px ;
    box-shadow: 0 2px 5px rgb(0, 51, 228);
}
.main-header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo b {

    font-size: 1.5rem;
    font-weight: bold;
    color: #e22f5c; /* Darker logo color */
}
.main-nav ul{
    display:inline-flex;
    align-items: center;
}

 .main-nav a {
    z-index: 2;
    color: #555;
    transition: color 0.3s ease;
  }
.main-nav ul li{
    color: rgb(243, 113, 124);
    font-weight: 600;
    padding: 15px;
    position: relative;
}
.main-nav ul li a:hover{
    color:var(--primary-color);
}
.main-nav ul li a.btn{
    margin-left: 10px;
}
/* section directrice */
.aprpos-section{
    padding: 80px 0;
    background-color: var(--white);
}
.section-title{
    text-align: center;
    font-size: 2.5rem;
    color:var(--dark-blue);
    margin-bottom: 50px;
    position: relative;
}
.section-title::after{
    content: "";
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
.apropos-block{
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(250, 6, 6, 0.05);
}
.apropos-block img{
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;/*ou 15px */
    border: 4px solid rgb(235, 92, 9);
}
.text-col h3{
    color: #e22f5c;
    font-size: 1.8rem;
    margin-top: 0%;
}
.text-col p{
    margin: 20px;
    font-size: 1.1rem;
}
/*btn*/

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-secondary { 
    background-color: var(--secondary-color);
    color: rgb(7, 6, 6);
}

.btn-secondary:hover {
    background-color: mediumaquamarine;
    transform: translateY(-3px);
}

/* 3. STYLE DU FOOTER */

.footer-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.footer-col h3{
    color: #35e608fb;
    margin-bottom: 20px;
}
.footer-col p, .footer-col li{
    font-size: 0,95rem;
    line-height: 1.8;
}


/* 4. RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .apropos-block {
        flex-direction: column;
        text-align: center;
    }

    .apropos-block img {
width: 100%;
        max-width: 300px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-footer .container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}