/**
 * Hero Section Styles - Custom Agency
 * Matches React Hero.jsx
 */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #181717;
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-desktop-image { display: none; opacity: .6; }
.hero-mobile-image { display: block; opacity: .55; }

@media (min-width: 768px) {
    .hero-desktop-image { display: block; }
    .hero-mobile-image { display: none; }
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #181717 10%, rgba(24, 23, 23, 0.4) 50%, rgba(24, 23, 23, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
