/* 
    YouthBall - Professional Soccer Training Design
    Theme: Modern, Athletic, Clean
    Colors: Pitch Green, Professional Black, Clean White
*/

:root {
    --primary-color: #2e7d32; /* Pitch Green */
    --secondary-color: #1b5e20; /* Darker Green */
    --accent-color: #ffd700; /* Gold for highlights */
    --text-dark: #212121;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-alt: #f9f9f9;
    --border-color: #e0e0e0;
    --max-width: 900px;
    --font-heading: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Georgia', serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 1.1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Header & Navigation */
header {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 2rem 0;
    border-bottom: 5px solid var(--primary-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.logo span {
    color: var(--accent-color);
}

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

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Hero Section / Banner */
.hero {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.9;
}

/* Main Content Area */
main {
    padding: 4rem 0;
}

.article-content {
    background: var(--bg-light);
}

.article-content h1 {
    font-size: 2.2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.article-content h2, .article-content h3 {
    margin-top: 2.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Decorative elements instead of images */
.pitch-divider {
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    margin: 3rem 0;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-col p, .footer-col ul {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1.5rem;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Special styling for the required link to make it stand out */
.highlight-link {
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
}
