/* Titre + présentation */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

/* Photo équipe */
.team-photo {
    text-align: center;
    margin: 2rem 0;
}

.team-photo img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Bloc iframe / résultats */
.team-info {
    background: var(--primary-black);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 2rem;
    overflow: hidden;
    margin-top: 2rem;
}

.iframe-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: bold;
}

.team-info iframe {
    width: 100%;
    min-height: 700px;
    border: none;
    border-radius: 8px;
    background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .team-photo img {
        max-width: 100%;
        height: auto;
    }

    .iframe-title {
        font-size: 1.4rem;
    }

    .team-info iframe {
        min-height: 500px;
    }

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