@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Gilroy-Regular;
    src: url(/assets/font/Gilroy-Regular.ttf);
}

@font-face {
    font-family: Gilroy-Medium;
    src: url(/assets/font/Gilroy-Medium.ttf);
}

@font-face {
    font-family: Gilroy-Light;
    src: url(/assets/font/Gilroy-Light.ttf);
}

@font-face {
    font-family: Gilroy-Bold;
    src: url(/assets/font/Gilroy-Bold.ttf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1 {
    font-family: Gilroy-Bold;
}

body {
    font-family: Gilroy-Regular;
    font-weight: 400;
    color: #fff;
    background-color: #000;

}

p {
    font-size: 1.5vw;
    font-family: Gilroy-Light;
}



/* Main Navbar Styles */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav h2 {
    font-family: Gilroy-Bold;
    font-size: 2vw;
}

nav .social {
    display: flex;
    align-items: center;
    gap: 4vw;
}

nav .links {
    display: flex;
    align-items: center;
    gap: 3vw;
    font-size: 1.5vw;
}

nav .social-links {
    display: flex;
    align-items: center;
    gap: 1vw;
}

nav .social-links img {
    width: 3.5vw;
    transition: all 0.3s ease-in-out;
}

nav .social-links img:hover {
    transform: scale(1.1);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Sidebar for Small Screens */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 9999;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidebar img {
    width: 10vw;
}

/* Show hamburger menu and hide links for small screens */
@media screen and (max-width: 768px) {

    .links,
    .social-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

.header {
    padding: 2vw 5vw;
    position: relative;
}

.header::before {
    content: "";
    display: block;
    position: absolute;
    right: 0vw;
    bottom: -30vw;
    width: 40vw;
    height: 40vw;
    background-color: #6C1D25;
    border-radius: 50%;
    filter: blur(10vw);
}

.header h1 {
    font-size: 5.5vw;
    line-height: 6vw;
}

.header .buy {
    width: 12vw;
    transition: all 0.3s ease-in-out;
}

.header .buy:hover {
    transform: scale(1.1);
}

.header .chart {
    display: flex;
    align-items: center;
    font-size: 2vw;
    font-family: Gilroy-Bold;
    gap: 1vw;
    transition: all 0.3s ease-in-out;
}

.header .chart svg {
    transition: all 0.3s ease-in-out;
}

.header .chart:hover svg {
    transform: translateX(10px);
}

.header .main img {
    width: 70%;
    margin: auto;
    animation: updown 3s infinite ease-in-out;
}

.updown {
    animation: updown 3s infinite ease-in-out;
}


@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}



/* links_section  */
.links_section {
    position: relative;
    padding: 5vw;
    width: 100%;
}

.links_section .main_links {
    display: flex;
    position: absolute;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    left: 10%;
    top: 7vw;
}

.links_section .main_links img {
    width: 13vw;
    transition: all 0.3s ease-in-out;
}




.links_section .main_links img:hover {
    transform: scale(1.1);
}


/* .about  */
.about {
    padding: 5vw 0vw;
    display: flex;
    align-items: center;
    justify-content: end;
}

.about img {
    width: 35%;
}

.about .main {
    text-align: center;
    margin-top: -5vw;
}

.about .main span {
    font-size: 1.2vw;
    color: #EA805D;

}

.about .main h1 {
    font-size: 4vw;
    line-height: 4vw;
    margin-bottom: 2vw;
    margin-top: 1vw;
}

.about .main p {
    opacity: 0.8;
    font-size: 1.2vw;
}

.readbook {
    padding: 0vw 5vw 0vw 3vw;
    margin-top: -11vw;
    position: relative;
    z-index: 99;
}

.readbook img {
    width: 100%;
}

.slider {
    position: relative;
}

.slider::before {
    content: "";
    display: block;
    position: absolute;
    left: 0vw;
    bottom: -20vw;
    width: 40vw;
    height: 40vw;
    background-color: #6C1D25;
    border-radius: 50%;
    filter: blur(10vw);
}

.home_slider-left {
    animation: slide-left 20s linear infinite;
    display: flex;
    align-items: start;
    gap: 1vw;
    rotate: -3deg;
}

.home_slider-left img {
    width: 20%;
}

.home_slider-right {
    animation: slide-right 20s linear infinite;
    gap: 2vw;
    display: flex;
    align-items: start;
    gap: 1vw;
    rotate: -3deg;
    margin-top: 2vw;

}

.home_slider-right img {
    width: 20%;
}


/* tokenomice  */
.tokenomice {
    padding: 5vw;
    text-align: center;
    margin-top: 5vw;
}

.tokenomice h1 {
    font-size: 5vw;
}

.tokenomice p {
    width: 70%;
    margin: 2vw auto;

}

.tokenomice p span {
    color: #fff;
    font-family: Gilroy-Medium;
}

.tokenomice .cummunty {
    width: 15vw;
    margin: auto;
}

.tokenomice .box {
    background-image: radial-gradient(circle, #2f2e2e, #282727, #212021, #1a1a1a, #131313);
    padding-bottom: 3vw;
    border-radius: 1vw;
    overflow-y: hidden;
}

.tokenomice .box h2 {
    font-family: Gilroy-Bold;
    font-size: 2vw;
}

.tokenomice .center {
    transform: translateY(-5vw);
}

.roadmap {
    padding: 5vw;
    margin-top: 5vw;
}

.roadmap h1 {
    font-size: 5vw;
    text-align: center;
}

.roadmap h2 {
    font-size: 3vw;
    font-family: Gilroy-Bold;
}

.roadmap ul {
    margin-left: 1vw;
    margin-top: 1vw;
}

.roadmap ul li {
    font-size: 1.2vw;
    opacity: 0.8;
}


.roadmap .phase-1 img {
    animation: fadeInOut 4s infinite ease-in-out;
}

.road-line {
    width: 4vw;
    left: 42vw;
    position: absolute;
    top: -3vw;
}

.left-right {
    animation: leftright 3s infinite ease-in-out;
}

@keyframes leftright {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
        /* Adjust the distance you want it to move */
    }

    100% {
        transform: translateX(0);
    }
}


@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}


/* Keyframes for sliding left */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Keyframes for sliding right */
@keyframes slide-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


footer {
    background-color: #000000;
    border: 1px solid #FFFFFF33;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 5vw 5vw 10vw 5vw;
    margin-top: -5vw;
    position: relative;
}

footer::after {
    content: "";
    display: block;
    position: absolute;
    left: 0vw;
    bottom: 0vw;
    width: 100%;
    height: 8vw;
    background-image: url("../images/hand.png");
    background-repeat: no-repeat;
    z-index: -0;
}

footer::before {
    content: "";
    display: block;
    position: absolute;
    right: -85%;
    bottom: 0vw;
    width: 100%;
    height: 8vw;
    background-image: url("../images/footer-2.png");
    background-repeat: no-repeat;
    z-index: -0;
}

footer h1 {
    font-size: 3vw;
}

footer h2 {
    font-size: 2.5vw;
    font-family: Gilroy-Bold;
    margin-top: 4vw;
}

footer p {
    opacity: 0.7;
    font-size: 1.2vw;
}

footer .social {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

footer .social-links {
    display: flex;
    align-items: center;
    gap: 2vw;
    margin-top: 2vw;
}

footer .social-links img {
    width: 4vw;
    transition: all 0.3s ease-in-out;
}

footer .social-links img:hover {
    transform: scale(1.1);
}

footer .social a {
    font-size: 1.5vw;
}

footer .telegram {
    width: 8vw;
    margin-top: 3vw;
}

@media screen and (max-width: 480px) {

    html,
    body {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }


    .road-line {
        width: 6vw;
        left: 42vw;
        position: absolute;
        top: -3vw;
    }

    .roadmap ul li {
        font-size: 2.5vw;
        opacity: 0.8;
    }

    p {
        font-size: 2.3vw;
    }

    nav h2 {
        font-family: Gilroy-Bold;
        font-size: 4vw;
    }


    nav .links {
        font-size: 2.5vw;
        display: none;
    }



    nav .social-links img {
        width: 5vw;
        display: none;
    }

    .header {
        padding: 5vw;
    }

    .header .main img {
        width: 60%;
        margin: auto;
        margin-top: 8vw;
    }

    .header h1 {
        font-size: 8vw;
        line-height: 8vw;
        text-align: center;
    }

    .header p {
        text-align: center;
        font-size: 3vw;
    }

    .header .buy {
        width: 25vw;
        transition: all 0.3s ease-in-out;
    }


    .header .chart {
        font-size: 5vw;
        gap: 4vw;
    }

    .about {
        margin-top: 10vw;
    }

    .about .main {
        margin-top: -14vw;
    }


    .about .main span {
        font-size: 1.5vw;
        color: #EA805D;

    }


    .about .main p {
        opacity: 0.8;
        font-size: 1.7vw;
    }



    footer h1 {
        font-size: 5vw;
    }

    footer h2 {
        font-size: 3.5vw;
        margin-top: 2vw;
    }

    footer p {
        opacity: 0.7;
        font-size: 2.5vw;
    }

    footer .social {
        display: flex;
        flex-direction: column;
        gap: 1vw;

    }

    footer .social a {
        font-size: 2.5vw;

    }



    footer .social-links img {
        width: 6vw;
        transition: all 0.3s ease-in-out;
    }


    footer .telegram {
        width: 15vw;
        margin-top: 3vw;
    }

    footer::after {
        content: "";
        display: block;
        position: absolute;
        left: -5vw;
        bottom: vw;
        width: 100%;
        height: 10vw;
        background-image: url("../images/hand.png");
        background-repeat: no-repeat;
        z-index: -0;
    }

    footer::before {
        content: "";
        display: block;
        position: absolute;
        right: -42%;
        bottom: 0vw;
        width: 100%;
        height: 15vw;
        background-image: url("../images/footer-2.png");
        background-repeat: no-repeat;
        z-index: -0;
    }
}