/* Copyright Queen Media LTD. */
/* Written By Nealious Queen */

body {
    background-color: #000000;
    color: #EBF8FF;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ------- Header ------- */
header {padding: 1rem 1rem;}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
}

.header-logo {
    height: 9rem;
    width: auto;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

/* ------- Navigation Menu ------- */

.nav-menu{
    display: flex;
    flex: 1;
    align-content: center;

}

.nav-menu ul{
    display: flex;
    flex: 1;
    padding: 0;
    margin: 0;

    justify-content: space-evenly;
    align-items: center;
 
    list-style: none;
}

.nav-menu a {
    color: #EBF8FF;
    text-decoration: none;
    transition: color 0.3s;
    font-size:larger;
}

.nav-menu a:hover {
    color: #8BCCEC;
}

/* ------- Main ------- */
main {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

/* ------- Hero section ------- */
.hero-container{
    display: flex;
    flex: 1;
    flex-direction: row;
    width: 90%;

    .hero-left{
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-text{
        margin: 0 0 3rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1vh;
        width: 100%;
    }

    .hero-text p {
        margin: 0 10rem 0 0;
        padding:0;
        color: inherit;
        text-align: left;
        font-size: 1.3rem;
        line-height: 2rem;
        width: fit-content;
    }
    
    .hero-title::after {
    content: "";
    display: block;
    width: 100%;
    bottom: -0.25rem;
    height: 0.1rem;
    background: linear-gradient(90deg, #EF97B4, #8BCCEC);
    border-radius: 2rem;
    margin-top: 0.2rem;
}
    .hero-text h1{
        margin: 0;
        padding:0;
        color: inherit;
        text-align: left;
        font-size: 3.2rem;}
   

    .hero-btns{
        display: flex;
        justify-content: left;
        width: 100%;
        padding-top: 2%;
        gap: 2%;
        appearance: none;
        -webkit-appearance: none;

        .btn-primary{
            display: flex;
            align-items: center;
            background-color: #000000;
            cursor: pointer;
            border: 1.5px solid #EBF8FF;
            border-radius: 2rem;

            font-size: 1.3rem;
            padding: 0.7rem;
            color: #EF97B4;
            transition: 0.3s;
            
            &:hover{  
                color: #000000;
                border-color: #8BCCEC;
                background-color: #8BCCEC;
            }
        }

        .btn-secondary{
            display: flex;
            align-items: center;
            background-color: #8BCCEC;
            cursor: pointer;
            border: 1.5px solid #8BCCEC;
            border-radius: 2rem;

            font-size: 1.3rem;
            padding: 0.7rem;
            color: #000000;
            transition: 0.3s;
            
            &:hover{  
                color: #EF97B4;
                border-color: #EBF8FF;
                background-color: #000000;
            }
        }
    }

    .hero-lottie{
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }
}


/* ------- Cases Track section ------- */
.cases-container{
    display: flex;
    flex: 1;
    margin: 10rem 0 0 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
}

.text-banner{
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 0;

    h1{
        margin: 0 0 0 0;
        font-size: 2rem;
    }
    
    p{
        margin: 0.5rem 0 0 0;
        font-size: 1.2rem;
    }
}

.cases-track-container{
    padding-top: 10rem;
    display: flex;
    flex-direction: row;
    height: 40vh;
    width: 90vw;
    margin: 0;
    overflow: hidden;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    user-select: none;
    transform: translate(0%,0%);
}

.cases-track{
    display: flex;
  gap: 4vmin;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%); 
  user-select: none;
}

.track-item {
    width: 20vw;
    height: 100%;
    object-fit: scale-down;
    object-position: center;

    user-select: none;
    user-drag: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    }


.swipe-container{
    justify-content: center;
    align-items: center;
}

.swipe-btn {
    width: 50px;
    height: 30px;
    display: flex;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    outline: 2px solid #F193B2;
    box-shadow: 0px 0px 10px #F193B2;
    position: relative;

    &:after {
        content: 'SCROLL';
        position: absolute;
        top: 140%;
        color: whitesmoke;
        letter-spacing: 1.5px;
        }

    .swipe-scroll {
        width: 10px;
        height: 5px;
        border-radius: 10px;
        background-color: #F193B2;
        box-shadow: 0px 0px 10px #F193B2;
        animation: hero-swipe-kfa 2s linear infinite;
        transform: translatex(50%);
        }

}

@keyframes hero-swipe-kfa { 
    0% {transform: translatex(50%);}
    50% {transform: translatex(-50%);}
}
    


.details-section{
    display: flex;
    flex-direction: column;
    margin: 9rem 0 0 0;
}

.details-intro h1{
    font-size: 2rem;
    margin: 1rem 0 0 0;
}

.details-intro p{
    font-size: 1rem;
    margin: 0.5rem 0 1rem 0;
}


.details-container{
    display: flex;
    flex-direction: row;
    flex: 1;
    background-color: #242323;
    width: 85vw;
    padding: 2rem;
    border-radius: 2rem;
}

.details-left{
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    /* align-items: center; */

    text-align: left;
    margin-left: 4vw;
}

.details-left h1{
    font-size: 2rem;
    margin: 0 0 0 0;
}

.details-left h2{
    font-size: 1.1rem;
    margin: 1rem 0 0 0;
}

.details-left p{
    font-size: 1.15rem;
    margin: 1rem 0 0 0;
}

.details-left h3{
    font-size: 1.2rem;
    margin: 1rem 0 0 0;
}

.details-left ul{
    font-size: 1.1rem;
    list-style-type: "- ";
    margin: 1rem 0 1rem 0;
    padding-left: 0;
}

.details-btn{
            display: flex;
            align-items: center;
            background: linear-gradient(to right, #EF97B4, #8BCCEC);
            cursor: pointer;
            border: 1.5px solid #8BCCEC;
            border-radius: 2rem;
            font-size: 1.3rem;
            padding: 0.7rem;
            color: #000000;
            transition: ease-in-out 0.3s;

            margin: 1rem 0rem 1rem 0.5rem;
        }

.details-btn:hover {  
            border-color: #EBF8FF;
            scale: 110%;
        }

.details-right{
    display: flex;
    flex: 1;
    max-width: 40vw;
    justify-content: center;
    align-items: center;
}

.details-right img{
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}


/* ------- Footer ------- */
footer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    text-align: center;
    color: #EBF8FF;
}