@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Navbar Premium */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 30px rgba(255, 107, 0, 0.15);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.nav-link {
    color: #1a1a1a !important;
    font-weight: 600;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #062844 !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 149, 0, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #666;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-premium {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 20px;
    margin: 0 10px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.about-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #062844;
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #ffffff;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    border-color: #062844;
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #000;
    line-height: 1.8;
}


/* Video Section */
.video-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.2);
    height: 500px;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;

    background:linear-gradient(135deg, #062844 0%, #028cfd 100%) !important;
    aspect-ratio:16/9 !important; /* ça règle l'affichage de la première fenêtre de la video sur smartphone */
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.video-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Events Section */
.events-section {
    padding: 6rem 0;
    background: #ffffff;
}

.event-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 2px solid #f0f0f0;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    border-color: #062844;
}

.event-date {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
    min-width: 120px;
}

.event-day {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.event-month {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.event-content {
    padding: 2rem;
    flex: 1;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #666;
    flex-wrap: wrap;
}

.event-meta i {
    color: #062844;
    margin-right: 0.5rem;
}

.event-content p {
    color: #666;
    line-height: 1.8;
}

.event-row {
    display: flex;
    align-items: stretch;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
}

.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    border-color: #062844;
}

.news-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: #062844;
}

.news-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.news-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: #062844;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 1rem;
    color: #ff9500;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: #ffffff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: #fff;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-cta {
    background: #fff;
    color: #062844;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    border-top: 2px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #666;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #062844;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.4);
}

.social-links i {
    color: #fff;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

/* Contact Page */
.contact-page {
    padding-top: 100px;
}

.page-header {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a30202 0%, #ff0101 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-section {
    padding: 4rem 0;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info .contact-item i {
    font-size: 1.5rem;
    color: #062844;
    min-width: 30px;
}

.contact-info .contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-info .contact-item p {
    color: #666;
    margin: 0;
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .event-row {
        flex-direction: column;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

}


/* ============================================ */
/* STYLES DU MODAL VIDÉO */
/* ============================================ */
.video-modal {
    display: none;
}

.video-modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    max-width: 1200px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
}

.video-modal-close {
    position: absolute;
    top: 40px !important;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 100000;
}

.video-modal-close:hover {
    background: #062844;
    color: #fff;
    transform: rotate(90deg);
}

.video-modal-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}


.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Cursor pointer pour les vidéos */
.video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: scale(1.02);
}

.video-item:active {
    transform: scale(0.98);
}

