@font-face {
    font-family: 'BOOWIE';
    src: url('Image/BOOWIE.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #222;
    background-color: #f8f9fb;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    padding: 0.5rem 2rem;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -2rem;
}

.navbar .logo h1 {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: dodgerblue;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #007bff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-icon:nth-child(1) svg {
    fill: #000;
}

.social-icon:nth-child(2) svg {
    fill: #0088cc;
}

.social-icon:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* HERO */
.hero {
    padding: 4rem 0;
    background: #fff;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text p {
    margin-bottom: 1.5rem;
}

.hero-text .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-text .intro strong {
    color: dodgerblue;
}

.hero-logo img {
    width: 450px;
    max-width: 100%;
}

.hero .btn-primary {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}


/* PROJECT */
.project {
    text-align: center;
    padding: 3rem 1rem;
}

.project .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.project h2 {
    margin-bottom: 2rem;
    font-weight: 700;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.project-item {
    flex: 1;
    min-width: 250px;
}

.moveplus-item {
    text-align: left;
    margin-left: -2rem;
}

.marketplace-item {
    text-align: center;
}

.hello-item {
    text-align: right;
    margin-right: -2rem;
}

.project-item h3 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 70px;
    line-height: 1.1;
}

.project-item p {
    margin-top: 5px;
}

.project-item .moveplus {
    font-weight: 800;
    font-style: italic;
    color: #7bda00;
}

.project-item .marketplace {
    font-weight: 600;
    text-align: center;
    line-height: 0.5;
}

.project-item .marketplace-title {
    color: dodgerblue;
    font-size: 70px;
}

.project-item .marketplace-subtitle {
    color: #888;
    font-size: 35px;
    font-weight: 400;
}

.project-item .hello {
    color: #ab9ff2;
    font-family: 'BOOWIE', sans-serif;
}

/* TOKENOMICS */
.tokenomics {
    background: #fff;
    padding: 3rem 1rem;
}

.tokenomics .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.tokenomics h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.tokenomics .subtext {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.tokenomics-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.tokenomics-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: -2rem;
}

.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.token-box {
    background: #f1f3f6;
    width: 180px;
    height: 150px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.token-box h3 {
    font-weight: 700;
    color: dodgerblue;
}

.allocation-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.allocation-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category {
    font-weight: 600;
    color: #222;
}

.percentage {
    font-weight: 600;
    color: #222;
}

.description {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f3f6;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: dodgerblue;
}

/* ROADMAP */
.roadmap {
    padding: 3rem 1rem;
    background: #fff;
}

.roadmap .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.roadmap h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.phase {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
}

.phase h3 {
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.phase .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.phase .goal {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

.phase .key-actions {
    font-weight: 600;
    margin: 0.5rem 0 0.25rem 0;
    color: #555;
}

.phase ul {
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
    text-align: center;
    display: inline-block;
}

.phase ul li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.phase .quote {
    font-style: italic;
    margin: 1.5rem 0 0 0;
    color: #555;
}

.final-vision {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.final-vision h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 600;
}

.final-vision p {
    font-style: italic;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
}

/* FOOTER */
.footer {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .navbar .logo {
        margin-left: 0;
    }

    .navbar .logo h1 {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 3rem 0;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu .social-icons {
        margin-top: 2rem;
        justify-content: center;
    }

    .social-icons {
        gap: 0.25rem;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }

    .tokenomics-content {
        flex-direction: column;
    }

    .tokenomics-column {
        margin-left: 0;
    }

    .token-grid {
        justify-self: center;
    }

    .token-box {
        width: 100%;
        max-width: 180px;
        height: 150px;
    }

    .project-grid {
        flex-direction: column;
    }

    .moveplus-item {
        margin-left: 0;
        text-align: center;
    }

    .hello-item {
        margin-right: 0;
        text-align: center;
    }

    .project-item h3 {
        font-size: 40px;
    }

    .project-item .marketplace-title {
        font-size: 40px;
    }

    .project-item .marketplace-subtitle {
        font-size: 20px;
    }

    .hero-logo img {
        width: 100%;
        max-width: 300px;
    }

    .phase h3 {
        font-size: 1.2rem;
    }

    .phase .subtitle {
        font-size: 1rem;
    }

    .phase .goal {
        font-size: 0.9rem;
    }

    .final-vision h4 {
        font-size: 1.1rem;
    }

    .final-vision p {
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .project {
        padding: 2rem 1rem;
    }

    .tokenomics {
        padding: 2rem 1rem;
    }

    .roadmap {
        padding: 2rem 1rem;
    }
}