/**
 * Page Header Styles - PT Arsitekta Marine
 * Premium Page Header Style
 */

/* ============================================
   Page Header
============================================ */
.page-header {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.page-header>.container {
    position: relative;
    z-index: 2;
}

.page-header-lg {
    padding: 120px 0 80px;
}

/* ============================================
   Breadcrumb
============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.breadcrumb a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

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

.breadcrumb span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   Page Title
============================================ */
.page-header .page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-header .page-subtitle {
    color: var(--gray-400);
    font-size: 1.0625rem;
}

/* ============================================
   Section Headers - Premium Style
============================================ */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(27, 122, 140, 0.05);
    border: 1px solid rgba(27, 122, 140, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    margin-bottom: var(--spacing-3xl);
}