/* Page Généalogie */

.genealogie-wrapper {
    background: var(--color-background);
    width: 100%;
}

/* Section Hero */
.genealogie-hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.05) 0%, rgba(244, 236, 108, 0.05) 100%);
    border-bottom: 1px solid var(--color-border);
}

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

.genealogie-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A4A6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.genealogie-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Section Liens */
.genealogie-links-section {
    padding: 5rem 0;
}

.genealogie-links-list {
    max-width: 900px;
    margin: 0 auto;
}

/* Item de lien */
.genealogie-link-item {
    background: white;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.genealogie-link-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(54, 94, 138, 0.15);
    border-left-color: #2A4A6E;
}

.link-item-header {
    margin-bottom: 0.75rem;
}

.link-item-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.link-item-title a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-item-title a:hover {
    color: #2A4A6E;
    text-decoration: underline;
}

.link-item-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.link-attachment {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.1) 0%, rgba(244, 236, 108, 0.1) 100%);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.link-attachment:hover {
    background: linear-gradient(135deg, rgba(54, 94, 138, 0.15) 0%, rgba(244, 236, 108, 0.15) 100%);
    transform: translateY(-2px);
    color: #2A4A6E;
}

.link-attachment svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .genealogie-hero-section {
        padding: 4rem 0 3rem;
    }
    
    .genealogie-hero-title {
        font-size: 2.5rem;
    }
    
    .genealogie-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .genealogie-links-section {
        padding: 3rem 0;
    }
    
    .genealogie-link-item {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .genealogie-hero-title {
        font-size: 2rem;
    }
    
    .genealogie-hero-subtitle {
        font-size: 1rem;
    }
    
    .link-item-title {
        font-size: 1.125rem;
    }
}
