/* Global Styles */
:root {
    /* Core colors */
    --primary-color: #000000;
    --primary-light: #222222;
    --secondary-color: #333333;
    
    /* Accent colors */
    --accent-blue: #1e3a8a;
    --accent-blue-light: #3b82f6;
    --accent-gray: #6b7280;
    
    /* Background colors */
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #0f172a;
    
    /* Text colors */
    --text-color-dark: #ffffff;
    --text-color-light: #000000;
    --text-muted: #94a3b8;
    
    /* Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Font variables */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --heading-line-height: 1.2;
    --body-line-height: 1.7;
    --letter-spacing-tight: -0.015em;
    --letter-spacing-wide: 0.05em;
    
    /* Accessibility */
    --focus-ring-color: #3b82f6;
    --focus-ring-width: 3px;
    --focus-ring-offset: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Improves text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: var(--body-line-height);
    background-color: var(--background-color);
    color: var(--text-color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: var(--focus-ring-offset);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: var(--heading-line-height);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.btn {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--text-color-dark);
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    font-weight: var(--font-weight-extrabold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: var(--background-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-blue);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), url('header.jpeg');
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    color: var(--text-color-dark);
    position: relative;
}

.mobile-header-image {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mobile-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color-dark);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing-wide);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.hero h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-400), var(--accent-blue-light));
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-weight: var(--font-weight-light);
    line-height: 1.5;
}

/* Team Section */
.team {
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, var(--gray-100) 0%, transparent 40%);
    z-index: 0;
}

.team .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.player-card {
    background-color: var(--background-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.player-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary-color);
}

.player-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(30, 58, 138, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.player-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    mix-blend-mode: color;
    opacity: 0.2;
    z-index: 1;
    transition: all 0.4s ease;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(15%) contrast(1.1);
    border-bottom: 3px solid var(--accent-blue);
}

.player-card:hover .player-image img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.15);
}

.player-card:hover .player-image::before {
    opacity: 0;
}

.player-card:hover .player-image::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(59, 130, 246, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
}

.player-card h3 {
    padding: 20px 20px 5px;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    position: relative;
    z-index: 3;
}

.player-card .role {
    padding: 0 20px 10px;
    color: var(--accent-blue);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

.player-card .social-links {
    display: flex;
    padding: 0 20px 20px;
    gap: 10px;
}

.player-card .social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--accent-blue);
}

.player-card .social-links a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
    color: var(--text-color-dark);
}

/* About Section */
.about {
    background-color: var(--background-dark);
    color: var(--text-color-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-title::after {
    background: linear-gradient(90deg, var(--text-color-dark), var(--accent-blue-light));
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: var(--body-line-height);
    font-weight: var(--font-weight-regular);
}

.about-text p strong {
    font-weight: var(--font-weight-semibold);
    color: var(--accent-blue-light);
}

.quote {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 0;
    position: relative;
    border-left: 3px solid var(--accent-blue);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    margin-bottom: 20px;
    font-weight: var(--font-weight-light);
}

.quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue-light);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.quote cite {
    display: block;
    text-align: right;
    font-weight: var(--font-weight-semibold);
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--accent-blue-light);
}

/* Content Section */
.content {
    background-color: var(--background-dark);
    color: var(--text-color-dark);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 60%);
    z-index: 0;
}

.content .container {
    position: relative;
    z-index: 1;
}

.content .section-title::after {
    background: linear-gradient(90deg, var(--text-color-dark), var(--accent-blue-light));
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    padding-top: 0;
}

.video-container iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 60px 0 20px;
    color: var(--text-color-dark);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--primary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 15px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--text-color-dark) 0%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

footer .social-links {
    display: flex;
    gap: 15px;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

footer .social-links a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    border-color: var(--accent-blue-light);
}

footer .social-links i {
    font-size: 1.2rem;
}

.disclaimer {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray-400);
    font-style: italic;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        background-position: center 20%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        background-image: none;
        background-color: var(--background-dark);
        padding: 0 0 60px 0;
        display: block;
    }
    
    .hero::before {
        display: none;
    }
    
    .mobile-header-image {
        display: block;
        margin-top: 80px; /* Account for fixed header height */
    }
    
    .mobile-header-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.9));
    }
    
    .hero .container {
        padding-top: 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
    }
    
    .footer-logo img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .video-container {
        padding-top: 0;
    }
    
    .video-container iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero .container {
        padding-top: 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    nav ul li {
        margin-left: 0;
    }
}

/* Add player role indicator on image */
.player-image .role-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--accent-blue);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-bold);
    z-index: 3;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.player-card:hover .player-image .role-indicator {
    opacity: 1;
    transform: translateX(0);
}

.player-image::after, 
.player-image::before, 
.player-image img {
    will-change: transform, opacity, filter;
}

/* Print styles for better SEO */
@media print {
    header, 
    footer,
    .video-container,
    .social-links {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
        color: black;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }
    
    .hero,
    .team,
    .about,
    .content {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}

/* Image loading optimization */
img {
    max-width: 100%;
    height: auto;
} 