/* ==========================================================================
   About Me Page — Phillip Price
   ========================================================================== */

/* ---------- Photo & Bio Section ---------- */

.aboutme-section {
    background-color: var(--color-white);
}

.aboutme-photo-wrapper {
    position: relative;
    display: inline-block;
}

.aboutme-photo {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.aboutme-photo-caption {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-label);
    font-style: italic;
    letter-spacing: 0.5px;
}

.aboutme-role {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.aboutme-text {
    font-size: 1.1rem;
    color: var(--color-body-text);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

/* Left-align the divider when it's beside the photo */
.aboutme-section .section-divider {
    margin-left: 0;
}

/* ---------- Philosophy / Values Section ---------- */

/* .aboutme-philosophy inherits background from .dark-section */

.aboutme-value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--color-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--color-teal-light);
    transition: all 0.3s ease;
}

.aboutme-value-icon:hover {
    background: var(--color-teal-light);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(127, 181, 176, 0.3);
}

.aboutme-value-title {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.aboutme-value-text {
    color: var(--color-silver);
    font-weight: 300;
    line-height: 1.75;
}

/* ---------- Willie Section ---------- */

.aboutme-willie {
    background-color: var(--color-cream);
}

.aboutme-willie-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
    .aboutme-photo {
        max-width: 320px;
        margin-bottom: 1rem;
    }

    .aboutme-section .section-divider {
        margin-left: auto;
    }

    .aboutme-section .section-heading,
    .aboutme-role {
        text-align: center;
    }

    .aboutme-text {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .aboutme-photo {
        max-width: 280px;
    }

    .aboutme-text {
        font-size: 1rem;
    }
}
