:root {
    --yellow-pale: #FFF8DC;
    --pink-pale: #FFB6C1;
    --yellow-accent: #F0E68C;
    --pink-accent: #FF69B4;
    --color-yellow: #f5df2b;
    --color-pink: #ff66c4;
    --color-blue: #48abe0;
    --color-green: #48e049;
    --color-dark: #333;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-ColorDblue: #0d1421;
    --gradient-primary: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-pink) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);
}

body {
    padding-top: 0;
}

/* Section Hero */
.hero-section img {
    width: 100%;
}
.img-fluid{
    object-fit: cover;
}

/* Logos entre sections */
.section-divider {
    position: relative;
    height: 0;
    z-index: 10;
}

.divider-logo {
    position: absolute;
    top: -50px;
    /* La moitié de 100px pour centrer */
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid var(--color-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    padding: 10px;
        background: var(--gradient-primary)
}

.divider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Sections */
.content-section {
    padding: 80px 0;
    min-height: 80vh;
}

.section-video {
    background: linear-gradient(45deg, #ff66c41a, #f5dd2b1f);
}

.section-cartes {
    background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--pink-pale) 100%);
}



.section-features {
    background: linear-gradient(45deg, #ff66c41a, #f5dd2b1f);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin-bottom: 2rem;
    text-align: center;
}

/* Video même taille que les images */
.video-container {
    width: 100%;
    height: 400px;
    /* Même hauteur que l'image de la section À propos */
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Features section */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.feature-item.with-end-logo {
    justify-content: space-between;
}

.feature-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid var(--pink-accent);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.feature-text {
    flex: 1;
}

.feature-text h5 {
    color: black;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-text p {
    margin: 0;
    line-height: 1.6;
    color: black;
}

/* Icônes de contact */
.contact-icon {
    font-size: 3rem;
    color: var(--pink-accent);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--color-ColorDblue);
    color: white;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer h5 {
    color: var(--yellow-accent);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink-accent);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    text-align: center;
    color: var(--color-light);
}

/* Correction alignement icônes footer */
footer .list-unstyled i {
    width: 1.25em;
    text-align: center;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .navbar-nav {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .social-links {
        margin-top: 1rem;
        text-align: center;
    }

    .social-links a {
        margin: 0 5px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .feature-logo.end-logo {
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 0;
    }
}