/* ========================================
   HERO IMAGE ENHANCEMENTS
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('public/images/hero-background.jpg') center/cover no-repeat;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.85) 60%,
            rgba(0, 0, 0, 0.75) 100%);
}

/* Make hero text extremely visible */
.hero-title {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7);
    color: #ffffff !important;
}

.hero-title .title-line {
    color: #ffffff !important;
}

.hero-title .title-line.accent {
    color: #ffd700 !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(217, 165, 32, 0.8);
}

.hero-subtitle {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    color: #ffffff !important;
    opacity: 0.95 !important;
}

/* Ensure navbar is visible */
.header {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* About Page */
.page-hero {
    background: #1a1a1a;
    padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
    text-align: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('public/images/about-hero.jpg') center/cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.page-hero>* {
    position: relative;
    z-index: 1;
}