/* Image Placeholders - Creates visual placeholders for missing images */

/* Override generic image styling for better placeholders */
img[src$=".jpg"], img[src$=".png"], img[src$=".webp"] {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
    border: 2px dashed #cbd5e1 !important;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    font-size: 0.875rem;
}

/* Hero Image - Show SVG placeholder */
.hero-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Coach Image Placeholders */
.coach-image img {
    height: 250px;
    background: linear-gradient(135deg, #004E89 0%, #0A2342 100%) !important;
    color: white !important;
    border: none !important;
}

.coach-image img[src*="rahul-sharma"]::after {
    content: "🏏 Coach Rahul Sharma\ACricket Expert\A15+ Years Experience";
    white-space: pre;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    color: white;
}

.coach-image img[src*="priya-singh"]::after {
    content: "🎾 Coach Priya Singh\ATennis Professional\AITF Certified";
    white-space: pre;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    color: white;
}

.coach-image img[src*="master-kim"]::after {
    content: "🥋 Master Kim\ATaekwondo Master\A5th Dan Black Belt";
    white-space: pre;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    color: white;
}

/* Achievement Image Placeholders */
.achievement-image img {
    height: 200px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF9933 100%) !important;
    color: white !important;
    border: none !important;
}

.achievement-image img[src*="ayush-cricket"]::after {
    content: "🏆 Ayush Kumar\AU14 Cricket Champion\A2025 League Finals";
    white-space: pre;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    color: white;
}

.achievement-image img[src*="sneha-tennis"]::after {
    content: "🥇 Sneha Patel\AState Tennis Champion\A2025 Gold Medal";
    white-space: pre;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    color: white;
}

.achievement-image img[src*="arjun-taekwondo"]::after {
    content: "🥋 Arjun Reddy\ANational Taekwondo\AGold Medal 2025";
    white-space: pre;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    color: white;
}

/* Logo Placeholders */
.logo {
    max-height: 50px;
    width: auto;
}

/* Remove the generic image placeholder styling for specific images */
img[src*="coach"], img[src*="achievement"], .hero-img {
    border: none;
    background-size: cover;
    background-position: center;
}

/* Sport Icons - Ensure they display properly */
.sport-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}
