/* Custom Styling for EventHub */

.max-width-600 {
    max-width: 600px;
}

.max-width-500 {
    max-width: 500px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary-color);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: #4b5563 !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.card-img-top {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bg-primary-subtle {
    background-color: #eef2ff;
}

.text-primary {
    color: #4F46E5 !important;
}

/* Smooth transitions */
.btn, .card, .nav-link {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism effect for sticky navbar */
@supports (backdrop-filter: blur(10px)) {
    .navbar {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
    }
}