/* ========================================
   Organigramme Page
   ======================================== */

/* Navigation rapide */
.org-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.org-nav-link {
    padding: 0.5rem 1rem;
    background: transparent;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.2s;
}

.org-nav-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Org Section - Design unifié */
.org-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    scroll-margin-top: 140px;
}

.org-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.section-intro {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
    font-size: 0.9rem;
}

/* Carte Président - Mise en avant */
.president-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--primary);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
}

.president-photo {
    flex-shrink: 0;
}

.president-photo .photo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--accent);
    color: var(--primary-foreground);
}

.president-info {
    flex: 1;
}

.president-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.president-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.president-bio {
    font-size: 0.875rem;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 640px) {
    .president-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .president-photo .photo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .president-name {
        font-size: 1.125rem;
    }
}

/* Photo placeholder */
.photo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.photo-placeholder.small {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

/* Members Grid */
.members-grid {
    display: grid;
    gap: 1rem;
}

.members-grid.small {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.members-grid.medium {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Member Card - Design unifié */
.member-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.member-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.member-card.compact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    gap: 0.5rem;
}

.member-photo {
    flex-shrink: 0;
}

.member-photo.small .photo-placeholder {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    color: var(--foreground);
}

.member-role {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
}

.member-bio {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 4px;
    line-height: 1.4;
}


/* ========================================
   Le Club Page - Slides PPT Style
   ======================================== */

/* Sections PPT style */
.slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
}

.slide .container {
    max-width: 1200px;
    width: 100%;
}

/* Hero Slide */
.slide-hero {
    background: linear-gradient(135deg, #032374 0%, #0a3a9d 50%, #021654 100%);
    text-align: center;
    padding-top: 80px;
}

.slide-hero h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--primary-foreground);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.slide-hero .tagline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 2rem;
}

.slide-hero .subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Slide */
.slide-stats {
    background: var(--background);
    min-height: 50vh;
}

.slide-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 0.5em;
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Values Slide */
.slide-values {
    background: var(--primary);
}

.slide-values h2 {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-foreground);
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mission Slide */
.slide-mission {
    background: var(--background);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.mission-text p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-text .highlight {
    color: var(--primary);
    font-weight: 700;
}

.mission-image {
    position: relative;
}

.mission-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(3, 35, 116, 0.2);
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    z-index: -1;
}

/* Quote Slide */
.slide-quote {
    background: linear-gradient(135deg, #021654 0%, #032374 100%);
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 8rem;
    color: var(--accent);
    line-height: 0.5;
    opacity: 0.5;
}

.quote-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-foreground);
    font-weight: 500;
    line-height: 1.5;
    margin: 2rem 0;
    font-style: italic;
}

.quote-author {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Navigation dots */
.slide-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slide-nav a {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    display: block;
}

.slide-nav a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.slide-nav a.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* Slide arrow */
.slide-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.slide-arrow:hover {
    color: var(--accent);
}

.slide-arrow span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.slide-stats .slide-arrow,
.slide-mission .slide-arrow {
    color: var(--primary);
}

.slide-stats .slide-arrow:hover,
.slide-mission .slide-arrow:hover {
    color: var(--accent);
}

/* Le Club Page Responsive */
@media (max-width: 768px) {
    .slide-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image {
        order: -1;
    }

    .slide {
        padding: 4rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .slide-nav {
        right: 1rem;
    }

    .slide-nav a {
        width: 10px;
        height: 10px;
    }
}

