
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f9f7;
    width: 100%;
}

/* ===== HERO ===== */
.pre {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)),
                url('/images/accrobranche_img/kids.jpg') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    width: 100%;
    margin-top: 150px;
}

.pre h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pre p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.pre a {
    display: inline-block;
    margin: 8px;
    padding: 12px 26px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pre a:first-of-type {
    background: #ff5b15;
    color: #fff;
}

.pre a:last-of-type {
    background: rgba(255,255,255,0.9);
    color: #ff5b15;
}

.pre a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* ===== BANNIÈRE ===== */
.grosse_banierre {
    background: orangered;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
}

.grosse_banierre h2 {
    font-size: 2rem;
    color: #fff;
}

/* ===== SECTIONS ===== */
main {
    width: 100%;
}

section {
    width: 100%;
    padding: 40px 20px;

}

/* ===== SAFETY ===== */
.safety {
    background: #e6fff2;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.safety span {
    font-size: 2rem;
    color: #48b37a;
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.bullets li {
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.icon {
    background: #ff5b15;
    color: #fff;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

/* ===== EXPERT GRID ===== */
.expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    html, body {
    overflow-x: hidden;
}
    .expert-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.expert-grid > div, .expert-grid aside {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    text-align: center;
}

/* ===== EXPERT LIST ===== */
.expert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expert-list li {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}

.expert-icon {
    background: #ff5b15;
    color: #fff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* ===== CONTACT ===== */
.contact {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.cta-row {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: #ff5b15;
    transition: 0.3s ease;
}

.btn.secondary {
    background: #f1f1f1;
    color: #ff5b15;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== SECTION VIDEO ===== */
.family-fun {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    margin: 40px 0;
}

.family-fun .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.family-fun .content-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45); /* overlay semi-transparent */
    color: white;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.family-fun h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.family-fun p {
    font-size: 1.2rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    html, body {
    overflow-x: hidden;
}
    .family-fun h2 {
        font-size: 1.8rem;
    }
    .family-fun p {
        font-size: 1rem;
    }
}





