/* ===== STYLES EXISTANTS ===== */
/* Import des variables CSS communes et du footer */
@import url('variables.css');
@import url('footer.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--neutral);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn, .admin-btn, .client-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.login-btn {
    background: var(--primary);
    color: var(--white);
}

.login-btn:hover {
    background: #1e3a22;
    transform: translateY(-2px);
}

.admin-btn {
    background: var(--accent);
    color: var(--white);
}

.admin-btn:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

.client-btn {
    background: var(--secondary);
    color: var(--white);
}

.client-btn:hover {
    background: #6b3410;
    transform: translateY(-2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1e3a22;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #6b3410;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-social {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 120px 0 80px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.8;
}

/* ===== SECTIONS COMMUNES ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE ACCUEIL ===== */
.presentation-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

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

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.next-meeting-section {
    padding: 80px 0;
    background: var(--neutral);
}

.meeting-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.meeting-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.meeting-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meeting-details > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.meeting-details i {
    color: var(--accent);
    font-size: 1.2rem;
}

.resources-section {
    padding: 80px 0;
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: var(--neutral);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

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

.resource-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.resource-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.resource-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--secondary);
}

.contact-section {
    padding: 80px 0;
    background: var(--neutral);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.method-details h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.method-details p {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.method-details small {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* ===== PAGE CALENDRIER ===== */
.calendar-section {
    padding: 80px 0;
    background: var(--white);
}

.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calendar-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.calendar-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.meeting-card.featured {
    border: 3px solid var(--accent);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.meeting-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.meeting-card:hover {
    transform: translateY(-3px);
}

.meeting-date {
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 120px;
}

.date-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.date-year {
    font-size: 1rem;
    opacity: 0.9;
}

.meeting-details h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.meeting-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-item i {
    color: var(--accent);
    width: 20px;
}

.meeting-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.meeting-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge.planning {
    background: #fff3e0;
    color: #f57c00;
}

.practical-info {
    margin-top: 4rem;
}

.practical-info h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--neutral);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* ===== PAGE CONTACT ===== */

/* ===== PAGE CONTACT ===== */
.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.faq-section {
    margin-top: 4rem;
}

.faq-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--neutral);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question h4 {
    color: var(--primary);
    margin: 0;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* ===== PAGE CONNEXION ===== */
.login-section {
    padding: 80px 0;
    background: var(--white);
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.login-form-container {
    background: var(--neutral);
    border-radius: 16px;
    padding: 2rem;
}

.login-form h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.login-form > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 0.25rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.form-divider span {
    background: var(--neutral);
    padding: 0 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.login-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.login-info > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: var(--neutral);
    border-radius: 12px;
}

.cta-section p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.info-section {
    margin-top: 4rem;
}

.info-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--neutral);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-3px);
}

.help-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.help-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.help-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.help-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.help-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
/* Les styles du footer sont maintenant dans footer.css */

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .contact-content,
    .login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meeting-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .meeting-date {
        min-width: auto;
    }
    

    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .meeting-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .meeting-card,
    .contact-form-container,
    .login-form-container {
        padding: 1.5rem;
    }
}

