/* Home Section */
#fh5co-home {
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100vh;
    color: #fff;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    25% { background-position: 0% 100%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}


/* Gradient Overlay */
#fh5co-home .gradient2 {

    background: linear-gradient(315deg, #222, #333, #444, #ff007a);
    background-size: 300% 200%;
    animation: gradientMove 8s ease infinite;
}

/* Text Wrap */
#fh5co-home .text-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
}

/* Main Title */
#fh5co-home h1, h2, h3 {
    font-family: 'Roboto Mono', sans-serif;
    font-weight: bold;
    color: whitesmoke;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;

}

#fh5co-home h1 {
    font-size: 4em;
    animation: textFadeIn 2s ease-out;
}

#fh5co-home h2 {
    font-size: 3em;
    margin-top: 20px;
    animation: textFadeIn 3s ease-out;
}

#fh5co-home h3 {
    font-size: 3em;
    margin-top: 20px;
    color: #A1A1A1;
}

/* Responsive Title Adjustments */
@media (max-width: 1000px) {
    #fh5co-home h1 {
        font-size: 4em;
    }

    #fh5co-home h2 {
        font-size: 3.5em;
    }

    #fh5co-home h3 {
        font-size: 2.5em;
    }

    /* Gradient Overlay */
    #fh5co-home .gradient2 {

        background: linear-gradient(315deg, #222, #333, #444, #ff007a);
        background-size: 400% 200%;
        animation: gradientMove 8s ease infinite;
    }
}

/* Links */
#fh5co-home a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

#fh5co-home a:hover {
    color: #fff;
    text-decoration: none;
}

/* Call-to-action Button */
#fh5co-home .call-to-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#fh5co-home .call-to-action a {
    font-size: 20px;
    padding: 15px 30px;
    margin: 10px;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#fh5co-home .call-to-action a:hover {
    transform: scale(1.1);
}

/* Demo Button */
#fh5co-home .call-to-action .demo {
    background: #3EC483;
    border: 2px solid #3EC483;
    color: white;
}

#fh5co-home .call-to-action .demo:hover {
    background: #2D9E70;
    border: 2px solid #2D9E70;
}

/* Download Button */
#fh5co-home .call-to-action .download {
    background: #00ADB5;
    border: 2px solid #00ADB5;
    color: white;
}

#fh5co-home .call-to-action .download:hover {
    background: #009B9A;
    border: 2px solid #009B9A;
}

/* Animation Keyframes */
@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
