/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffba01;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffba01;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 100px 20px 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-title {
    font-size: 4rem;
    color: #ffba01;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.video-player {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.stream-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(231, 76, 60, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

blockquote {
    border-left: 4px solid #ffba01;
    padding-left: 20px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

.highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight p {
    margin-bottom: 0;
    font-size: 1rem;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.team-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.team-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.team-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.team-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffba01;
    transform: translateY(-2px);
}

/* Styles spécifiques pour les liens sociaux du footer */
.footer-section .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section .social-links a {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    padding: 0;
    text-decoration: none;
    color: #ffba01;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section .social-links a:hover {
    background: none;
    transform: none;
    opacity: 1;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffba01;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffba01;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
/* Tablette large */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .about-content,
    .team-showcase {
        gap: 3rem;
    }
    
    .image-grid img,
    .team-images img {
        height: 180px;
    }
}

/* Tablette */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }    .hero-section {
        padding: 80px 15px 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .about-section,
    .team-section {
        padding: 0;
        padding-bottom: 60px;
    }

    .about-content,
    .team-showcase,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text {
        order: 2;
    }

    .about-images {
        order: 1;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .image-grid img {
        height: 160px;
        border-radius: 8px;
    }

    .team-images {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        order: 1;
    }

    .team-images img {
        height: 180px;
        border-radius: 12px;
    }

    .team-info {
        order: 2;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .video-container {
        margin: 0 auto 2rem;
        max-width: 95%;
    }

    .video-player {
        min-height: 220px;
    }

    .highlights {
        gap: 1.2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile large */
@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }    .hero-section {
        padding: 70px 10px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .video-container {
        max-width: 100%;
        border-radius: 10px;
    }

    .video-player {
        min-height: 200px;
    }

    .stream-status {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .about-section,
    .team-section {
        padding: 50px 0;
    }

    .about-content,
    .team-showcase {
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        text-align: justify;
    }

    .blockquote {
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-grid img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .team-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-images img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .team-info h3 {
        font-size: 1.6rem;
    }

    .team-info p {
        font-size: 1rem;
        text-align: justify;
    }

    .highlights {
        gap: 1rem;
    }

    .highlight h4 {
        font-size: 1rem;
        text-align: center;
    }

    .highlight p {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile petit */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-logo span {
        display: none;
    }

    .nav-logo img {
        height: 35px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .video-player {
        min-height: 180px;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .team-info h3 {
        font-size: 1.4rem;
    }

    .image-grid img,
    .team-images img {
        height: 180px;
    }

    .footer-logo img {
        height: 40px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .stat {
        min-width: 80px;
    }
}

/* Mobile très petit */
@media (max-width: 360px) {
    .hero-section {
        padding: 60px 15px 15px;
        min-height: 95vh;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .video-player {
        min-height: 160px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .about-text h3,
    .team-info h3 {
        font-size: 1.2rem;
    }

    .image-grid img,
    .team-images img {
        height: 160px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }    .stat {
        min-width: 70px;
    }
}

/* Mobile paysage */
@media (max-width: 896px) and (max-height: 414px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 20px 20px;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 90%;
    }
    
    .video-container {
        max-width: 60%;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }
}
