/* ====================================
   Professional Hero Section
   ==================================== */

.hero-stack {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-header);
    margin-top: 60px; /* Account for fixed nav */
}

/* ====================================
   Hero Background Image
   ==================================== */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
    display: block;
}

/* ====================================
   Remove ALL Bubbles - Too Playful
   ==================================== */

.bubble {
    display: none !important;
}

/* ====================================
   Professional Profile Section
   ==================================== */

.profile-container {
    position: relative;
    z-index: 3;
    width: 200px;
    height: 260px;
    margin-bottom: 2rem;
}

.profile-glass-frame {
    display: none; /* Remove glass frame effect */
}

.profile-picture {
    position: relative;
    width: 200px;
    height: 260px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--bg-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 1;
    display: block;
}

/* ====================================
   Hero Content (Text)
   ==================================== */

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.6;
    word-wrap: break-word;
    hyphens: auto;
}

/* ====================================
   Clean Hero Layout - No Animations
   ==================================== */

.hero-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-header);
    opacity: 0.3;
    z-index: 2;
}

/* Remove vignette effect */
.hero-stack::after {
    display: none;
}

/* ====================================
   Scroll Indicator - Removed (Too Playful)
   ==================================== */

.scroll-indicator {
    display: none;
}