body.modal-open {
    overflow: hidden;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .video-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .video-modal-close {
        top: -45px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Cards Premium */
.card-premium {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card-premium:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.card-header-premium {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-premium {
    /* font-size: 1.3rem; */
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-title-premium i {
    color: #062844;
}

.card-body-premium {
    padding: 2rem;
}

/* Forms Premium */
.form-group-premium {
    margin-bottom: 1.5rem;
}

.form-label-premium {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    /* font-size: 0.95rem; */
    display: block;
}

.form-control-premium {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    /* font-size: 0.95rem; */
    transition: all 0.3s ease;
    background: #f8f9fc;
    border-radius: 12px !important;
}

.form-control-premium:focus {
    outline: none;
    border-color: #062844 !important;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-control-premium::placeholder {
    color: #999;
}

textarea.form-control-premium {
    min-height: 120px;
    resize: vertical;
}

/* Buttons Premium */
.btn-admin-primary {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    /* font-size: 0.95rem; */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-admin-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}


/* Page Header */
.news .page-header, .events .page-header, .videos .page-header {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    padding: 6rem 0 3rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.news .page-header::before, .events .page-header::before, .videos .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
}

.news .page-title, .events .page-title, .videos .page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.news .breadcrumb, .events .breadcrumb, .videos .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.news .breadcrumb-item a, .events .breadcrumb-item a, .videos .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news .breadcrumb-item a:hover, .events .breadcrumb-item a:hover, .videos .breadcrumb-item a:hover {
    color: #062844;
}

.news .breadcrumb-item.active, .events .breadcrumb-item.active, .videos .breadcrumb-item.active {
    color: #e14e04;
}

/* News List Section */
.news-list-section {
    padding: 5rem 0;
    background: #fff;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    border-color: #062844;
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder i {
    font-size: 4rem;
    color: rgba(255, 107, 0, 0.3);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-date i {
    color: #062844;
}

.news-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #062844;
}

.news-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.news-views {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-views i {
    color: #062844;
}

.btn-read-more {
    color: #062844;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 1rem;
    color: #ff9500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #666;
    font-size: 1.1rem;
}

/* Pagination */
.news .pagination-wrapper {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .news-list-section {
        padding: 3rem 0;
    }
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    padding: 8rem 0 3rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
}

.article-badge {
    display: inline-block;
    background: linear-gradient(135deg, #440610ff 0%, #fd026bff 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.article-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.meta-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: rgb(200, 3, 3)
}

.article-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.article-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.article-header .breadcrumb-item a:hover {
    color: #062844;
}

.article-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* Article Content */
.article-content-section {
    padding: 4rem 0;
    background: #fff;
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 3rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Share Section */
.article-share {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.article-share h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.copy {
    background: #666;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.article-navigation {
    margin-bottom: 3rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f8f9fc;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #062844;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Pages videos */
.videos-grid-section {
    padding: 5rem 0;
    background: #fff;
}

.video-card-front {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #f0f0f0;
    height: 100%;
}

.video-card-front:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    border-color: #062844;
}


.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card-front:hover .video-thumb-img {
    transform: scale(1.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.video-placeholder i {
    font-size: 4rem;
    color: rgba(255, 107, 0, 0.3);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card-front:hover .video-overlay {
    opacity: 1;
}

.play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-card-front:hover .play-circle {
    transform: scale(1);
}

.featured-star {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.video-info {
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.video-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.video-views {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-views i {
    color: #062844;
}

.videos .empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.videos .empty-state i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.videos .empty-state h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Page Events */
.events-list-section {
    padding: 5rem 0;
    background: #fff;
}

.event-card-front {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.event-card-front:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    border-color: #062844;
}

.event-date-box {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-day {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.event-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.event-year {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.event-image {
    width: 250px;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card-front:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-content h3 a:hover {
    color: #062844;
}

.event-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.events .meta-info-item {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.events .meta-info-item i {
    color: #062844;
    font-size: 1.1rem;
}

.events .event-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.events .btn-event-details {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #062844;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-event-details:hover {
    gap: 1.2rem;
    color: #ff9500;
}

.events .empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.events .empty-state i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.events .empty-state h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .event-card-front {
        flex-direction: column;
    }
    
    .event-date-box {
        min-width: 100%;
        padding: 1.5rem;
        flex-direction: row;
        gap: 1rem;
    }
    
    .event-day {
        font-size: 2.5rem;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
}

/* ===== SECTION TEAM – GLASS CORPORATE ===== */

.team-card {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.35s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Avatar */
.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

/* Nom */
.team-card h5 {
    font-size: 1.05rem;
    letter-spacing: 0.4px;
    color: #1f2937; /* gris corporate */
}

/* Fonction */
.team-card span {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #0e4a66 !important; /* bleu corporate */
    font-weight: 500;
}

/* Email */
.team-card a {
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.team-card a:hover {
    color: #0e4a66;
}

/* Section title (optionnel mais recommandé) */
.section-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: rgba(255,255,255,0.95);
  width: 90%;
  max-width: 650px;
  border-radius: 18px;
  padding: 30px;
  position: relative;
  animation: fadeUp 0.4s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

.modal-box h2 {
  text-align: center;
  color: #0e4a66;
  margin-bottom: 5px;
}

.modal-box h4 {
  text-align: center;
  color: #e28604;
  margin-bottom: 20px;
}

.modal-box {
    max-height: 85vh;              /* Empêche le modal de dépasser l’écran */
    display: flex;
    flex-direction: column;
}

.modal-content {
    margin-top: 15px;
    padding-right: 10px;           /* espace pour scrollbar */
    overflow-y: auto;
    max-height: calc(85vh - 200px); /* header + bouton */
}

/* Scrollbar élégante (desktop) */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #062844 0%, #028cfd 100%);
    border-radius: 10px;
}

/* Typographie optimisée lecture longue */
.modal-content p {
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
    color: #2b2b2b;
    margin-bottom: 18px;
}

/* Signature mise en valeur */
.modal-content .signature {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-style: italic;
    text-align: right;
    color: #0e4a66;
}

/* Mobile optimisation */
@media (max-width: 768px) {
    .modal-box {
        max-height: 92vh;
        padding: 22px;
    }

    .modal-content {
        max-height: calc(92vh - 180px);
    }

    .modal-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* #accueil {
        object-fit: contain !important;
        background-repeat: no-repeat !important;
        height: auto !important;
    } */
}

.call-btn {
  display: block;
  text-align: center;
  margin-top: 25px;
  text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #bf0303;
}