@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root{
    --logo-color: #01fb65;
    --logo-bg: #101d14;
}

html, body{
    padding: 0;
    margin: 0;
    color: white;
    background: linear-gradient(to bottom, #000000, #373737);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-behavior: smooth;
}
*{
    font-family: 'Manrope';
    font-weight: 700;
}

.font-gfx{
    font-family: 'Tektur' !important;
    font-weight: 600;
}

nav.navbar{
    background-color: #101d14;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 10px;
    padding: 5px;
    margin: 10px 10px 0 10px;
    border-radius: 8px;
    padding-inline: 10px !important;
}
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img{
    height: 50px;
    width: 50px;
    border-radius: 8px;
}
.buttons-dl{
    margin-top: 10px;
}
#main-hero .link-button{
    background-color: #101d14;
    padding: 10px;
    border-radius: 10px;
    color: #01fb65;
    text-decoration: none;
    padding-inline: 20px !important;
    margin-left: 10px;
    font-size: 20px;
}

#main-hero{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
#main-hero h1{
    font-size: 10vw;
    line-height: 0;
    animation: showUp 0.8s ease;
}
#main-hero::selection{
    background-color: black;
    color: #01fb65;
}
.mobile-app::selection{
    background-color: #01fb65;
    color: black;
}
.mobile-app{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3em;
    background-color: black;
    flex-direction: row;
}
.mobile-app .mobile-left img{
    height: 500px;
    width: 500px;
    border-radius: 20px;
}
.mobile-app .mobile-right h3{
    font-size: 3.5vw;
    line-height: 1px;
}
.mobile-app .mobile-right p{
    width: 94%;
}
.mobile-right{
    margin-left: 1em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.mobile-app:nth-child(even){
    flex-direction: row-reverse;
}
.footer{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    flex-wrap: wrap;
}
.footer-top > .links{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-bottom{
    padding: 10px;
}
label{
    color: #01fb65;
    margin-bottom: 5px;
}
.link-dload, .link-social, .link-email{
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.link-nd{
    text-decoration: none;
    color: white;
    /* padding: 5px; */
    line-height: 10px;
}

.link-nd:hover{
    color: #01fb65;
    line-height: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.link-nd:active{
    text-decoration: underline;
    color: #01fb65;
    line-height: 10px;
    display: inline-block;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.link-email{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.link-email label{
    margin-bottom: 10px;
}
i.bi{
    margin-right: 10px;
}

::-webkit-scrollbar {
  width: auto; 
}

::-webkit-scrollbar-track {
  background: #000000; 
}

::-webkit-scrollbar-thumb {
  background-color: #01fb65; 
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #00cc00;
}

::-webkit-scrollbar-thumb:active {
  background-color: #009900;
}

.hr{
    width: 80%;
    height: 1px;
    border: none;
    outline: none;
    background-color: #5a5a5a;
}

* {
  scrollbar-color: #01fb65 #000000; 
  scrollbar-width: auto;
}

#install{
    display: flex;
    padding: 2em;
    background-color: #000000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#install .card-container {
    display: flex;
    flex-wrap: wrap;
}

#install .card-item{
    background-color: #1e1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
    padding-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

#install .card-item .link-button{
    background-color: #101d14;
    color: #01fb65;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 17px;
}

#install img{
    height: 300px;
    width: 300px;
    background-color: white;
}

.email{
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2em;
}

.email input{
    background-color: #000000;
    font-size: 20px;
    color: white;
    border-radius: 10px;
    outline: none;
    border: 1px solid #01fb65;
    padding: 10px;
}

.email .link-button{
    background-color: #101d14;
    padding: 10px;
    border-radius: 10px;
    color: #01fb65;
    text-decoration: none;
    padding-inline: 20px !important;
    margin-left: 10px;
    font-size: 20px;
    border: none;
    margin-top: 5px;
}

.privacy_policy{
    background-color: black;
    padding: 2em;
    text-align: center;
}

.privacy_policy p{
    padding: 3em;
    text-align: left;
}

.link-ft{
    color: #01fb65;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1130px) { /* laptop */
    .mobile-app .mobile-left img {
        height: 300px;
        width: 300px;
        border-radius: 20px;
    }
}

@media (max-width: 700px) { /* tablet */
    .mobile-app .mobile-left img {
        height: 250px;
        width: 250px;
        border-radius: 20px;
    }
}

@media (max-width: 515px) { /* text break */
    .mobile-app .mobile-left img {
        height: 300px;
        width: 300px;
        border-radius: 20px;
    }
     .mobile-app{
        flex-wrap: wrap;
        justify-content: center;
     }
}

@media (max-width: 400px){ /* mobile */
    .mobile-app .mobile-right h3{
        font-size: 7.5vw;
        line-height: 1px;
    }
    .logo img {
        height: 40px;
        width: 40px;
        border-radius: 8px;
    }
    .footer-top > .links{
        flex-direction: column;
    }
    .footer-top{
        flex-direction: column;
    }
    #main-hero .link-button{
        font-size: 15px;
    }
    #main-hero h1{
        font-size: 12vw;
        line-height: 0;
    }
}

@keyframes showUp {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}