@charset "UTF-8";
/*
    This CSS stylesheet was created by the Crattivo Department of Gocreattivo.
    It is designed to style HeroStyle-1.html template with 3 slides.
    Our team specializes in Full Stack Development, Database Management, API Integration,
    Frontend & Backend Coordination, and Code Optimization.
    Gocreattivo is dedicated to providing high-quality, efficient, and scalable design solutions.
*/
*{
    padding:0;
    margin:0;
}
/*-----------------------------------------*/
        /*  Hero Section Starts  */
/*-----------------------------------------*/
.hero-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height:80vh;
    width: 100%;
    z-index: 0;
}
.hero-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.hero-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 1;
}
.hero-dark_overlay{
    display: flex;
    background-color: #000000b0;
    position: absolute;
    height: 80vh;
    width: 100%;
    z-index: 1;
}

.hero-text-overlay{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index:1;
    top: -3%;
    h1{
        text-transform: capitalize;
        font-weight: bolder;
        letter-spacing: 2px;
        font-size: 4.25rem;
        text-align: left;
        color: white;
        margin-bottom: 0.5vw;
    }
    h2{
        font-size: 1.85rem;
        font-weight: 500;
        text-align: left;
        color: #F3F3F3;
        word-spacing: 0.05em;
        margin-bottom: 0.5vw;
    }
    h3{
        color: #F6F6F6;
        font-size: 2rem;
        font-weight: 500;
    }
}
.hero-overlay-text-container > *:not(.logo-container) {
    opacity: 0;
    transform: translateX(-75px);
    animation: slideInLeft 0.8s ease-out forwards;
}
/* Add staggered delays for each child */
.hero-overlay-text-container > *:nth-child(1) {
    animation-delay: 0.2s;
}
.hero-overlay-text-container > *:nth-child(2) {
    animation-delay: 0.3s;
}
.hero-overlay-text-container > *:nth-child(3) {
    animation-delay: 0.4s;
}
.hero-overlay-text-container > *:nth-child(4) {
    animation-delay: 0.5s;
}
.hero-overlay-text-container > *:nth-child(5) {
    animation-delay: 0.6s;
}
.hero-overlay-text-container > *:nth-child(6) {
    animation-delay: 0.6s;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-75px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.logo-container{
    display: flex;
    align-items: center;   
    flex-direction: row;     
    justify-content: center;    
    gap: 0.25rem;                   
    text-align: left;
    img{
        width: 8rem;
        height: auto;
    }
    h4{
        font-size: 2rem;            
        line-height: 1.3;
        margin: 0;
        display: flex;
        flex-direction: column;      
        justify-content: center; 
        margin-left: 0.25rem;
        transform: translateX(100px); /* off to the right */
        opacity: 0;
        animation: slideFromRight 1s forwards;
        animation-delay: 0.4s; /* slight delay so logo comes first */
        span{
            display: block;
            font-weight: 700;   
            letter-spacing: 1px;
            color: white;  
        }
    }
}
.separator-line {
    width: 3px;
    height: 80%;                
    background-color: #D84F51;      
}
.logo-container img,
.separator-line {
    transform: translateX(-100px); /* off to the left */
    opacity: 0;
    animation: slideFromLeft 1s forwards; /* animation duration 1s */
    animation-delay: 0.2s; /* optional delay */
}
/* Keyframes for left -> original */
@keyframes slideFromLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Keyframes for right -> original */
@keyframes slideFromRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.mobile{
    display: none;
}
.default{
    display: block;
}
.hero-overlay-logo-section{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    width: 80%;
    gap: 2vw;
    margin: 0 auto;
}
.hero-overlay-text-container{
    display: flex;
    flex-direction: column;
}
/* -------------------- */
/*  MOBILE BREAKPOINTS  */
/* -------------------- */
@media (max-width: 767px) and (orientation: portrait) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:80vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 80vh;
        background-color: #0000009e;
    }
    .hero-overlay-text-container{
        text-align: center;
        align-items: center;
    }
    .hero-text-overlay{
        height: 100%;
        width: 90%;
        z-index:3;
        top: -6%;
        h1{
            font-size: 3rem;
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
        }
        h2{
            font-size: 1.15rem;
            text-align: center;
            margin-top: 1;
            font-weight: 500;
            margin-bottom: 3vw;
        }
        h3{
            font-size: 1.15rem;
            margin-bottom: 1rem;
            margin-top:13rem;
        }
    }
    .logo-container{
        transform: translateY(7rem);
    }
    .mobile{
        display: flex;
    }
    .default{
        display: none;
    }
    .hero-overlay-logo-section{
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .hero-overlay-text-container > *:not(.logo-container){
        animation: none;
        transform: translateX(0);
        opacity: 1;
    }
}
@media (max-width: 767px) and (orientation: landscape) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:90vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 90vh;
        background-color: #0000009e;
    }
    .hero-overlay-text-container{
        width: fit-content;
        text-align: center;
        align-items: center;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -10%;
        h1{
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-align: left;
        }
        h2{
            font-size: 0.9rem;
            text-align: left;
            margin-top: 1;
            margin-bottom: 1vw;
        }
        h3{
            margin-top: 2rem;
            justify-content: center;
            font-size: 1.25rem;
        }
    }
    .logo-container{
        h4{
            font-size: 2.25rem;
        }
    }
    .separator-line{
        height: 8rem;
    }
    .mobile{
        display: flex;
    }
    .default{
        display: none;
    }
    .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        justify-content: center;
        width: 100%;
        gap: 1vw;
    }
    .hero-overlay-text-container > *:not(.logo-container){
        animation: none;
        transform: translateX(0);
        opacity: 1;
    }
}
@media only screen and (min-width:767px) and (max-width: 1200px){
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:80vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 80vh;
    }
    .hero-overlay-text-container{
        width: fit-content;
        text-align: center;
        align-items: center;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -4%;
        h1{
            font-size: 4.25rem;
            margin-bottom: 1.5rem;
            text-align: left;
        }
        h2{
            font-size: 1.25rem;
            width: 75%;
            text-align: left;
            text-align: center;
            margin-top: 1;
            margin-bottom: 1vw;
        }
        h3{
            margin-top: 4rem;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
    }
    .logo-container{
        transform: translateY(2rem);
        img{
            width: 11rem;
            height: auto;
        }
        h4{
            font-size: 3.25rem;
        }
    }
    .separator-line{
        height: 11rem;
    }
    .mobile{
        display: flex;
    }
    .default{
        display: none;
    }
    .hero-overlay-logo-section{
        flex-direction: row;
        height: auto;
        justify-content: center;
        width: 100%;
        gap: 1vw;
    }
    .hero-overlay-text-container > *:not(.logo-container){
        animation: none;
        transform: translateX(0);
        opacity: 1;
    }
}
/*Desktops and large Laptops*/
@media (min-width: 1201px) and (max-width: 1680px) {
    /*-------------------------------*/
        /*  Hero Section Sizing  */
    /*-------------------------------*/
    .hero-container{
        height:100vh;
        width: 100%;
    }
    .hero-dark_overlay{
        height: 100vh;
    }
    .hero-text-overlay{
        height: 100%;
        width: 100%;
        z-index:3;
        top: -10%;
        left: 0;
        h1{
            font-size: 3.5rem;
            margin-bottom: 0.5vw;
            text-align: left;
        }
        h2{
            font-size: 2rem;
            text-align: left;
            margin-top: 0.25vw;
            margin-bottom: 1rem;
        }
    }
    .hero-overlay-logo-section{
        width: 87%;
    }
}
