/* --- OUR TEAM PAGE CUSTOM STYLES AS PROPOSED BY GEMINI FOR AESTHETICS--- */


/* FIX FOR ZOOM / OVERFLOW ISSUES */
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling/zooming */
    margin: 0;
    padding: 0;
}

/* Fix for Banner stretching */
.banner-football-wrapper {
    width: 100%;
    overflow: hidden;
}

.banner-football {
    width: 100%;
    /* Keep your height and background styles here */
}

/* Ensure rows don't create negative margin overflow */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
/* --- 1. GLOBAL & THEME VARIABLES --- */
:root {
    --yuvadhara-green: #0ed826;
    --yuvadhara-orange: #ff6606;
    --dark-matte: #121212;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--dark-matte);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
}

/* --- 2. BANNER & HEADINGS (Fluid Typography) --- */
.team-banner {
    width: 100%;
    height: clamp(200px, 35vh, 400px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.football-bg { background-image: url('../images/football-team-banner-cropped.jpg'); }
.cricket-bg { background-image: url('../images/cricket-team-cropped.jpeg'); }

.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.responsive-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 8vw, 4.5rem); /* Scales based on screen width */
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
}

.white-text { color: #ffffff; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.accent-green { color: var(--yuvadhara-green); }
.accent-orange { color: var(--yuvadhara-orange); }

/* --- 3. PLAYER CARDS GRID --- */
.row-tight {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}

.player-card {
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    margin-bottom: 30px;
}

.player-card:hover {
    transform: translateY(-10px);
}

.image-box {
    width: 100%;
    aspect-ratio: 3/4; /* Keeps all player photos uniform */
    overflow: hidden;
    border-radius: 12px;
    background: #1f1f1f;
    border: 2px solid transparent;
}

/* Green border for Footballers */
.green-border { 
    border-color: var(--yuvadhara-green); 
    box-shadow: 0 5px 15px rgba(14, 216, 38, 0.2); 
}

/* Orange border for Cricketers */
.orange-border { 
    border-color: var(--yuvadhara-orange); 
    box-shadow: 0 5px 15px rgba(255, 102, 6, 0.2); 
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching */
}

/* --- 4. PLAYER TEXT (Responsive) --- */
.player-details {
    padding-top: 12px;
}

.p-name {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-role {
    font-size: clamp(0.65rem, 1.4vw, 0.85rem);
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* --- 5. MOBILE RESPONSIVENESS (3 per row) --- */
@media (max-width: 576px) {
    .col-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .player-card {
        padding: 5px;
        margin-bottom: 15px;
    }
}