/* ============================================================
   Oahu Prep — about.css
   About page styles: hero portrait, story section, highlights,
   personal section, Zola section, bottom CTA
   ============================================================ */


/* ============================================================
   About Hero
   ============================================================ */

#about-hero {
    background: var(--orange-light);
    overflow: hidden;
}

.about-portrait-wrap {
    position: relative;
    display: inline-block;
}

.about-portrait {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--blue);
    position: relative;
    z-index: 2;
}

.about-portrait-accent {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.about-portrait-accent--ring {
    width: 370px;
    height: 370px;
    border: 2px dashed var(--blue);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-portrait-accent--dot-orange {
    width: 60px;
    height: 60px;
    background: var(--orange);
    opacity: 0.2;
    top: -10px;
    right: -5px;
}

.about-portrait-accent--dot-blue {
    width: 40px;
    height: 40px;
    background: var(--blue);
    opacity: 0.2;
    bottom: 15px;
    left: -15px;
}

.about-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.about-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.75;
    max-width: 580px;
}

.about-intro strong {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .about-portrait {
        width: 240px;
        height: 240px;
    }
    .about-portrait-accent--ring {
        width: 280px;
        height: 280px;
    }
    .about-portrait-accent--dot-orange {
        width: 40px;
        height: 40px;
    }
    .about-portrait-accent--dot-blue {
        width: 28px;
        height: 28px;
    }
}


/* ============================================================
   Why I Tutor / Story Section
   ============================================================ */

#about-story {
    background-color: var(--white);
    background-image: url('../images/dot-pattern.svg');
    background-repeat: repeat;
}

#about-story p {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.75;
}

#about-story strong {
    color: var(--dark);
}

/* Approach Grid */

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.approach-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: box-shadow 0.2s ease;
}

.approach-block:hover {
    box-shadow: var(--shadow-sm);
}

.approach-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.approach-icon--blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.approach-content {
    flex: 1;
    min-width: 0;
}

.approach-content p {
    margin-bottom: 0;
}

.approach-content .pullquote {
    margin-top: 0;
}

@media (max-width: 575.98px) {
    .approach-block {
        flex-direction: column;
        gap: 1rem;
    }
}


/* ============================================================
   Pull Quotes
   ============================================================ */

.pullquote {
    border-left: 3px solid var(--orange);
    padding: 0.4rem 0 0.4rem 1.25rem;
    margin: 0 0 0.75rem;
}

.pullquote--blue {
    border-left-color: var(--blue);
}

.pullquote-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    color: var(--dark);
}


/* ============================================================
   Inline CTAs
   ============================================================ */

.inline-cta-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}


/* ============================================================
   How Hard Work Pays Off — Journey Section
   ============================================================ */

#about-journey {
    background: var(--white);
}

/* Narrative Card */

.journey-narrative {
    background-color: var(--gray-bg);
    background-image: url('../images/dot-pattern.svg');
    background-repeat: repeat;
    background-position: center;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.journey-narrative .pullquote,
.journey-narrative .journey-prose {
    position: relative;
    z-index: 1;
}

.journey-narrative-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
}

.journey-prose {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .journey-narrative {
        padding: 2rem 1.5rem;
    }
}

/* ============================================================
   About Reviews Strip
   ============================================================ */

#about-reviews {
    background: var(--white);
}

.about-reviews-strip {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 2rem;
}

.about-reviews-strip h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
}


/* ============================================================
   Off the Clock / Personal Section
   ============================================================ */

#about-personal {
    background: var(--gray-bg);
}

#about-personal .section-heading::after {
    margin-left: 0;
    margin-right: auto;
}

#about-personal > .container > .row > .col-lg-6:first-of-type p {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.75;
}

.personal-image-main img {
    box-shadow: var(--shadow-md);
}

/* Activity Items */

.personal-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0;
}

.activity-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 50rem;
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.activity-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.activity-icon--blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

/* Island Exploration Callout */

.island-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.island-callout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--blue-light);
    color: var(--blue-dark);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.island-callout-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.65;
    margin-bottom: 0;
}

.personal-footnote {
    font-size: 0.9rem;
    color: var(--gray-muted);
    font-style: italic;
    margin-bottom: 0;
}


/* ============================================================
   Zola Section
   ============================================================ */

#about-zola {
    background: var(--white);
}

#about-zola .section-heading::after {
    margin-left: 0;
    margin-right: auto;
}

#about-zola p {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.75;
}

.zola-image-wrap img {
    box-shadow: var(--shadow-md);
}

.zola-card {
    background: var(--orange-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.zola-card .section-heading::after {
    margin-left: 0;
    margin-right: auto;
}

.zola-card-paw {
    position: absolute;
    color: var(--orange);
    opacity: 0.1;
    z-index: 0;
}

.zola-card-paw svg {
    display: block;
}

.zola-card-paw--1 {
    top: 0.75rem;
    right: 1.5rem;
    transform: rotate(20deg);
}

.zola-card-paw--1 svg {
    width: 50px;
    height: 50px;
}

.zola-card-paw--2 {
    top: 0.5rem;
    right: 6.5rem;
    transform: rotate(-12deg);
}

.zola-card-paw--2 svg {
    width: 35px;
    height: 35px;
}

.zola-card-paw--3 {
    bottom: 1.25rem;
    right: 2rem;
    transform: rotate(35deg);
}

.zola-card-paw--3 svg {
    width: 42px;
    height: 42px;
}

.zola-badge {
    display: inline-block;
    background: var(--white);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.zola-card .section-heading,
.zola-card p {
    position: relative;
    z-index: 1;
}

.zola-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.zola-role {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--orange-dark);
    border: 1px solid var(--gray-border);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.zola-role:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
    background: var(--orange-light);
}

.zola-role--blue {
    color: var(--blue-dark);
}

.zola-role--blue:hover {
    background: var(--blue-light);
}