.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;

    background-image: url('../img/hero-bg.jpeg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    color: #fff;
    margin-top: -85px;
    padding-top: 85px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    justify-content: flex-start;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 .accent-text {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: #fff;
    color: #333;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: -70px;
        padding-top: 70px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}