@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: primary_font;
    src: url(../font/SweetieBubbleGum-Regular.ttf);
}

@font-face {
    font-family: sec_font;
    src: url(../font/CCMaladroit.ttf);
}

@font-face {
    font-family: Candy;
    src: url(../font/CandyBeans.otf);
}

h1 {
    font-family: primary_font;
}



body {
    font-family: sec_font;
    font-size: 16px;
    font-weight: 800;
}

.header {
    background-color: #C2C2C2;
    background-image: url(../images/hero-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0vw 5vw;
    position: relative;
}

.main {
    margin-top: -10vw;
    margin-bottom: 5vw;
}

.header h1 {
    font-size: 15vw;
    color: #F0AD05;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 1px;
    text-transform: uppercase;
    text-align: center;
}

.header h2 {
    font-size: 2vw;
    text-align: center;
    margin-top: -4vw;
}

.header_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    margin-top: 5vw;
    position: relative;
    z-index: 99;
}

.header .buy_now {
    border: 2px solid #000;
    padding: 0.7vw 3vw;
    background-color: #F1AF06;
    font-family: sec_font;
    font-size: 2vw;
    transform: rotate(5deg);
}

.header a img {
    width: 100%;
    max-width: 5vw;
}

.header a {
    transition: all 0.5s ease-in-out;
}

.header a:hover {
    transform: scale(1.1);
}

