/* Styles spécifiques à la page À Propos */
.about-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}
/* Indicateur de navigation */
.nav-indicator {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
    z-index: 999;
    cursor: pointer;
    transition: width 0.3s ease;
}

.nav-indicator:hover {
    width: 12px;
}

/* Hero Section */
.about-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    background: linear-gradient(rgba(30, 31, 40, 0.8), rgba(30, 31, 40, 0.95));
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.profile-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.profile-info h2 {
    color: var(--light-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.profile-location {
    color: rgba(255, 255, 255, 0.7);
}

.profile-location i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* About Content */
.about-content {
    padding: 2rem;
}

.section-title {
    color: var(--light-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-content .lead {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Skills Section */
.skills-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.skill-category h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.skill-category i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(45deg, var(--primary-color), #FF9248);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(30, 31, 40, 0.9), rgba(30, 31, 40, 0.95));
    text-align: center;
}

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

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gradient {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), #FF9248);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 177, 122, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 2rem;
    }

    .profile-card {
        margin-bottom: 2rem;
    }

    .about-content {
        padding: 1rem;
    }

    .value-item {
        padding: 1rem;
    }
}
