/*
 * Hero Component Styles
 */

.company-hero-premium {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 0 0 1rem 1rem;
}

.hero-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.company-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.hero-content-premium {
    color: var(--color-text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

.company-logo-large {
    text-align: center;
}

.company-logo-large img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-border-glass);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    background: var(--color-bg-card);
}

/* Utilities for Hero */
.text-balance {
    text-wrap: balance;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-30 {
    opacity: 0.3;
}
