/* ===== VI.OS About Section (add-on) ===== */

h2 {
    font-family: 'MB Corpo S Title';
    text-align: left;
    font-size: 2em;
    color: whitesmoke;
    justify-self: center;
}

main h2 {
    justify-self: center;
}

h3 {
    font-size: 1.10em;
    text-align: center;
    font-family: 'MB Corpo S Text Office';
    color: white;
}

.about-hero {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.00) 100%);
    padding: 2rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin: 0 auto;
    max-width: 1200px;
}

.about-hero__content {
    text-align: left;
    width: 100%;
}

.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
    color: rgb(65,190,234);
    margin-bottom: .5rem;
}

.about-title {
    font-family: 'MB Corpo S Title';
    color: whitesmoke;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.about-body {
    color: #e6e6e6;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 70ch;
}

.about-hero__media {
    width: 100%;
    display: grid;
    place-items: center;
}

.about-team-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    object-fit: cover;
}

/* Divider */
.about-divider {
    height: 1px;
    width: 100%;
    max-width: 1200px;
    margin: 1.75rem auto;
    background: linear-gradient(90deg, rgba(65,190,234,0) 0%, rgba(65,190,234,.7) 25%, rgba(65,190,234,.7) 75%, rgba(65,190,234,0) 100%);
}

/* Team section */
.about-team {
    display: grid;
    gap: 1rem;
    margin: 0 auto;
    max-width: 1200px;
    text-align: left;
    padding: 0 1.25rem;
}

.about-section-title {
    font-family: 'MB Corpo S Title';
    font-size: 1.4rem;
    color: whitesmoke;
}

.about-team__intro {
    margin-bottom: .75rem;
}

.about-team__names {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem 1rem;
    margin-top: .25rem;
    list-style: none;
    padding-left: 0;
}

    .about-team__names li {
        color: #f2f2f2;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 10px;
        padding: .6rem .75rem;
    }

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem auto 0;
    max-width: 1200px;
    padding: 0 1.25rem;
}

.stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
}

.stat__value {
    font-family: 'MB Corpo S Title';
    font-size: 2rem;
    color: whitesmoke;
    line-height: 1;
}

.stat__label {
    color: #d6d6d6;
    font-size: .9rem;
    margin-top: .4rem;
}

/* Closing note */
.about-note {
    margin: 1.25rem auto 0;
    max-width: 1200px;
    padding: 0 1.25rem 1.5rem;
}

/* Responsive tweaks */
@media (max-width: 1100px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero__content {
        text-align: center;
    }

    .about-team__names {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .about-team__names {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== Enhanced About Us Title Styling ===== */

/* Make "What is VI.OS?" bigger and bolder */
.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 1.2rem; /* increased from .8rem */
    font-weight: bold;
    color: rgb(65,190,234);
    margin-bottom: .5rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeSlideDown 1s ease forwards;
}

/* Fade + slide down animation */
@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Give main titles a smooth shimmer effect */
.about-title,
.about-section-title {
    position: relative;
    display: inline-block;
    background: linear-gradient( to right, whitesmoke 20%, rgb(65,190,234) 40%, whitesmoke 60% );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

/* Shimmer keyframes */
@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Make the section titles slightly larger */
.about-title {
    font-size: 2.4rem; /* was 2rem */
}

.about-section-title {
    font-size: 1.8rem; /* was 1.4rem */
}

/* Team names under image */
.about-hero__media .about-team__names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

    .about-hero__media .about-team__names li {
        color: #f2f2f2;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: .5rem .75rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }
