/* Sponsors */
.sponsor-logo {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.sponsor-placeholder {
    width: 100%;
    height: 80px;
    background: var(--bg-light);
    border: 2px dashed var(--text-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
}


/* Footer */
.footer {
    padding-top: 60px;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--highlight-color) !important;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--highlight-color) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
