/* * File: modules/hero/hero.css 
 * Version: 1.0.2 (Fixed Image Cropping)
 */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 85vh;
    align-items: center;
    background: var(--bg-color);
    padding: 0 0 0 5%; /* Padding only on left for split effect */
    overflow: hidden;
}

.hero-content {
    padding-right: 20px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero-title .highlight {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 45px;
    max-width: 500px;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-pill {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    font-size: 14px;
}

.btn-red {
    background: var(--accent-red);
    color: #fff;
    border: 2px solid var(--accent-red);
}

.btn-red:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 85vh;
    
    /* FIX: Ensures image covers space but prioritizes the TOP (Heads/Faces) */
    object-fit: cover; 
    object-position: top center; 
    
    /* The professional angular cut */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Responsive Fixes for Mobile */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 5%;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px auto;
    }
    
    .image-wrapper img {
        clip-path: none; /* Remove clip path on mobile for full visibility */
        height: 50vh;
        border-radius: 20px;
        /* Keep focus on faces even on mobile */
        object-position: top center;
    }
}