﻿/* Streetversity Black & Gold Theme */
:root {
    --primary-black: #000000;
    --primary-gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #B8860B;
    --gray-dark: #1a1a1a;
    --gray-light: #f8fafc;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Modern button styles with gold theme */
.btn-modern {
    @apply px-6 py-3 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105 focus:outline-none focus:ring-2 focus:ring-offset-2;
}

.btn-primary {
    @apply bg-yellow-500 text-black hover:bg-yellow-400 focus:ring-yellow-500 shadow-lg;
}

.btn-secondary {
    @apply bg-black text-yellow-500 border border-yellow-500 hover:bg-gray-900 focus:ring-yellow-500;
}

/* Gold gradient backgrounds */
.bg-gold-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

.bg-black-gradient {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* Line clamp utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gold text effects */
.text-gold {
    color: #FFD700;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 3px;
}

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

/* Focus states with gold */
.focus-ring:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Gold shadow effects */
.shadow-gold {
    box-shadow: 0 4px 6px -1px rgba(255, 215, 0, 0.1), 0 2px 4px -1px rgba(255, 215, 0, 0.06);
}

/* Loading animation with gold */
@keyframes pulse-gold {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

/* Gold border animations */
.border-gold {
    border-color: #FFD700;
}

.hover-border-gold:hover {
    border-color: #FFD700;
}