/* ===========================================
   ABOUT PROJECT PAGE — /about
   Reuses shared classes from about.css
   =========================================== */

/* === Decorative backgrounds === */
.about-page {
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--bg-blush);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.about-page::after {
    content: '';
    position: absolute;
    top: 600px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: rgba(147, 124, 179, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* === Hero === */
.about-hero {
    text-align: center;
    padding: 64px 24px 48px;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--purple);
    opacity: 0.8;
}

/* === Sections === */
.about-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 48px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 32px;
    text-shadow: 1px 1px 3px rgba(237, 123, 171, 0.15);
}

/* === About card === */
.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 40px var(--shadow-pink);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--light-pink));
    border-radius: 30px 30px 0 0;
}

.about-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 12px;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple);
    margin-top: 24px;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--purple-dark);
}

.about-card .lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.about-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--purple-dark);
}

.about-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
}

/* === Values grid === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px var(--shadow-pink-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--shadow-pink);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--purple-dark);
    line-height: 1.5;
}

/* === CTA section === */
.about-cta {
    text-align: center;
    padding: 48px 24px 0;
    position: relative;
    z-index: 1;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--purple);
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    background: var(--pink);
    color: white;
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 153, 194, 0.4);
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 153, 194, 0.5);
    color: white;
}

/* === Responsive === */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px 32px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1rem;
    }

    .about-section {
        padding: 0 16px 32px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .about-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-card {
        padding: 24px 16px;
    }
}
