
@font-face {
    font-family: 'Britanica';
    src: url('../fonts/Britanica-Bold.woff2') format('woff2'),
        url('../fonts/Britanica-Bold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Britanica';
    src: url('../fonts/Britanica-Black.woff2') format('woff2'),
        url('../fonts/Britanica-Black.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Britanica';
    src: url('../fonts/Britanica-RegularCondensed.woff2') format('woff2'),
        url('../fonts/Britanica-RegularCondensed.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Madani';
    src: url('../fonts/Madani-SemiBold.woff2') format('woff2'),
        url('../fonts/Madani-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Britanica', sans-serif;
    font-weight: 700;
}



nav.navbar {
    padding-block: 20px;
    background: #26112e;
    box-shadow: 0 0 11px black;
    z-index: 2;
}

nav .navbar-brand img{
    width: 50px;
}

a.nav-link {
    color: white;
    margin: 0px 15px;
}

a.nav-link:hover {
    color: #c000ff;
}

section.hero{
    background: linear-gradient(180deg, #26112e 0%, #181019 100%);
    padding-top: 150px;
    position: relative;
    padding-bottom: 100px;
}

.navbar-nav .nav-link {
    font-weight: 400;
}


.navbar-dark .navbar-nav .nav-link:hover{
    color: #fff;
}

img.hero-sub{
    height: 20px;
    margin-bottom: 15px;
}

img.hero-text{
    width: 100%;
}

h1.hero-title {
    font-size: 66px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0px;
    font-weight: 700;
    font-family: 'Madani', sans-serif !important;
    letter-spacing: 1px;
}

small.hero-text-sub{
    font-size: 14px;
    color: white;
    margin-bottom: 30px;
    display: block;
}

.coin-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    margin: 50px;
    animation: float-1 6s ease-in-out infinite;
}

.coin-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    margin: 110px;
    transform: translatey(-20px) rotateY(180deg);
    animation: float-2 6s ease-in-out infinite;
}


.hero-right{
    position: relative;
}

@keyframes float-1 {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float-2 {
    0% {
        transform: translatey(-20px) rotateY(180deg);
    }
    50% {
        transform: translatey(0px) rotateY(180deg);
    }
    100% {
        transform: translatey(-20px) rotateY(180deg);
    }
}

.hero .container {
    z-index: 5;
}

.hero .clouds{
    position: absolute;
    margin-top: -150px;
    top: 0;
    right: 0;
}
.hero {
    overflow-x: hidden;
}

.hero .clouds img {
    width: 300px;
    opacity: 0.4;
    filter: blur(5px);
}

.cloud-1{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cloud-2{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cloud-3{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.clouds.cloud-1 img {
    width: 500px;
    filter: blur(10px);
    margin-bottom: -80px;
    animation: float-left 6s ease-in-out infinite;
    opacity: 0.25;
    margin-top: 40px !important;
}

.clouds.cloud-2 img {
    margin-left: -80px;
    animation: float-right 6s ease-in-out infinite;
}

.clouds.cloud-3 img {
    margin-right: -80px;
    animation: float-left 6s ease-in-out infinite;
}

@keyframes float-right {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes float-left {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0px);
    }
}

.hero .cloud-2 img {
    width: 344px;
    opacity: 0.2;
}

.btn {
    padding-inline: 24px;
    color: white;
    background: linear-gradient(90deg, #c000ff 0%, #4313ff 100%);
    border: none;
    box-shadow: 0 0 20px #c000ff5e;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
    border-radius: 10px;
    font-weight: 600;
}

.btn:hover {
    filter: brightness(1.2);
    color: white;

}

.btn i{
    margin-right: 10px;
}


section.features {
    background: #181019;
    z-index: 1;
    position: relative;
    padding-bottom: 100px;
}

.feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin: 30px;
    background: #161616;
    border: 1px solid #2e2d2f;
    border-radius: 15px;
    padding: 30px;
    color: white;
    min-height: 300px;
}
.w-auto{
    display: inline-flex !important;
}

.feature i {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0d0d0f;
    font-size: 36px;
    border-radius: 15px;
    color: #c000ff;
    text-shadow: 0 0 20px #c000ff91;
}

.feature h3 {
    font-size: 24px;
    margin: 20px 0px;
    font-family: 'Madani', sans-serif !important;
}

.feature p {
    font-size: 14px;
    text-align: center;
}

.section-title{
    font-size: 36px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

img.rocket{
    position: absolute;
    left: 0;
    margin-top: 40px;
    animation: float-rocket 6s ease-in-out infinite;
}

img.verify{
    position: absolute;
    right: 0;
    margin-top: 40px;
    animation: float-verify 6s ease-in-out infinite;
}

@keyframes float-rocket {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float-verify {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(20px);
    }
    100% {
        transform: translatey(0px);
    }
}


section.shop {
    background: #181019;
    z-index: 1;
    position: relative;
    padding-bottom: 100px;
}


.shop-search {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #161616;
    border: 2px solid #2a282a;
    border-radius: 15px;
    margin-bottom: 80px;
}

.shop-search input {
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}

.shop-search input:active, .shop-search input:focus {
    outline: none;
    background: transparent;
    border: none;
    box-shadow: none;
    color: white;
}
.shop-search i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0d0d0f;
    color: #c000ff;
    text-shadow: 0 0 20px #c000ff91;
    border-radius: 6px;
    margin-right: 10px;
}

.product {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background: #161616;
    border: 1px solid #2e2d2f;
    border-radius: 15px;
    padding: 25px;
    color: white;
    margin-bottom: 30px;
}


.product img{
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 30px;
}

.product h3, .product p {
    padding-left: 2px; 
}



footer{
    background: linear-gradient(180deg, #181019 0%, #26112e 100%);
    color: white;
}


.footer-imgs{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-imgs img{
    height: 80px;
    margin-right: 40px;
}

footer hr {
    border: 2px solid #211826;
    margin: 20px 0px;
}

ul li {
    list-style: none;
}

footer .social{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

footer .social a{
    color: white;
    padding-block: 30px;
}

footer .social a:hover{
    color: #c000ff;
    text-decoration: none;
}

footer .buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

footer .buttons a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #0d0d0f;
    color: #c000ff;
    text-shadow: 0 0 20px #c000ff91;
    font-size: 26px;
    border: 2px solid #2e2d2f;
    transition: 0.3s;
}

footer .buttons a:hover{
    color: white;
    background: #c000ff;
    border: 2px solid #c000ff;
    text-decoration: none;
}

.hero a.btn:hover{
    transform: translateX(20px);

}


@media screen and (max-width: 768px) {
        
    nav.navbar {
        padding-block: 0px;
        box-shadow: 0 0 11px #00000047;
    }

    section.hero {
        padding-top: 40px;
        
    }

    .coin-2{
        margin: 55px 0px 0px 8px;
    }

    .coin-1{
        margin: 22px;
    }

    img.verify{
        margin-top: 400px;
    }

    .footer-imgs img {
        height: 32px;
        margin-right: 20px;
    }

    footer .buttons {
        justify-content: center;
        padding: 20px;
    }


    footer .social {
        justify-content: center;
        align-items: center;
    }

}


p.footer-text {
    font-weight: 400;
}