/* Base Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: #000;
    color: #e5e5e5;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Typography Overrides */
h1, h2, h3, .chic-font {
    font-family: 'Playfair Display', serif;
}

.logo-font {
    font-family: 'Mr Dafoe', cursive;
}

/* --- HIGH DENSITY GLITTER CSS --- */
#sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sparkle {
    position: absolute;
    background: white;
    opacity: 0;
    animation: flash infinite ease-in-out;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

@keyframes flash {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

/* --- UI EFFECTS --- */
.insta-overlay {
    opacity: 0;
    transition: all 0.5s ease;
}

.group:hover .insta-overlay {
    opacity: 1;
}

section, nav, footer, .announcement-bar {
    position: relative;
    z-index: 10;
}

/* Floating Blob Animation for Hero */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Neon Glow Effect for Text */
.neon-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}
