/* Modify navbar */
.navbar {
    top: 0px;
}

.reset-navbar {
    height: 80px;
}

/* services.css */

/* hero section */
.hero-about {
    padding: 1rem 0 2rem 0;
    text-align: center;
    color: var(--text-color);
}

.hero-about h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-about .tagline {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 350;
}

.hero-about .overline {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* hero image */
.hero-image {
    margin-top: 3rem;
    /* border-radius: 24px; */
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(var(--text-color-rgb), 0.15);
    transition: transform 0.3s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(0.05) contrast(1.02);
    transition: filter 0.4s;
}

.hero-image:hover img {
    filter: grayscale(0);
}

/* sections */
.section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(var(--text-color-rgb), 0.06);
}

.col {
    width: 85%;
    margin: auto;
}

.section p {
    text-align: center;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    padding-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    color: var(--text-color);
}


.philosophy-text {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.highlight {
    font-weight: bold;
    opacity: 1;
    border-bottom: 2px dotted rgba(var(--text-color-rgb), 0.5);
}


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

.value-card {
    padding: 0;
    border-left: 2px solid rgba(var(--text-color-rgb), 0.15);
    padding-left: 1.2rem;
    transition: border-left-color 0.2s;
}

.value-card:hover {
    border-left-color: var(--text-color);
}

.value-card p i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.value-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.4;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    justify-content: center;
}
.value-item {
    background: rgba(220,220,220,0.1);
    padding: 0.4rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* L'Equipe  */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.member-avatar {
    width: 120px;
    height: 120px;
    background: rgba(var(--text-color-rgb), 0.05);
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-color);
    opacity: 0.6;
}

.team-member h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: 0.85rem;
    opacity: 0.6;
}
