@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Space Grotesk', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #5b21b6;
}
/* Embed styles */
iframe {
    transition: all 0.3s ease;
}

iframe:hover {
    box-shadow: 0 0 0 2px #6d28d9;
}

/* Twitter embed styles */
.twitter-timeline {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Gallery Styles */
.gallery-container {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.gallery-item {
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.gallery-nav {
    transition: all 0.3s ease;
    transform: translateY(-50%) scale(0.9);
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1);
    background-color: rgba(109, 40, 217, 0.8) !important;
}

/* Custom scrollbar for gallery */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Animation classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}