@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: ClashDisplay;
    src: url(/assets/font/ClashDisplay-Bold.ttf);
}

h1,
h2 {
    font-family: ClashDisplay;
}

html {
    scroll-behavior: smooth;
}



body {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 400;
    color: #000;

}

p {
    font-size: 1.3vw;
    color: #7B7B7B;
}

/* General Styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 3vw;
}

nav .logo {
    width: 15vw;
}

.nav_links,
.links {
    display: flex;
    align-items: center;
    gap: 2vw;
    font-weight: 600;
}

.links {
    gap: 1vw;
}

.btnn1 {
    background: #101210;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 9px 25px;
    font-size: 15px;
    border-radius: 6px;
}

.btnnn {
    background: linear-gradient(90deg, #bbf737 0%, #ffee62 100%);
    border: none;
    padding: 9px 25px;
    font-size: 15px;
    border-radius: 6px;
}



/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 60vw;
    height: 100vh;
    background: #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

.sidebar .close {
    align-self: flex-end;
    font-size: 24px;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000;
}

.header {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

}



.header {
    background-image: url("/assets/images/header-bg.png");
    background-color: #F2F2F2;
    padding: 5vw;
}

.header h1 {
    font-size: 5vw;
    line-height: 5vw;
}

.grident_text {
    background: linear-gradient(#BBF737, #FFEE62);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 0.2vw;
}

/* slider */

marquee {
    background-color: #000;
    padding: 2vw 0vw;
}

.slider {

    display: flex;
    align-items: center;
    gap: 3vw;
}

.slider img {
    width: 20vw;
}


.about {
    padding: 5vw;

}

.about h2 {
    font-size: 2vw;
    color: #BBF838;
}

.about h1 {
    font-size: 3vw;
}

.about .box {
    background-image: linear-gradient(to right, #BBF73799, #BBF73733);
    padding: 1.5vw;
    border-radius: 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vw;
    transition: all 0.3s ease-in-out;
}

.about .box:hover {
    background-image: linear-gradient(to left, #BBF73799, #BBF73733);
}

.about .box img {
    width: 4vw;
}

.about .box .iner {
    display: flex;
    gap: 1vw;
}

.about .box .iner h1 {
    font-size: 2vw;
}

.about .box .iner p {
    font-size: 1.2vw;
    color: #7B7B7B;
}

.about .box .arrow {
    width: 1.5vw;
}

/* - ======================== Loading overlay ============================*/
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Loader animation */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #BBF737;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.feature {
    padding: 8vw 3vw;
    text-align: center;
    background-image: radial-gradient(circle, #181b18, #141817, #111414, #0e0f10, #090909);
    color: #fff;
    position: relative;
}

.feature h1 {
    font-size: 2vw;
}

.feature .feature-single-box {
    padding: 40px 52px 28px;
    border-radius: 10px;
    background: linear-gradient(0deg,
            rgba(187, 247, 55, 0) 0%,
            rgba(187, 247, 55, 0.058823529411764705) 100%);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
}

.feature .feature-single-box h2 {
    font-size: 1.5vw;
}

.feature .feature-single-box img {

    width: 7vw;
}

.feature .feature-single-box:before {
    position: absolute;
    content: "";
    border-top: 1px solid rgba(187, 248, 56, 0.5);
    border-bottom: 1px solid rgba(187, 248, 56, 0.5);
    transform: scale(0, 1);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    border-radius: 5px;
}

.feature .feature-single-box:after {
    position: absolute;
    content: "";
    border-left: 1px solid rgba(187, 248, 56, 0.5);
    border-right: 1px solid rgba(187, 248, 56, 0.5);
    transform: scale(1, 0);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    border-radius: 5px;
}

.feature .feature-content h2 {
    color: #fff;
}

.feature .feature-content p {
    font-size: 18px;
}

.feature .feature-single-box:hover::before {
    transform: scale(1);
}

.feature .feature-single-box:hover::after {
    transform: scale(1);
}

.feature .feature-single-box:hover {
    margin-top: 0;
}


/* trading_journey */
.trading_journey {
    padding: 3vw 0vw 3vw 5vw;
    position: relative;
}

.trading_journey h1 {
    font-size: 2.5vw;
    width: 70%;
    line-height: 2.6vw;
}

.flower {
    position: absolute;
    right: 10vw;
    top: 5vw;
    width: 3vw;
    animation: rotateFlower 3s linear infinite;
}

@keyframes rotateFlower {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.supply {
    background-image: linear-gradient(to right, #BBF73799, #BBF73733);
    padding: 1vw 15vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.supply h2 {
    font-size: 3vw;
}

.roadmap {
    padding: 5vw 20vw;
}

.roadmap h2 {
    font-size: 1.5vw;
    color: #BBF838;
    text-align: center;
}

.roadmap h1 {
    font-size: 3vw;
    text-align: center;
}



.phase {
    animation: swing 10s ease-in-out infinite;
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0deg);

    }
}

.roadmap .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}



.join {
    background-image: linear-gradient(to right, #BBF737, #FFEE62);
    padding: 3vw;
    text-align: center;
    border-radius: 1vw;
    width: 70%;
    margin: auto;
    position: relative;
    z-index: 99;
}

.join h1 {
    font-size: 3vw;
    margin-bottom: 2vw;
}

footer {
    padding: 10vw 5vw 3vw 5vw;
    margin-top: -5vw;
    background-color: #000;
}

footer .copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2vw;

}

footer .copy .f_links {
    display: flex;
    align-items: center;
    gap: 2vw;
    color: #7B7B7B;
}