@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&amp;display=swap");
@font-face {
    font-family: milky;
    src: url("../font/Wobbles-9odZ.ttf");
}

@font-face {
    font-family: goty;
    src: url(/images/ingrained.ttf);
}

nav {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none; /* Hide by default */
    flex-direction: column;
    width: 100%;
}

.nav-menu li {
    margin: 0;
    border-top: 1px solid #444;
}

.nav-menu li a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }
}



:root {
    --theme: #051540;
    --primary: #4260ac;
    --secondary: #fa5756;
    --base: #fff;
    --light: #c9c9c9;
}

* {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    outline: none;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    color: var(--base);
    &:focus {
        outline: none;
    }
}

html,
body {
    font-family: goty;
    font-size: 16px;
    margin: 0 auto;
    background-color: rgb(8, 9, 14);
    /* scroll-behavior: smooth; */
}

body {
    overflow-x: hidden;
}

h1,
h2 {
    font-family: goty;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-theme {
    background-color: var(--theme) !important;
}

.text-primary {
    color: white !important;
}

.text-secondary {
    color: white !important;
}

.text-base {
    color: var(--text) !important;
}

.text-light {
    color: var(--text) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.text-linear-primary {
    background: linear-gradient(to right, #18811c 15%, #243e06 50%);
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #D46B8A;
}

.text-linear-secondary {
    background: linear-gradient(to right, #000000 15%, #055108 50%);
    background: -webkit-linear-gradient(to right, #ae4651 15%, #ffdcfc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #D46B8A;
}

.container {
    max-width: 1350px !important;
    position: relative !important;
    z-index: 2 !important;
    padding: 0 25px !important;
    margin: 0 auto;
}

.button-base {
    border: 1.4px solid #000000;
    height: 48px;
    background-color: #D46B8A;
    padding: 0 15px;
    color: #ffffff;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-text svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 46%;
    top: 65%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: 3s pulsate infinite alternate ease-in-out;
}

.hero-text svg text.animate-stroke {
    animation: stroke 4s;
    opacity: 0.2;
}

.hero-text svg text {
    font-family: goty;
    text-transform: uppercase;
    animation: stroke 4s;
    stroke-width: 1.2;
    stroke: #04f6ff;
    fill: transparent;
    font-size: 230px;
    display: inline-block;
    letter-spacing: 5px;
    opacity: 0;
}

.section-hero::before,
.hero-image::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: linear-gradient( 260deg, var(--primary) 0%, rgba(115, 67, 210, 0) 100%);
    -webkit-filter: blur(150px);
    filter: blur(150px);
}

.section-hero:before {
    -webkit-filter: blur(150px);
    filter: blur(150px);
    top: 0;
    right: 0;
    width: 322px;
    height: 308px;
    margin-right: -5%;
    margin-top: -5%;
    z-index: 1;
}

.hero-image:before {
    background: linear-gradient( 260deg, #8bc34a00 0%, rgba(115, 67, 210, 0) 100%);
    bottom: 0;
    left: 0;
    width: 120%;
    height: 120%;
    opacity: 0.3;
    margin-left: -50%;
    margin-bottom: -30%;
    z-index: -1;
}

.section-case::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: linear-gradient( 260deg, var(--secondary) 0%, rgba(115, 67, 210, 0) 100%);
    -webkit-filter: blur(150px);
    filter: blur(150px);
    width: 100%;
    height: 120%;
    opacity: 0.2;
    right: 0;
    bottom: 0;
    margin-right: -40%;
    margin-bottom: -20%;
}

.section-resume::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: linear-gradient( 260deg, var(--primary) 0%, rgba(115, 67, 210, 0) 100%);
    -webkit-filter: blur(150px);
    filter: blur(150px);
    width: 90%;
    height: 90%;
    opacity: 0.15;
    left: 0;
    bottom: 0;
    margin-left: -50%;
    margin-bottom: -20%;
}

@media (max-width: 600px) {
    .section-case::before {
        width: 400px;
        height: 400px;
    }
    .section-resume::before {
        width: 400px;
        height: 400px;
    }
    .hero-text svg {
        top: 35%;
        left: 50%;
    }
    .hero-text svg text.animate-stroke {
        opacity: 0.8;
    }
    .hero-text svg text {
        font-size: 350px;
        stroke-width: 2;
    }
    @keyframes pulsate {
        0% {
            transform: translate(-50%, -50%) scale(1);
        }
        50% {
            transform: translate(-50%, -50%) scale(1.02);
        }
        100% {
            transform: translate(-50%, -50%) scale(1);
        }
    }
}

@keyframes stroke {
    0% {
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }
    100% {
        stroke-dashoffset: 100%;
        stroke-dasharray: 100% 0;
        stroke-width: 1;
    }
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
}

@media (min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}
