/* ============================================
   PAGES.CSS - Inner Page Styles
   ============================================ */

/* ---------- Page Hero Banner ---------- */
.page-hero {
    position: relative;
    padding: 180px 0 80px;
    overflow: hidden;
    text-align: center;
    background: var(--bg-secondary);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-bg);
}

.page-hero .hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.page-hero .shape-1 {
    width: 350px;
    height: 350px;
    background: rgba(108, 60, 224, 0.1);
    top: -80px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.page-hero .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(232, 71, 95, 0.07);
    bottom: -60px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.page-hero .shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(240, 165, 0, 0.05);
    top: 30%;
    left: 20%;
    animation: float 12s ease-in-out infinite;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb .separator {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumb .current {
    color: var(--text-secondary);
}

/* Page Hero Title */
.page-hero .section-title {
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.page-hero .section-subtitle {
    margin: 0 auto;
    max-width: 550px;
}

/* ---------- Inner Page Section Spacing ---------- */
.about,
.journey,
.services,
.skills,
.why-me,
.contact {
    padding: 100px 0;
}

/* ---------- Inner Page CTA Adjustment ---------- */
.inner-page-cta {
    padding: 60px 0 80px;
}

/* ---------- Responsive for Pages ---------- */
@media (max-width: 768px) {
    .page-hero {
        padding: 150px 0 60px;
    }

    .page-hero .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .page-hero .section-title {
        font-size: 1.8rem;
    }
}
