/* =========================================
   PAGE A PROPOS (ARTIFACT)
   ========================================= */

.artifact-about-page {
    font-family: 'Satoshi', sans-serif;
    color: #1a1a1a;
    background-color: #fff;
}

/* Sections communes */
.artifact-about-page .about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.artifact-about-page .subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

/* 1. Hero Image */
.about-hero {
    width: 100%;
    height: 700px;
    background-color: #f5f5f5;
    overflow: hidden;
}
.about-hero img.hero-bg {
    width: 100%;
    margin: auto;
    height: 100%;
    object-fit: cover;
}

/* 2. Mission Section */
.about-mission {
    display: flex;
    align-items: center;
    gap: 60px;
}
.mission-text {
    flex: 1;
}
.mission-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}
.mission-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}
.mission-image {
    flex: 1;
    text-align: center;
}
.mission-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.about-mission:hover .mission-image img {
    transform: scale(1.03) rotate(-2deg);
}

/* 3. Features Section */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}
.features-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.feature-item .icon-wrapper {
    background: #f0f4f8;
    color: #4a90e2; /* Couleur bleue douce pour les icônes */
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
    transition: all 0.4s ease;
}
.feature-item:hover .icon-wrapper {
    background: #b8860b;
    color: #fff;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}
.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 4. Trust Badges Section */
.about-trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 40px 20px !important;
    gap: 20px;
    flex-wrap: wrap;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.badge-item i {
    font-size: 24px;
    color: #333;
}
.badge-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.badge-item span {
    font-size: 12px;
    color: #666;
}

/* 5. Team Section */
.about-team {
    display: flex;
    gap: 60px;
    align-items: center;
}
.team-text {
    flex: 1;
    max-width: 350px;
}
.team-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.team-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
.team-buttons {
    display: flex;
    gap: 15px;
}
.team-buttons a {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline {
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
}
.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}
.btn-solid {
    background: #1a1a1a;
    color: #fff;
}
.btn-solid:hover {
    background: #b8860b;
}

.team-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.team-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #b8860b;
}
.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ccc;
}
.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.team-card span {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 15px;
}
.team-card .socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.team-card .socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}
.team-card .socials a:hover {
    background: #b8860b;
    color: #fff;
}

/* Responsive (Mobiles & Tablettes) */
@media (max-width: 900px) {
    .about-mission { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .about-trust-badges { flex-direction: column; align-items: flex-start; }
    .about-team { flex-direction: column; }
    .team-grid { grid-template-columns: 1fr; width: 100%; }
}