.header .main-img {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.header .main-img img {
    width: 100%;
    max-width: 25vw;
}

.header .main-img .center {
    width: 100%;
    max-width: 45vw;
    position: relative;
    z-index: -0;
    top: 17vw;
}

h1 {
    letter-spacing: 2px;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    right: 5vw;
    width: 100%;
}

nav .links {
    display: flex;
    align-items: center;
    gap: 1vw;
}

nav .links a img {
    width: 100%;
    max-width: 5vw;
}



/* about  */
.about {
    background-image: url(../images/about.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10vw 10vw 0vw 10vw;
    position: relative;
    margin-top: -10vw;
}

.about .left img {
    width: 100%;
    max-width: 30vw;
}

.about .right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about .right h1 {
    font-size: 5vw;
    color: #F0AD05;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 1px;
    text-transform: uppercase;
    text-align: center;
    line-height: 5vw;
}

.about .right h2 {
    margin-top: 2vw;
    font-family: sec_font;
}

@keyframes moveSky {
    0% {
        transform: translateX(0);
        filter: blur(0px);
    }

    50% {
        transform: translateX(calc(80vw - 10vw));
        /* Moves to the right edge */
        filter: blur(4px);
    }

    100% {
        transform: translateX(0);
        filter: blur(0px);
    }
}

.sky-animation {
    animation: moveSky 10s ease-in-out infinite;
}


/* main bg  */
.main-bg {
    background-color: #26201E;
    background-image: url(../images/main-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 140vw;
    padding: 0vw 5vw;
}

.tokenomics {
    padding-top: 17vw;
}

.tokenomics h1 {
    color: #fff;
    font-size: 6vw;
    text-transform: uppercase;
    text-align: center;
}

.ca {
    padding: 1.5vw 1vw;
    border-radius: 16px;
    text-align: center;
    background-color: #fff;
    width: 100%;
    max-width: 45vw;
    margin: auto;
    margin-top: 2vw;
    margin-bottom: 2vw;
    box-shadow: 0px 7px 0px 0px rgba(162, 180, 197, 1);
}

.ca span {
    background-color: #37383C;
    color: #fff;
    padding: 1vw;
    border-radius: 12px;
    cursor: pointer;
}

.tokenomics .box {
    border-radius: 19px;
    border: 5px solid #8F8F8F;
    padding: 1vw;
}

.tokenomics .box h4 {
    background-color: #FFD866;
    text-align: center;
    padding: 0.5vw;
    font-size: 2vw;
}

.tokenomics .box h2 {
    font-size: 2vw;
    text-align: center;
    color: #fff;
    margin-top: 1vw;
}

/* roadmap  */
.roadmap {
    padding-top: 20vw;
    width: 100%;
    max-width: 60vw;
    margin: auto;
}

.roadmap h1 {
    color: #F0AD05;
    font-size: 6vw;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    
    /* Inner black stroke */
    -webkit-text-stroke: 1px black; /* Stroke inside the text */
    -webkit-text-fill-color: #F0AD05; /* Fills the text color */

    /* Outer black shadow */
    text-shadow: 
        1px 1px 0 black,
       -1px 1px 0 black,
        1px -1px 0 black,
       -1px -1px 0 black; /* Creates the black shadow around text */
}


.roadmap .box {
    background-color: #26201E;
    border-radius: 20px;
    box-shadow: 0px 6px 0px 0px #8F8F8F;
    padding: 1vw 2vw;
    display: flex;
    align-items: center;
    gap: 5vw;
    color: #fff;
    margin-bottom: 3vw;
}


.roadmap .number {
    width: 5vw;
    height: 5vw;
    border-radius: 12px;
    box-shadow: 0px 6px 0px 0px #000000;
    background-color: #FEBD40;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2vw;
}

.roadmap .list ul li {
    font-size: 1.2vw;
}


footer {
    margin-top: 5vw;
    position: relative;
    width: 100%;
}

footer .center h1 {
    color: #fff;
    font-size: 3vw;
    text-transform: uppercase;
    text-align: center;
    font-family: Candy;
    letter-spacing: 1px;
}

footer .center {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;

}

footer .center p {
    font-family: Candy;
    text-align: center;
    color: #fff;
    font-size: 1.2vw;
    letter-spacing: 1px;
}

footer .center a {
    color: #B3B3B3;
    font-size: 1.2vw;
    margin-top: 5vw;
    margin-bottom: 3vw;
}


footer .center h4 {
    color: #B3B3B3;
    font-size: 0.6vw;
}


.blinking-bounce-left {
    animation: blinkingBounceleftright 2s infinite;
}

@keyframes blinkingBounceleftright {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    25% {
        transform: translateX(20px);
        opacity: 0.5;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        transform: translateX(10px);
        opacity: 0.5;
    }
}



.blinking-bounce {
    animation: blinkingBounce 2s infinite;
}

@keyframes blinkingBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    25% {
        transform: translateY(-20px);
        opacity: 0.5;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        transform: translateY(-10px);
        opacity: 0.5;
    }
}


.flipping-blink {
    animation: flippingBlink 7s infinite;
}

@keyframes flippingBlink {

    0%,
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }

    25% {
        transform: rotateY(90deg);
        opacity: 0.5;
    }

    50% {
        transform: rotateY(180deg);
        opacity: 1;
    }

    75% {
        transform: rotateY(270deg);
        opacity: 0.5;
    }
}


@media screen and (max-width: 480px) {
    .about {
        padding: 10vw 10vw 0vw 10vw;
    }

    .about .right h2 {
        font-size: 1.5vw;
    }

    .tokenomics .box {
        border-radius: 8px;
        border: 2px solid #16FBFB;
        padding: 2vw;
    }

    .ca {
        width: 100%;
        max-width: 100%;
        font-size: 2.3vw;
        padding: 3vw 1vw;
        box-shadow: 0px 3px 0px 0px rgba(162, 180, 197, 1);
        margin-top: 2vw;
        margin-bottom: 4vw;

    }

    .roadmap {
        padding-top: 10vw;
        width: 100%;
        max-width: 100%;
        margin: auto;
    }

    .roadmap .list ul li {
        font-size: 2vw;
    }

    .roadmap .box {
        border-radius: 20px;
        padding: 1.5vw 5vw;
        display: flex;
        align-items: center;
        gap: 5vw;
        color: #fff;
        margin-bottom: 3vw;
    }

    .main-bg {

        height: 145vw;
    }

    footer {
        margin-top: 8vw;
    }

    footer .center a {

        margin-bottom: 1vw;
    }
   
}
@media(max-width: 600px) {
     .ft-content {
        width: 100% !important;
        max-width: 130px !important;
    }
    .lft {
        position: absolute;
        left: -21px !important; 
        top: 36px !important;
        max-width: 20vw;
    }
    .rght {
        position: absolute;
        right: -21px !important;
        top: 36px !important;
        max-width: 20vw;
    }
}


.ft-content {
    width: 100%;
    max-width: 400px;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 50%);
}
.lft {
    position: absolute;
    left: -55px;
    top: 10px;
    max-width: 20vw;
}
.rght {
    position: absolute;
    right: -55px;
    top: 10px;
    max-width: 20vw;
}