/* AigoCart Premium Theme - White/Black/Blue */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@300;400;500;700&display=swap');

:root {
    --primary-white: #FFFFFF;
    --primary-black: #000000;
    --accent-blue: #007BFF;
    /* Electric Blue */
    --accent-blue-dark: #0056b3;
    --gray-light: #F5F5F7;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-white);
    color: var(--primary-black);
    overflow-x: hidden;
}

.font-heading {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom Utilities */
.btn-primary {
    @apply bg-blue-600 text-white px-6 py-3 font-semibold uppercase tracking-wider transition-all duration-300 border-2 border-transparent hover:bg-white hover:text-blue-600 hover:border-blue-600;
}

.btn-black {
    @apply bg-black text-white px-6 py-3 font-bold uppercase tracking-widest transition-all duration-300 border-2 border-black hover:bg-white hover:text-black;
}

.manga-panel {
    border: 2px solid var(--primary-black);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.manga-panel:hover {
    box-shadow: 8px 8px 0px var(--accent-blue);
    transform: translate(-4px, -4px);
}

.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 640px) {
    .hero-text {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes content is doubled */
}

.animate-marquee {
    display: flex;
    animation: marquee 15s linear infinite;
    width: max-content;
    /* Ensure it takes full width of content */
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}