/* General Reset */
* {
    margin: 0;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;width: 100%;
}

scroll-target {
    scroll-margin-top: 80px;
    padding: 20px;
}
img, .hero img, .navbar img, .steps img {
    max-width: 100%;
    height: auto;
}


body {
    font-family: 'Nunito', sans-serif;
    line-height: 2;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;

    background: radial-gradient(circle, #f0c6c6, #f9e4d6, #a9d7bf, #f9cbe2);
    background-size: 100% 150%;
    background-repeat: no-repeat;
    animation: gradientBackground 15s ease infinite;
}

h1 {
    font-size: 3em;
    margin: 0;
    padding: 10px;
    color: #333;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}



body::before,
body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
}

body::before {
    background-color: #f0c6c6;
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
}

body::after {
    background-color: #f9e4d6;
    width: 350px;
    height: 350px;
    top: 60%;
    right: 5%;
    transform: rotate(-30deg);
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    z-index: 1000;
}

/* Logo and Image Container */
.navbar-left {
    display: flex;
    background-color: transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10%;
    align-items: center;
    gap: 15px;
}

.navbar .logo {
    font-size: 1.5em;
    color: rgb(17, 17, 16);
    font-weight: bold;
    cursor: pointer;
}

.navbar img {
    border-radius: 20px;
    height: 4.5rem;
    width: 4.5rem;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffcc00;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon svg {
    width: 30px;
    height: 30px;
}


/* Hero Section */
.hero {
    text-align: center;
    position: relative;
    margin-bottom: 200px;
    padding: 50px 20px;
    color: black;
}
.hero img {
    width: 30%;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 25px;

    animation: float 2s infinite ease-in-out;
}
@keyframes float {
    0% {
        transform: translateY(0); /* Normal position */
    }
    25% {
        transform: translateY(-10px); /* Move up */
    }
    50% {
        transform: translateY(0); /* Back to normal */
    }
    75% {
        transform: translateY(10px); /* Move down */
    }
    100% {
        transform: translateY(0); /* Back to normal */
    }
}


.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}


.hero .btn-secondary {
    padding: 10px 20px;
    color: white;
    border: 2px solid white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.hero .btn-secondary:hover {
    background: white;
    color: #4CAF50;
}

/* Sections */
section {
    padding: 40px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}




.intro-text {
    text-align: center;
    margin-bottom: 15px;
}

.intro-text h1 {
    font-size: 1.3rem;
    color: #ff6600;
}

.intro-text p {
    font-size: 0.8rem;
    color: #555;
    margin-top: 5px;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.step {
    background-color: transparent;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step h2 {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 4px;
}

.step p {
    font-size: 0.7rem;
    font-size: larger;
    font: bold;
    color: #666;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .intro-text h1 {
        font-size: 1.6rem;
    }

    .intro-text p {
        font-size: 0.9rem;
    }

    .step h2 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .intro-text h1 {
        font-size: 1.8rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .step h2 {
        font-size: 1.1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .steps .step:nth-child(5) {
        grid-column: span 2;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .intro-text h1 {
        font-size: 1.2rem;
    }

    .intro-text p {
        font-size: 0.7rem;
    }

    .step h2 {
        font-size: 0.85rem;
    }

    .step p {
        font-size: 0.65rem;
    }
}





.pricing {
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.buybutton {
    margin-top: 20px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.buybutton:hover {
    border: 1px solid black;
    background-color: transparent;
    transition: ease-in 0.6s;
}

.settrustline {
    margin-top: 20px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    color: rgb(22, 21, 21);
    background-color: #dcdfe2;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.settrustline:hover {
    background-color: transparent;
    border: 1px solid black;
    transition: ease-in 0.7s;
}

.firstledger {
    margin-top: 20px;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    color: rgb(22, 21, 21);
    background-color: #0c71f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.firstledger:hover {
    border: 1px solid black;
    background-color: transparent;
    transition: ease-in 0.7s;
}

.features {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    color: white;
}

.features h2 {
    background: linear-gradient(to bottom, #161515, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #333;

}

.features ul {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.features ul li {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.features h3 {
    color: #161515;
}

.nfts {

    display: flex;
    justify-content: center;
    gap: 50px;
}

.fine-art {

    display: inline-block;
    position: relative;
    text-align: center;
}

.fine-art img,
.illegal img {
    overflow: hidden;
    margin: 0px 0px 20px 0px;
    border-radius: 25px;

    width: 350px;
    height: 400px;
    display: block;
}

.fine-art,
.illegal puppets {

    display: inline-block;
    text-align: center;
}

.fineartbutton {
    font-weight: 500;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font: bolder;
    font-size: larger;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
    box-shadow: 0 0 5px rgb(216, 248, 227),
        0 0 15px #f0c6c6,
        0 0 25px #f5bdbd,
        0 0 100px #fcdfdf;
    background: linear-gradient(to right, #f0c6c6, #9effb6);
    border-radius: 15% 5% 15% 5%;
    width: 100%;
    height: 50px;
    padding: 10px;
    border: none;
    background-color: #007BFF;
    color: rgb(20, 15, 15);
    cursor: pointer;
    margin: 0;
    display: block;
}

.fineartbutton:hover {
    background-color: #0056b3;
    transition: ease 0.5s;
}

img {
    vertical-align: middle;
    object-fit: cover;
}

.contact {

    display: flex;

    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: rgb(8, 8, 8);
}

.socials {
    display: flex;
    gap: 10px;
}

.contact ul,
a {
    text-decoration: none;
    list-style: none;
}

.contact ul li a {
    color: yellow;
    cursor: pointer;
}

.twitter,
.discord,
.telegram {

    display: flex;
    padding: 20px 20px 20px 20px;
    justify-content: center;

}

.twittersvg,
.discordsvg,
.telegramsvg {
    width: 50px;
    height: 30px;
}

footer {
    text-align: center;
    padding: 20px;
    color: rgb(82, 80, 80);
}
.menu-icon{
    display: none;
}
@media screen and (max-width: 768px) {
    .hero{
        display: flex;
        flex-direction: column;
        margin-bottom: 70px;
        justify-content: center;
    }
    .hero img{
        margin: 20px;
        width: 95%;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 90px;
        left: 0;
        padding: 20px 0;
        z-index: 999;
        transition: transform 0.9s ease-in-out;
        transform: translateX(-100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0); /* Slide-in effect */
    }

    .menu-icon {
        cursor: pointer;

        display: block;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
    }

    .nav-links li {
        display: flex;
        justify-content: center;
        margin: 10px 10px 10px 10px;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2em;
        margin-bottom: 50px;
        top: 20px;
    }
    .steps{
       display: flex;
       flex-direction: column;
       gap: 8px;
    }
    .nfts {
        display: grid;
        gap: 50px;
    }
    body{
        width: 110%;
        overflow-y: none;
        overflow-x: none;
    }
}