/* ===== MENU BURGER MOBILE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 20px var(--shadow);
        padding: 0;
        gap: 0;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .nav-links.active {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-links .nav-link {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }
    
    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-links .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav-links .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav-links .nav-link:nth-child(4) { transition-delay: 0.25s; }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-actions .login-btn,
    .nav-actions .admin-btn,
    .nav-actions .client-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-actions .login-btn {
        background: var(--primary);
        color: var(--white);
    }
    
    .nav-actions .login-btn:hover {
        background: #1e3a22;
        transform: translateY(-2px);
    }
    
    .nav-actions .admin-btn {
        background: var(--accent);
        color: var(--white);
    }
    
    .nav-actions .admin-btn:hover {
        background: #b8860b;
        transform: translateY(-2px);
    }
    
    .nav-actions .client-btn {
        background: var(--secondary);
        color: var(--white);
    }
    
    .nav-actions .client-btn:hover {
        background: #6b3410;
        transform: translateY(-2px);
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary);
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--primary);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--primary);
    }
    
    /* Animation d'entrée pour le menu */
    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }
    
    .nav-links.active::before {
        transform: scaleX(1);
    }
    
    /* Amélioration de l'apparence des liens dans le menu */
    .nav-links .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
    }
    
    .nav-links .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-links .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-links .nav-link:hover {
        background: var(--neutral);
        color: var(--primary);
        transform: translateX(5px);
        border-color: var(--primary);
        box-shadow: 0 2px 10px rgba(44, 85, 48, 0.1);
    }
    
    /* Animation de fermeture */
    .nav-links.closing {
        animation: slideOut 0.3s ease forwards;
    }
    
    @keyframes slideOut {
        to {
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
            padding: 0;
        }
    }
    
    /* Animation d'ouverture */
    .nav-links.active {
        animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes slideIn {
        from {
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            max-height: 300px;
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Amélioration de l'apparence du bouton burger */
    .menu-toggle {
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background: rgba(44, 85, 48, 0.1);
    }
    
    .menu-toggle.active {
        background: rgba(44, 85, 48, 0.15);
    }
    
    /* Animation des barres du burger */
    .menu-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .menu-toggle:hover span {
        background: var(--secondary);
    }
    
    /* Responsive pour les très petits écrans */
    @media (max-width: 480px) {
        .nav-links {
            padding: 0.5rem;
        }
        
        .nav-links .nav-link {
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .nav-actions .login-btn,
        .nav-actions .admin-btn,
        .nav-actions .client-btn {
            padding: 0.6rem 1.2rem;
            font-size: 0.8rem;
        }
    }
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animation du hero */
.hero-title,
.hero-subtitle,
.hero-actions,
.hero-icon {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-title.animate-in,
.hero-subtitle.animate-in,
.hero-actions.animate-in,
.hero-icon.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animation des cartes */
.feature-card,
.resource-card,
.meeting-card,
.info-card,
.advice-card,
.help-card {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== EFFETS INTERACTIFS ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== FAQ INTERACTIVE ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    padding: 1rem 1.5rem;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification i {
    font-size: 1.2rem;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-success i {
    color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-error i {
    color: #dc3545;
}

.notification-info {
    border-left-color: var(--primary);
}

.notification-info i {
    color: var(--primary);
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--light-text);
    padding: 0.25rem;
}

.notification-close:hover {
    color: var(--text);
}

/* ===== TOOLTIPS ===== */
.tooltip {
    position: absolute;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px var(--shadow);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary);
}

/* ===== ANIMATIONS DES FORMULAIRES ===== */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(44, 85, 48, 0.15);
}

/* ===== ANIMATIONS DES BOUTONS ===== */
.btn:active {
    transform: translateY(0) scale(0.98);
}

/* ===== ANIMATIONS DES CARDS ===== */
.feature-card:hover,
.resource-card:hover,
.meeting-card:hover,
.info-card:hover,
.advice-card:hover,
.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===== ANIMATIONS DES ICÔNES ===== */
.feature-icon,
.resource-icon,
.method-icon,
.info-card i,
.advice-card i,
.help-card i {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon,
.resource-card:hover .resource-icon,
.info-card:hover i,
.advice-card:hover i,
.help-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* ===== ANIMATIONS DES LIENS ===== */
.nav-link,
.resource-link,
.help-link {
    transition: all 0.3s ease;
}

.nav-link:hover,
.resource-link:hover,
.help-link:hover {
    transform: translateX(5px);
}

/* ===== ANIMATIONS DES PRIÈRES ===== */
.prayer-item {
    transition: all 0.3s ease;
}

.prayer-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow);
}

.prayer-text {
    transition: all 0.3s ease;
}

.prayer-item:hover .prayer-text {
    background: #e9ecef;
    border-left-color: var(--secondary);
}

/* ===== ANIMATIONS DU CALENDRIER ===== */
.meeting-date {
    transition: all 0.3s ease;
}

.meeting-card:hover .meeting-date {
    transform: scale(1.05);
}

.status-badge {
    transition: all 0.3s ease;
}

.meeting-card:hover .status-badge {
    transform: scale(1.1);
}

/* ===== ANIMATIONS DU CONTACT ===== */
.contact-method {
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    background: var(--neutral);
}

.method-icon {
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

/* ===== ANIMATIONS DE LA CONNEXION ===== */
.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item i {
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

/* ===== ANIMATIONS DU FOOTER ===== */
/* Les styles du footer sont maintenant dans footer.css */

/* ===== LOADING STATES ===== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== FOCUS VISIBLE ===== */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================
   PAGE FORMULAIRE DE PRÉSENTATION
   ===================================================== */

.presentation-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-presentation {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-presentation h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-presentation p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    padding: 4rem 2rem;
    background: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.presentation-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.form-group {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--neutral);
}

.form-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-group h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group h2 i {
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-field small {
    color: var(--text);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--neutral);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover,
.radio-item:hover {
    border-color: var(--accent);
    background: rgba(76, 175, 80, 0.05);
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    width: auto;
    margin: 0;
}

.checkbox-item label,
.radio-item label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--neutral);
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--neutral);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Modal d'aperçu */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 2rem;
    border-bottom: 2px solid var(--neutral);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary);
}

.close {
    color: var(--text);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-body {
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-presentation h1 {
        font-size: 2rem;
    }
    
    .presentation-form {
        padding: 2rem 1.5rem;
        margin: -2rem 1rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}



/* =====================================================
   PAGE DE SUCCÈS
   ===================================================== */

.success-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.success-content h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.account-info {
    background: var(--neutral);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.account-info h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--neutral);
    border-radius: 8px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    min-width: 20px;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.action-buttons .btn {
    min-width: 200px;
}

.help-section {
    background: var(--neutral);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

.help-section h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.help-section p {
    margin-bottom: 1rem;
    color: var(--text);
}

.help-section ul {
    padding-left: 1.5rem;
}

.help-section li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .success-content {
        padding: 2rem 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        min-width: auto;
        width: 100%;
    }
}

/* =====================================================
   HEADER SIMPLIFIÉ POUR FORMULAIRE
   ===================================================== */

.header-simple {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-simple i {
    font-size: 2rem;
    color: var(--accent);
}

.header-info {
    text-align: right;
}

.header-info p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive pour le header simplifié */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-info {
        text-align: center;
    }
    
    .logo-simple {
        font-size: 1.3rem;
    }
    
    .logo-simple i {
        font-size: 1.8rem;
    }
}

/* =====================================================
   HEADER SIMPLE
   ===================================================== */

   .nav-actions-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
   }

   .nav-actions-simple .nav-link {
    color: white;
    text-decoration: none;
   }

/* =====================================================
   BOUTON MOT DE PASSE OUBLIÉ
   ===================================================== */

.forgot-password-btn {
    background: none;
    border: none;
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password-btn:hover {
    color: var(--secondary);
}

/* =====================================================
   MODAL MOT DE PASSE OUBLIÉ
   ===================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* =====================================================
   PAGE DE RÉINITIALISATION
   ===================================================== */

.reset-password-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.reset-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.reset-form-container {
    width: 100%;
}

.reset-form h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reset-form p {
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reset-form p strong {
    color: var(--primary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 1rem;
}

.back-link:hover {
    color: var(--secondary);
}

/* =====================================================
   PAGE À PROPOS
   ===================================================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    padding: 4rem 0;
    background: var(--neutral);
}

.about-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header h2 i {
    color: var(--accent);
    font-size: 2rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Histoire */
.history-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.history-image .image-placeholder {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-medium);
}

.history-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.history-image .image-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Mission */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-card .card-icon i {
    font-size: 2rem;
    color: white;
}

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

.mission-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Valeurs */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
}

.value-item .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item .value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-item .value-content h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item .value-content p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Équipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-member .member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-member h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-member .member-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-member .member-description {
    color: var(--light-text);
    line-height: 1.6;
}

/* Section Rejoignez-nous */
.join-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.join-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.join-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.join-actions .btn-primary {
    background: var(--accent);
    color: white;
}

.join-actions .btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-2px);
}

.join-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.join-actions .btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .join-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-card,
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}