/* Main Styles for Basement Royale Landing Page */
:where([class^="ri-"])::before { content: "\f3c2"; }

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.bebas-neue {
    font-family: 'Bebas Neue', sans-serif;
}

.oswald {
    font-family: 'Oswald', sans-serif;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/backgrounds/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gold-text {
    color: #FFD700;
}

.deep-red-text {
    color: #8B0000;
}

.neon-purple-text {
    color: #9D00FF;
}

.gold-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.purple-glow {
    text-shadow: 0 0 10px #9D00FF, 0 0 20px #9D00FF, 0 0 30px #9D00FF;
}

.gold-glow {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
}

/* Floating Ticket Button */
.floating-ticket-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #9D00FF;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 50;
    transform: translateY(0);
    opacity: 1;
}

.floating-ticket-btn:hover {
    background-color: #8a00e6;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.floating-ticket-btn i {
    font-size: 1.25rem;
}

/* Animation for button appearance */
@keyframes slideUpFadeIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating-ticket-btn.animate {
    animation: slideUpFadeIn 0.5s ease forwards;
}

.hero-title-glow {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3), 0 0 10px rgba(255, 215, 0, 0.2);
}

.card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(157, 0, 255, 0.2);
    border-color: #9D00FF;
}

.dj-image {
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.dj-card:hover .dj-image {
    border-color: #9D00FF;
    transform: scale(1.05);
}

.feature-icon {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.ticket-btn {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.ticket-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.countdown-item {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #9D00FF;
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
}

.venue-image {
    transition: all 0.4s ease;
    filter: grayscale(30%);
}

.venue-image:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.venue-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-item:hover .venue-overlay {
    opacity: 1;
}

.venue-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/backgrounds/venue-bg.jpg');
    background-size: cover;
    background-position: center;
}

.floating-ticket {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.language-switch {
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.language-switch:hover {
    border-color: #9D00FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-bg {
        background-position: 60% center;
    }
    
    .countdown-item {
        width: 60px !important;
        height: 60px !important;
    }
    
    .dj-card {
        margin-bottom: 2rem;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #7B00CC;
}
