/* Clubs Public List - Modern UI Styles */

/* Hero Section */
.clubs-hero {
    background: radial-gradient(1200px 600px at 10% -10%, rgba(99, 102, 241, .15), transparent),
                radial-gradient(1200px 600px at 90% -10%, rgba(34, 197, 94, .12), transparent),
                linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

/* Quick Navigation Pills */
.nav-pill-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* District Card Headers */
.district-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Club Card Hover Effects */
.club-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.club-card:active {
    transform: translateY(-4px);
}

/* Club Logo Container */
.club-logo-container {
    width: 80px;
    height: 80px;
    border: 3px solid #f8f9fa;
}

.club-logo-badge {
    width: 20px;
    height: 20px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Empty State Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state {
    animation: fadeInUp 0.6s ease-out;
}

/* City Badge Pulse Effect */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.city-badge {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .club-logo-container {
        width: 70px;
        height: 70px;
    }
    
    .club-card:hover {
        transform: translateY(-4px);
    }
}

/* Loading Skeleton (for future use) */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Card Shadow Depth Levels */
.shadow-depth-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-depth-2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-depth-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Focus States for Accessibility */
.nav-pill-link:focus,
.club-card:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

