@font-face {
    font-family: minecraft;
    src: url(./Fonts/Minecraft.ttf);
}

* {
    box-sizing: border-box;
}

body, html{
    margin: 0;
    padding: 0;
    font-family: minecraft;
    overflow-x: hidden;
}

body{
    padding-top: 70px;
}

.navbar{
    background-color: #001400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-left{
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-center img{
    width: 50px;
    height: 50px;
    margin: 0px;
    vertical-align: middle;
}

.nav-left a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.nav-left a:hover{
    color: #00bf00;
}

.nav-right a{
    border: 1px solid #00bf00;
    background-color: #00bf00;
    padding: 10px 25px;
    box-shadow: 5px 5px 1px #007700;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.nav-right a:hover{
    color: #ffffff;
    border: 1px solid #007700;
    background-color: #00bf00;
}

.hero-section{
    width: 100%;
    height: 70vh;
    background-color: #00bf00;
    display: flex;
    align-items: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.hero-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./Assets/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: 1;
}

.hero-left{
    flex: 1;
    color: white;
    z-index: 2;
    margin-left: 200px;
}

.hero-left h1{
    font-size: 5.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gold-text{
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-left p{
    font-size: 1.5rem;
    margin: 0 0 30px 0;
    line-height: 1.4;
    max-width: 650px;
}

.hero-button{
    display: inline-block;
    border: 1px solid #007700;
    background-color: #007700;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 5px 5px 1px #005500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-button:hover{
    color: #ffffff;
    border: 1px solid #005500;
    background-color: #007700;
    transform: translateY(-2px);
    box-shadow: 7px 7px 1px #005500;
}

.hero-right{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.hero-character{
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    margin-right: -50px;
}

.seperator{
    width: 100%;
    height: 40px;
}

.moving-text{
    background-image: url(./Assets/hero-seperator.png);
    background-size: cover;
    background-repeat: repeat-x;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 0px;
}

.scroll-content{
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
}

.moving-text h1{
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-size: 1.5rem;
    white-space: nowrap;
}

.moving-text h1 img{
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.moving-text img{
    width: 40px;
    height: 40px;
    margin: 0 20px;
    margin-top: -5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about{
    padding: 30px 0px;
    padding-bottom: 50px;
    background-color: #f8f8f8;
}

.about h1{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #333;
    line-height: 1.2;
}

.about h1 span{
    color: #FFD700;
}

.about-flex{
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.about-left{
    flex: 1;
    padding: 0px 40px;
    padding-top: 0px;
    padding-bottom: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-left h2{
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-left p{
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-right{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-right img{
    width: 555px;
    height: 530px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}


.chart{
    background-color: #00bf00;
    width: 100%;
    padding: 0px 0px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.chart-flex{
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1800px;
    width: 100%;
}

.chart-left,
.chart-right{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-center{
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-side-img-1{
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 0px;
    margin-bottom: -155px;
}

.chart-side-img-2{
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 0px;
    margin-bottom: -106px;
}

.dexscreener-chart{
    border-radius: 5px;
}

#moving-text-about{
    margin-top: 0px;
}

.community{
    background-color: #f8f8f8;
    padding: 80px 50px;
}

.community-container{
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.community-left{
    flex: 1;
}

.community-left h1{
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.community-left p{
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
}

.social-icons{
    display: flex;
    gap: 20px;
}

.social-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #00bf00;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,191,0,0.3);
}

.social-btn:hover{
    background-color: #007700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,191,0,0.4);
}

.community-right{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-img{
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.footer{
    background-color: #001400;
    color: #fff;
    padding: 40px 50px;
    border-top: 2px solid #00bf00;
}

.footer-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.footer-left{
    flex: 1;
}

.footer-left h1{
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 2rem;
    color: #fff;
}

.footer-left h1 img{
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transform: translateY(-5px);
}

.footer-center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-center a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-center a:hover{
    color: #00bf00;
}

.footer-right{
    display: flex;
    gap: 15px;
}

/* Hide mobile menu elements on desktop and tablet */
.mobile-menu-toggle,
.mobile-menu{
    display: none;
}


@media (max-width:1450px){
    .hero-left{
        margin-left: 0px;
    }

    .about{
        padding: 20px 40px;
    }

    .about-left{
        padding-left: 100px;
    }

    .chart-side-img-2{
        margin-bottom: -120px;
    }
}


@media(max-width:700px){
    /* Reduce navbar height on mobile */
    .navbar{
        padding: 15px 20px;
    }

    /* Hide desktop navigation */
    .nav-left,
    .nav-right{
        display: none;
    }

    /* Center the logo on mobile */
    .nav-center{
        position: static;
        transform: none;
        left: auto;
    }

    .nav-center h1{
        font-size: 1.5rem;
    }

    .nav-center img{
        width: 25px;
        height: 25px;
    }

    /* Adjust body padding for smaller navbar */
    body{
        padding-top: 60px;
    }

    /* Mobile menu toggle button */
    .mobile-menu-toggle{
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .mobile-menu-toggle span{
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Mobile menu */
    .mobile-menu{
        text-align: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #001400;
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .mobile-menu.active{
        right: 0;
    }

    .mobile-nav-links{
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .mobile-nav-links a{
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .mobile-nav-links a:hover{
        color: #00bf00;
    }

    .mobile-social{
        display: flex;
        gap: 20px;
    }

    /* Burger animation */
    .mobile-menu-toggle.active span:nth-child(1){
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2){
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3){
        transform: rotate(45deg) translate(-5px, -6px);
    }


    .hero-character{
        display: none;
    }

    .hero-section{
        justify-content: center;
    }

    .hero-left{
        text-align: center;
        flex: none;
        width: 100%;
    }

    .hero-left h1{
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.2;
    }

    .hero-left h1 br{
        display: block;
    }

    .hero-left h1 .gold-text{
        display: block;
        margin-top: 10px;
    }

    .about{
        padding: 40px 20px;
    }

    .about h1{
        font-size: 1.9rem;
        margin-bottom: 30px;
    }

    .about-flex{
        flex-direction: column;
        gap: 30px;
    }

    .about-left{
        padding: 20px;
        text-align: center;
    }

    .about-left h2{
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-left p{
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-right img{
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .chart-left{
        display: none;
    }

    .chart-right{
        display: none;
    }

    .community{
        padding-top: 50px;
    }

    .community-right{
        display: none;
    }

    .community-left h1{
        font-size: 2.5rem;
        text-align: center;
    }

    .community-left p{
        text-align: center;
    }

    .social-icons{
        justify-content: center;
    }













    .footer{
        padding: 20px;
    }

    .footer-container{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-left{
        flex: none;
    }

    .footer-left h1{
        font-size: 1.5rem;
    }

    .footer-left h1 img{
        width: 30px;
        height: 30px;
    }

    .footer-center{
        display: none;
    }

    .footer-right{
        justify-content: center;
    }

}


@media(max-width:700px){
    .hero-left h1{
        font-size: 2.1rem;
    }
}