/* Stitch 'Dark Luxury' Theme */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Initial Clean Reset/Base is handled by Tailwind Preflight */

/* Custom Utilities injected by Tailwind Config in HTML, but extra helpers here */

html {
    scroll-behavior: smooth;
}

body {
    /* bg-background-dark handled by Tailwind utility class */
}

/* Scrollbar Styling for Dark Mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f16;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utility classes that might be useful */
.text-gradient-gold {
    background: linear-gradient(to right, #ffffff, #D4AF37, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Mobile Menu Transitions */
.mobile-menu-active {
    transform: translateX(0) !important;
}

.mobile-menu-hidden {
    transform: translateX(100%);
}

/* Animations */
@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce-slow 1.5s infinite;
}

/* Artist Impression Disclaimer */
.artist-impression-wrapper {
    position: relative;
    overflow: hidden;
}

.artist-impression-wrapper::after {
    content: "Some pictures, images and videos are artists impressions";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.6rem;
    padding: 12px 12px 4px;
    text-align: right;
    pointer-events: none;
    z-index: 10;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}