/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Reusing some basics if not globally imported yet, though ideally this should be in a global css */
/* Since user asked for a specific css file, I will put specific styles here */

/* Hero Section - About */
.about-hero-section {
    background-color: #FFF5F5; /* Very light pink background, same as services hero */
    text-align: center;
    padding: 6rem 1rem 8rem 1rem;
}

.badge-pill-history {
    display: inline-block;
    background-color: #fff;
    color: #FF6B6B;
    border: 1px solid #FFD1D1;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(255, 90, 95, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1A1A1A; /* Dark almost black */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text-about {
    color: #FF6B6B; /* Pink color */
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: #555; /* Slightly grey text */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* History Section */
.history-section {
    padding: 6rem 1rem;
    background-color: #fff;
}

.history-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
    .history-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

.history-image {
    flex: 1;
    position: relative;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Soft shadow as in mockup */
    display: block;
}

.history-content {
    flex: 1;
}

.history-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0F172A; /* Dark blue/black */
    margin-bottom: 2rem;
}

.history-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.history-text p:last-child {
    margin-bottom: 0;
}


/* Values Section */
.values-section {
    padding: 6rem 1rem;
    background-color: #FDFBF7; /* Creamy off-white background from mockup */
}

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

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    border: 1px solid #fcfcfc;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #FF7E82; /* Pink color */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Team Section */
.team-section {
    padding: 6rem 1rem;
    background-color: #fff;
    text-align: center;
}

/* Reusing section-header styles from services.css but since this is a separate file and we want consistency */
.section-description {
    color: #666;
    margin-top: 0.5rem;
    font-size: 1rem;
}

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

.team-member {
    text-align: left; /* As per mockup, names aligned left to the image card */
}

/* Center text on mobile if preferred, but mockup shows left alignment relative to image container width */
@media (max-width: 768px) {
    .team-member {
        text-align: center;
    }
}

.member-image {
    width: 100%;
    aspect-ratio: 3/4; /* Vertical portrait ratio */
    background-color: #e0e0e0; /* Gray placeholder background */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.member-role {
    color: #666;
    font-size: 0.95rem;
}


/* Stats Section */
.stats-section {
    padding: 6rem 1rem;
    background-color: #1A3C34; /* Dark Green */
    color: #fff;
    text-align: center;
}

.section-header-dark {
    margin-bottom: 4rem;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: #aebdb8; /* Light grey/green text */
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF6B6B; /* Pink color */
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}


/* Community CTA Section */
.community-cta-section {
    padding: 6rem 1rem;
    background-color: #FFF5F5; /* Light pink background */
    text-align: center;
}

.community-title {
    font-size: 2.5rem;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.community-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-shop-cta {
    background-color: #FF6B6B;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-shop-cta:hover {
    background-color: #FA5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.btn-services-cta {
    background-color: transparent;
    color: #D4AF37; /* Gold color */
    border: 2px solid #D4AF37;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-services-cta:hover {
    background-color: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVITÉ & LUXE UX - PAGE À PROPOS
   ========================================== */

@media (max-width: 992px) {
    .about-hero-section {
        padding: 5rem 1rem 6rem 1rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .history-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 4rem 1rem 5rem 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .badge-pill-history {
        margin-bottom: 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .history-section {
        padding: 3.5rem 1rem;
    }
    .history-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .history-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .values-section {
        padding: 3.5rem 1rem;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .value-card {
        padding: 1.75rem;
    }
    
    .team-section {
        padding: 3.5rem 1rem;
    }
    .team-grid {
        gap: 1.5rem 1rem;
    }
    
    .stats-section {
        padding: 3.5rem 1rem;
    }
    .stats-title {
        font-size: 2rem;
    }
    .stats-subtitle {
        font-size: 0.95rem;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
    
    .community-cta-section {
        padding: 4rem 1rem;
    }
    .community-title {
        font-size: 2rem;
    }
    .community-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-member {
        text-align: center;
    }
    .member-image {
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }
    .team-member h3 {
        font-size: 1.1rem;
    }
    .member-role {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .community-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .btn-shop-cta, .btn-services-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}


