/* Clubs Public Detail - Modern UI Styles */

/* Hero Section */
.club-detail-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%);
}

/* Club Logo */
.club-logo-large {
    width: 100px;
    height: 100px;
}

/* Info Card Headers */
.info-card-header {
    background: linear-gradient(135deg, #004D3A 0%, #008B5A 100%);
}

.contact-card-header {
    background: linear-gradient(135deg, #003366 0%, #004d90 100%);
}

/* Contact Info Items */
.contact-info-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
    transform: translateX(4px);
    background-color: rgba(99, 102, 241, 0.05);
}

/* Contact Buttons */
.contact-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn:active {
    transform: translateY(0);
}

/* Social Media Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn:active {
    transform: scale(1.05);
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* Icon Backgrounds */
.icon-bg-primary {
    background: rgba(99, 102, 241, 0.1);
}

.icon-bg-danger {
    background: rgba(220, 53, 69, 0.1);
}

.icon-bg-success {
    background: rgba(34, 197, 94, 0.1);
}

.icon-bg-info {
    background: rgba(13, 202, 240, 0.1);
}

.icon-bg-warning {
    background: rgba(255, 193, 7, 0.1);
}

/* Badge Animations */
.verified-badge {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

/* Description Section */
.description-section {
    line-height: 1.8;
    font-size: 1rem;
}

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

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Gradient Overlays */
.gradient-overlay-primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

/* Link Hover Effects */
.contact-link {
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #667eea !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sticky-sidebar {
        position: relative;
        top: 0;
    }
    
    .club-logo-large {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .club-logo-large {
        width: 70px;
        height: 70px;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
    }
}

/* Focus States for Accessibility */
.contact-btn:focus,
.social-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

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

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

/* Print Styles */
@media print {
    .contact-btn,
    .social-btn,
    .sticky-sidebar {
        display: none;
    }
    
    .info-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}

