
/* =========================================
   NEW HERO SYSTEM (nh-hero)
   Standalone CSS for the revamped homepage hero
   ========================================= */

.nh-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

/* Background & Video */
.nh-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nh-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.nh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 13, 0.5); /* Slight dark tint for readability */
    z-index: 2;
}

/* Content Container */
.nh-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: nh-fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Typography */
.nh-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    color: #ffffff;
    max-width: 1400px;
    
}

.nh-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    max-width: 900px;
    margin: 0;
    
}

/* CTA Button */
.nh-hero-cta {
    background: #ff6630;
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 0.6em 2em;
    text-decoration: none;
    margin-top: 1.6rem;
    border-radius: 8px;
}

.nh-hero-cta:hover {
    background-color: #e05500;
    
}



/* Scroll Indicator */
.nh-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: nh-bounce 2s infinite;
    opacity: 0.8;
}

/* Animations */
@keyframes nh-fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes nh-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nh-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nh-hero-title {
        font-size: 2.25rem;
    }
    .nh-hero-subtitle {
        font-size: 1.1rem;
    }
    .nh-hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .nh-hero-title {
        font-size: 1.8rem;
    }
    .nh-hero-cta {
        width: 100%;
        max-width: 280px;
    }
}
