/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #002F5E;
    --secondary-color: #589BE3;
    --accent-color: #E4EBFC;
    --text-color: #FFFFFF;
    --text-dark: #333333;
    --light-bg: #E4EBFC;
    --white: #ffffff;
    --dark-bg: #091405;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: radial-gradient(circle at 73% 20%, #589BE3 0%, #3D7BBF 25%, #2A5D9E 50%, #002F5E 75%, #001B38 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 47, 94, 0.98);
    min-width: 250px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(88, 155, 227, 0.3);
    color: var(--secondary-color);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 73% 20%, #589BE3 0%, #3D7BBF 25%, #2A5D9E 50%, #002F5E 75%, #001B38 100%);
    color: var(--white);
    min-height: auto;
    padding: 120px 2rem 4rem;
    text-align: left;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-image {
    float: right;
    max-width: 45%;
    margin: 0 0 2rem 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-description {
    clear: both;
}

.hero-description p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: normal;
    line-height: 1.5;
}

.hero-description a {
    color: var(--white);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.social-icons a img {
    width: 39px;
    height: 39px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.mail-button {
    margin-top: 2rem;
}

.btn-mail {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-mail:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Info Cards Section (Three Circular Cards) */
.info-cards {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.card-link:hover {
    transform: translateY(-5px);
}

.card-link:hover .card-image-circle {
    box-shadow: 0 8px 20px rgba(0, 47, 94, 0.3);
}

.card-link:hover h3 {
    color: var(--secondary-color);
}

.card-image-circle {
    width: 162px;
    height: 162px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Sponsors Section */
.sponsors {
    background-color: var(--primary-color) !important;
    color: var(--white);
    padding: 4rem 0;
    margin-top: 0;
}

.sponsors .section-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-item {
    text-align: center;
}

.sponsor-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.sponsor-item p {
    font-size: 0.875rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sponsor-item a {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition);
}

.sponsor-item a:hover {
    color: #589BE3;
    text-decoration: none;
}

/* Old Spectacles Section - Keep for compatibility */
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.spectacle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.spectacle-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.spectacle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.spectacle-card:hover .spectacle-image img {
    transform: scale(1.1);
}

.spectacle-info {
    padding: 1.5rem;
}

.spectacle-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-content h3 a {
    color: var(--white);
    text-decoration: underline;
}

.footer-content p {
    font-size: 1rem;
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .spectacles-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ===========================
   Content Pages Styles
   =========================== */
.main-content {
    padding-top: 80px;
}

.content-page {
    padding: 3rem 0;
}

.page-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--text-color);
    margin: 3rem 0 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-text {
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.content-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.content-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.content-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.content-text a:hover {
    text-decoration: underline;
}

.content-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Images dans le contenu */
.content-image {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

.image-right {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.image-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .content-image {
        float: none;
        max-width: 100%;
        margin: 1.5rem 0;
    }
    
    .image-right,
    .image-left {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
}

/* History Page */
.history-section {
    margin: 4rem 0;
}

.history-section .section-subtitle {
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.history-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-period {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-left: 3rem;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-period {
    text-align: left;
    padding-left: 3rem;
    direction: ltr;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-right: 3rem;
    direction: ltr;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.current::before {
    width: 24px;
    height: 24px;
    background: var(--white);
    box-shadow: 0 0 0 4px var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px var(--secondary-color);
    }
    50% {
        box-shadow: 0 0 0 8px var(--secondary-color);
    }
}

.timeline-period {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(88, 155, 227, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(88, 155, 227, 0.2);
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--white);
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
        gap: 0.5rem;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-item:nth-child(odd) .timeline-period,
    .timeline-item:nth-child(even) .timeline-period {
        text-align: left;
        padding: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding: 1.5rem;
    }

    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%);
    }
}

/* Spectacles Page */
.spectacle-hero {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.spectacle-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.spectacle-info-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.spectacle-info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.cta-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 2rem 0;
}

/* Photos & Videos Page */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
}

.video-duration {
    padding: 0 1rem 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.gallery-section {
    margin-top: 4rem;
}

/* Photos & Videos Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Join Us Page */
.recruitment-hero {
    max-width: 900px;
    margin: 2rem auto;
    text-align: center;
}

.recruitment-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--secondary-color);
    color: var(--text-color);
}

.info-box h3 {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-box li:last-child {
    border-bottom: none;
}

.cta-section {
    text-align: center;
    margin: 4rem 0 3rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

.form-group select option {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    font-family: inherit;
}

/* FAQ Page */
.faq-list {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
}

.faq-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Active nav link */
.nav-link.active {
    font-weight: 700;
    text-decoration: underline;
}

/* Team Members (Direction) */
.team-intro {
    margin: 2rem 0;
}

.direction-main-image {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.direction-main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-members {
    max-width: 900px;
    margin: 3rem auto;
}

.team-member {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.team-member:last-child {
    border-bottom: none;
}

.team-member-image {
    max-width: 300px;
    margin: 0 auto 2rem;
    text-align: center;
}

.team-member-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.team-member h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
}

/* Board Members (Conseil) */
.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.board-member {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateY(-5px);
}

.board-member-image {
    margin-bottom: 1.5rem;
}

.board-member-image img {
    width: 180px;
    height: 223px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.board-member h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.board-member h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(88, 155, 227, 0.3);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.contact-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Choristes */
.choristes-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.pupitre-section {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .pupitre-section {
        grid-template-columns: 1fr;
    }
}

.pupitre-content {
    display: flex;
    flex-direction: column;
}

.pupitre-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pupitre-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.choristes-grid {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.choriste-name {
    padding: 0.25rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

/* Previous Shows Section */
.previous-shows-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
}

.shows-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.show-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.show-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.show-poster {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.show-info {
    padding: 1.5rem;
    text-align: center;
}

.show-info h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.show-info p {
    color: var(--secondary-color);
    font-size: 1rem;
}

.no-shows-message {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem;
    grid-column: 1 / -1;
}
