/* Custom CSS for Eyang Sakti Landing Page */

/* Base Customizations */
body {
    scroll-behavior: smooth;
}

/* Custom Gold Gradient Styles */
.bg-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%);
}

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

/* Active Filtering Tab styling */
.active-tab {
    background-color: #D4AF37 !important;
    color: #0B0F19 !important;
    border-color: #D4AF37 !important;
    transform: scale(1.05);
}

/* Glassmorphism navbar styling */
.glass-nav {
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Custom Card Shadows & Hover effects */
.car-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.car-card:hover {
    box-shadow: 0 20px 25px -5px rgba(212, 175, 55, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Animation triggers */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Item styling */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background-color: rgba(248, 250, 252, 0.5);
}

.faq-answer {
    transition: max-height 0.3s ease-out;
}
