@import url('https://fonts.googleapis.com/css2?family=Comic+Neue&family=Fredoka&display=swap');

/* Now you can use the fonts */
body {
    padding: 0;
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #ebebeb 100%);
    font-family: 'Fredoka', cursive;
}

.comic-text {
    font-family: 'Comic Neue', cursive;
}

.btn-join {
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    font-weight: 600;
    border: none;
}

.btn-join:hover {
    opacity: 0.9;
}

.container1 {
    display: flex;
    align-items: center;
    gap: 30vw;
}

.navbar {
    position: fixed;
    top: 0px;
    z-index: 1050;
    display: flex;
    width: 100%;
    justify-content: space-around;
    filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.3));
}


.navbar-brand {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 900;
}

.navbar-pages {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.placito-btns{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }


@media (max-width:991px) {

    .bottom-sec {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .filter-tags{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .search-box {
        flex-direction: column;
    }

    .bottom-btn{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        width: fit-content;
    }

    .placito-btns{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .navbar-pages {
        display: flex;
        align-items: flex-start;
        padding-left: 25px;
    }

    .navbar-collapse {
        background-color: #fff;
        /* if needed */
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 10px 0 20px 0;
        z-index: 1049;
        /* slightly less than navbar to appear below */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* optional */
    }

}


.navbar .nav-link {
    display: block;
    padding: 14px 20px;
    color: #4b5563;
    font-weight: 800;
    line-height: 1.25rem;
    text-decoration: none;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #9333ea !important;
}

.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #ebebeb 100%);
    margin-top: 150px;
}


.text-gradient {
    background: linear-gradient(to right, #d946ef, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(to right, #d946ef, #6366f1);
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(217, 70, 239, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: white;
    transform: scale(1.05);
}

.btn-gradient2 {
    color: #9333ea;
    padding: 0.6rem 1.2rem;
    border: 1px solid #9333ea;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(217, 70, 239, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient2:hover {
    opacity: 0.9;
    background-color: #9333ea;
    color: white;
    transform: scale(1.05);
}

.scale-icon {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
    will-change: transform;
}

.scale-icon:hover {
    transform: scale(1.40);
}

.features {

    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.features .card {
    border-radius: 1rem;
    border: none;
    padding: 10px
}

.features:hover {
    /* transform: translateY(-5px) scale(1.02); */
    filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.3));
}


.stats {
    background-color: #fffc;
}

.stories {
    background: linear-gradient(135deg, #f5f7fa 0%, #ebebeb 100%);
}

.CTA {
    background-color: #fffc;
    position: relative;
}

.fixed-btn {
    position: fixed;
    width: fit-content !important;
    bottom: 10px;
    right: 10px;
}

.search-box{
    display: flex;
    align-items: center;
    width: 100%;
    /* position: relative; */
    padding: 20px;
    gap: 8px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.search {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding-left: 10px;
    width: 100%;
    background-color: #f3f4f6;
    border: none;
}
.search-btn{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-btn:hover{
    color: white;
}

.search-input {
    border: none;
    background-color: #f3f4f6;
    padding: 8px 12px;
    border-radius: 8px;
}

.search-input:focus {
    outline: none;
    border: none;
}

.search:hover{
    border: 1px solid #9333ea;
}



.text-gray {
    color: #4b5563;
    font-family: Comic Neue, cursive;
}

.text-purple {
    color: #a855f7;
}

.text-pink {
    color: #ec4899;
}

.text-blue {
    color: #3b82f6;
}

.text-green {
    color: #22c55e;
}

.bounce-text {
    display: inline-block;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.top-pad{
    padding-top: 800px;
}

.glow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180%;
    height: 2.5rem;
    /* h-10 */
    padding: 0.5rem 1.5rem;
    /* py-2 px-6 */
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.25rem;
    font-weight: 600;
    /* font-semibold */
    color: white !important;
    background-image: linear-gradient(to right, #9333ea, #db2777);
    /* from-purple-600 to-pink-600 */
    border-radius: 9999px;
    /* rounded-full */
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    box-shadow: 0 0 20px #a855f74d, 0 0 40px #a855f733;
    /* neon-glow */
    text-decoration: none;
    cursor: pointer;
    border: none;
}

/* Hover Gradient Enhancement */
.glow-button:hover {
    background-image: linear-gradient(to right, #7e22ce, #be185d);
    /* from-purple-700 to-pink-700 */
    filter: brightness(1.05);
    color: white !important;
}

/* .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
} */

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899, #06b6d4);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}