/* style.css - Styling tambahan + Light Mode */

.event-card {
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Scrollbar custom untuk daftar event (dark mode default) */
#upcomingEvents::-webkit-scrollbar {
    width: 6px;
}

#upcomingEvents::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#upcomingEvents::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

#upcomingEvents::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===== LIGHT MODE ===== */
body.light-mode {
    background: #f8fafc; /* light gray background */
}

body.light-mode .bg-gray-800\/50,
body.light-mode .bg-gray-700\/50,
body.light-mode .bg-gray-800\/80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .text-white,
body.light-mode .text-gray-300 {
    color: #1e293b !important; /* text-slate-800 */
}

body.light-mode .text-pink-400 {
    color: #db2777 !important; /* pink-600 */
}

body.light-mode .text-blue-400 {
    color: #2563eb !important; /* blue-600 */
}

body.light-mode #upcomingEvents div {
    color: #334155 !important; /* slate-700 */
}

body.light-mode .border-gray-700 {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-mode #themeToggle {
    background-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

body.light-mode #themeToggle:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Perbaiki option dropdown (kalau ada) di light mode */
body.light-mode select option {
    background-color: #ffffff;
    color: #1e293b;
}

/* Footer link hover */
footer a:hover {
    text-decoration: underline;
}