.hero img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    display: block;
}

.gradient-effect {
    height: 30px;
    background: linear-gradient(to bottom, #111111 0%, rgb(218, 30, 30) 50%, #0D0D0D 100%);
    position: relative;
    overflow: hidden;
}

.gradient-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    opacity: 0; /* hidden until active */
}

/* Only animate when active */
.gradient-effect.active::after {
    animation: shimmer 4s linear forwards;
    opacity: 1;
}

@keyframes shimmer {
    0%   { left: -100%; }
    100% { left: 100%; }
}


body h1, h2, h4, p {
    color: #C7C7C7;
}

.about-novacraft {
    margin: 0;
    background-color: #0D0D0D;
    padding: 60px 20px;
}

.about-novacraft p {
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-novacraft h2 {
    color: #D8D8D8;
    letter-spacing: 0.5px;
}


.cta-section button {
    align-items: center;
    padding: auto;
}
 
.footer p {
    margin: 0;
    text-align: center;
    background-color: #0D0D0D;
    color: #C7C7C7;
    padding: 40px 20px;
}



@media (max-width: 768px) {
    body {
        background-image: url('../global-images/.hero');
    }

    .hero-overlay {
        justify-content: flex-end;
        padding-bottom: 80px;
    }
    
    .gradient-effect {
        height: 10px;
    }
}