/* ==========================================
   HERO / SLIDE 1 SECTION (Clean Transition Fix)
   ========================================== */
.hero-section {
    background-image: url('../assets/images/slide-1-bg.jpg');
    background-size: cover;      
    background-position: center 25%; 
    background-repeat: no-repeat;
    height: 100vh; 
    width: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    padding-top: 20vh; 
    text-align: center;
    position: relative;
    overflow: hidden;

    background-image: 
        linear-gradient(to right, 
            rgba(0,0,0,0) 0%, 
            rgba(255, 204, 0, 0.2) 20%, 
            #FFCC00 50%, 
            rgba(255, 204, 0, 0.2) 80%, 
            rgba(0,0,0,0) 100%
        ),
        url('../assets/images/slide-1-bg.jpg');
    background-size: 100% 3px, cover;
    background-position: bottom, center 25%;
    background-repeat: no-repeat;

    margin-bottom: 0 !important;
}

.hero-section::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(11, 15, 25, 0.8) 0%, 
        rgba(11, 15, 25, 0.4) 40%, 
        rgba(11, 15, 25, 0.2) 75%, 
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px; 
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif !important;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 5.2vw !important; 
    white-space: nowrap !important; 
    letter-spacing: 12px !important; 
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7), 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.hero-content .hero-desc {
    color: #ffffff !important;
    font-size: 1.45rem;
    font-weight: 500; 
    line-height: 1.6;
    letter-spacing: 0.6px;
    max-width: 1150px !important; 
    width: 100%;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 4px 18px rgba(0, 0, 0, 0.7) !important;
}

.hero-content .hero-subdesc {
    color: #ffffff !important; 
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 4px 18px rgba(0, 0, 0, 0.7) !important;
}

/* ==========================================
   HERO SECTION UTILITIES
   ========================================== */
.hero-section {
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px; 
    padding-bottom: 80px;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem !important;
        letter-spacing: 4px !important;
        white-space: normal !important;
        line-height: 1.2;
    }
    
    .hero-content .hero-desc {
        font-size: 1.15rem;
        padding: 0 10px;
    }
    
    .hero-content .hero-subdesc {
        font-size: 1.05rem;
        letter-spacing: 2px;
    }
    
    .hero-section {
        padding-top: 15vh;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-content .hero-desc {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-content .hero-subdesc {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}


