/* Fix for blue links - Override default link colors */

/* Remove blue color from all links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

/* Footer links should be white/current color */
.footer-modern a {
    color: inherit;
    text-decoration: none;
}

.footer-modern a:hover {
    opacity: 0.8;
}

/* Event card links should not be blue */
.event-card-link {
    color: inherit !important;
    text-decoration: none !important;
}

.event-card-link:visited {
    color: inherit !important;
}

/* Navigation links */
.nav-links a {
    color: inherit;
    text-decoration: none;
}

/* Social links in footer */
.social-link {
    color: white !important;
    text-decoration: none !important;
}

.social-link:visited {
    color: white !important;
}

/* Button styling for event cards */
.btn-detail {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-fire);
    color: white !important;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
    text-align: center;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-fire);
    color: white !important;
    opacity: 0.9;
}

/* Event card should not be entirely clickable */
.event-card-modern {
    cursor: default;
}