/**
 * Page Header Styles - PT Arsitekta Marine  
 * Increased height for better visual proportions
 */

/* Page Header - Full Screen like Index Hero */
.page-header {
    position: relative;
    min-height: 85vh;
    /* Ends above chat widget */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

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

.page-header-lg {
    min-height: 85vh;
    /* Same as page-header - ends above chat widget */
}

/* ============================================
   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-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    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);
}