/* ===================================
   ABOUT PAGE HERO - PREMIUM DESIGN
   =================================== */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #1a1a1a 0%, var(--primary-dark-grey) 50%, #1f1f1f 100%);
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 35px; /* Account for announcement bar */
}

/* Dark overlay for better text contrast */
.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(42, 42, 42, 0.75) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

/* Premium decorative element */
.page-hero .hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-white) 100%);
    z-index: 2;
}

/* ===================================
   HERO CONTENT
   =================================== */

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-xxl) var(--spacing-lg);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Breadcrumb navigation */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    animation: fadeIn 1s ease forwards 0.2s;
    opacity: 0;
}

.hero-breadcrumb a {
    color: var(--primary-gold);
    transition: all var(--transition-fast);
}

.hero-breadcrumb a:hover {
    color: var(--primary-light-gold);
    transform: translateX(-2px);
}

.hero-breadcrumb svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
}

/* Page title */
.page-hero .hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
    line-height: 1.15;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 4px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.3s;
    opacity: 0;
}

/* Subtle gold accent on keywords */
.page-hero .hero-title::first-letter {
    color: var(--primary-gold);
}

/* Subtitle/description */
.page-hero .hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.5s;
    opacity: 0;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 1024px) {
    .page-hero {
        min-height: 45vh;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        background-attachment: scroll; /* Better mobile performance */
    }
    
    .page-hero .hero-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .page-hero .hero-decoration {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 35vh;
    }
    
    .page-hero .hero-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-sm);
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    .page-hero .hero-content,
    .hero-breadcrumb,
    .page-hero .hero-title,
    .page-hero .hero-subtitle {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .page-hero {
        background-attachment: scroll;
    }
}
