/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oswald', 'Impact', sans-serif; /* Brutal font stack fallback */
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 4px;
}

h1, h2, h3, h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Header */
header {
    background-color: #000;
    border-bottom: 2px solid #d35400; /* Burnt Orange */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo {
    font-size: 1.8rem;
    color: #fff;
}

.logo span {
    color: #d35400;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #bbb;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav ul li a:hover, nav ul li a.active {
    color: #d35400;
}

/* Hero Section */
.hero {
    /* Updated background image to be more amateur/night football style */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    border: 3px solid #d35400;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ccc;
}

.btn {
    display: inline-block;
    background-color: #d35400;
    color: #fff;
    padding: 15px 35px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #d35400;
}

.btn:hover {
    background-color: transparent;
    color: #d35400;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: #d35400;
    margin: 10px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #1e1e1e;
    padding: 30px;
    border: 1px solid #333;
    transition: 0.3s;
}

.card:hover {
    border-color: #d35400;
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    color: #d35400;
}

.card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Stats / Bar Info */
.info-bar {
    background-color: #d35400;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-item h4 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Forms */
input, textarea {
    width: 100%;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d35400;
}

/* Page Headers */
.page-header {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    margin-top: auto;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}