@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700;900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f8f8;
    scroll-behavior: smooth;
}

.bebas {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.noise-bg {
    position: relative;
}

.noise-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-text {
    text-shadow: 3px 3px 0px rgba(255, 49, 49, 0.7);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ff3131;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.glitch-effect {
    position: relative;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    2% {
        transform: translate(-2px, 2px)
    }

    4% {
        transform: translate(2px, -2px)
    }

    6% {
        transform: translate(0)
    }

    100% {
        transform: translate(0)
    }
}

.skew-bg {
    transform: skewY(-2deg);
}

.skew-content {
    transform: skewY(2deg);
}

.mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
}

.mobile-menu.active {
    transform: translateX(0);
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

#loading-screen {
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1);
    opacity: 1;
}

#loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes neonGlow {
    0% {
        filter: drop-shadow(0 0 5px #ff3131) drop-shadow(0 0 10px #df8181);
        opacity: 0.9;
    }

    25% {
        filter: drop-shadow(0 0 12px #3a3a3a) drop-shadow(0 0 20px #ffffff);
        opacity: 0.9;
    }

    50% {
        filter: drop-shadow(0 0 12px #121212) drop-shadow(0 0 20px #ffffff);
        opacity: 0.9;
    }

    75% {
        filter: drop-shadow(0 0 5px #ff3131) drop-shadow(0 0 10px #df8181);
        opacity: 0.9;
    }

    100% {
        filter: drop-shadow(0 0 5px #3a3a3a) drop-shadow(0 0 10px #ffffff);
        opacity: 0.9;
    }
}

/* Instagram Carousel Styles */
.carousel-img {
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.carousel-img.active {
    display: block;
}
.clip-path-slant { clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); }
