@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

.font-sora{
    font-family: 'Sora', sans-serif;
}

.font-poppins{
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
}

/* .navbar-container{
    background-image: url('../assets/images/hero-img.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.main-bg{
    background-image: url('../assets/images/hero-img.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
} */

.box-shadow{
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.white-text {
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    color: #000;
}

.black-text {
    text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    color: #fff;
}

.spacing-container{
    padding-top: 100px;
}

.bg-gradient{
    background-image: linear-gradient(2deg, #fff 10%, #C850C0 46%, #FFCC70 100%);
}

.down-arrow{
    animation: slideBottom 3s infinite;
}

.hero-design{
    animation: spinner 3s linear infinite;
}

@keyframes slideBottom{
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes spinner{
    0% {
        transform: rotate(0turn)
    }
    to {
        transform: rotate(1turn)
    }
}