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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background: #002b5c;
    color: white;
    padding: 15px;
}

.header-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 80px;
    height: auto;
}

.logo-area h1 {
    font-size: 28px;
}

nav ul {
    list-style: none;

    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: white;
    text-align: center;
    padding: 40px 20px;
}

.hero h2 {
    color: #002b5c;
    margin-bottom: 15px;
}

.slider-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 10px;
}

.slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.slider img {
    width: 220px;
    height: 220px;

    object-fit: cover;

    border-radius: 10px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.2);

    transition: transform 0.3s ease;
}

.slider img:hover {
    transform: scale(1.05);
}

.content {
    max-width: 1200px;
    margin: auto;

    background: white;

    padding: 40px 20px;
}

.content h2 {
    color: #002b5c;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 15px;
}

footer {
    background: #002b5c;
    color: white;

    text-align: center;

    padding: 20px;

    margin-top: 40px;
}

@media (max-width: 768px) {

    .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-area {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-area img {
    width: 100px;
}

.logo-area h1 {
    font-size: 2rem;
    line-height: 1.2;
}
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .slider img {
        width: 90%;
        height: auto;
    }
}/* COUNTY TILES */

.tiles-container {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 30px;
}

.tile {

    background: #002b5c;

    color: white;

    text-decoration: none;

    text-align: center;

    padding: 40px 20px;

    border-radius: 10px;

    font-size: 20px;

    font-weight: bold;

    transition: 0.3s;
}

.tile:hover {

    background: #004080;

    transform: scale(1.05);
}

/* MOBILE */

@media (max-width: 768px) {

    .tiles-container {

        grid-template-columns: 1fr;
    }
}/* CONTACT TILES */

.contact-tiles {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 30px;
}

.contact-tile {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 2px 10px rgba(0,0,0,0.2);

    padding-bottom: 20px;

    transition: 0.3s;
}

.contact-tile:hover {

    transform: scale(1.03);
}

.contact-tile img {

    width: 100%;

    height: 220px;

    object-fit: cover;
}

.contact-tile h3 {

    margin-top: 15px;

    color: #002b5c;
}

.contact-tile p {

    margin-top: 10px;

    font-size: 16px;
}

/* MOBILE */

@media (max-width: 768px) {

    .contact-tiles {

        grid-template-columns: 1fr;
    }
}.table-box {
    display: inline-block;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.table-box img {
    display: block;
    max-width: 100%;
    height: auto;
}.sponsors {
    text-align: center;
    padding: 40px 20px;
}

.sponsor-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sponsor {
    width: 150px;
}

.sponsor img {
    width: 100%;
    height: auto;
}

.interleague-preview {
    padding: 40px 20px;
    text-align: center;
}

.interleague-preview table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 700px;
}

.interleague-preview th,
.interleague-preview td {
    border: 1px solid #ccc;
    padding: 10px;
}

.interleague-preview th {
    background: #222;
    color: white;
}/* =========================
   LANDING PAGE
========================= */

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    display: block;
}

.hero-banner > img {
    height: 60vh;
    min-height: 320px;
    max-height: 700px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: rgba(0,0,0,0.45);

    color: #fff;
    padding: 20px;
}

.hero-badge {
    width: 100px;
    margin-bottom: 20px;
}

.hero-overlay h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
}

/* STATS */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background: #111;
    color: #fff;
}

.hero-stats div {
    padding: 20px;
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-size: 2rem;
}

.hero-stats span {
    display: block;
    margin-top: 5px;
}

/* NEWS */

.news-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.news-grid {
    display: grid;
    gap: 20px;
}

.news-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 8px;
}

.news-card h3 {
    margin-bottom: 15px;
}

.news-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-card a {
    text-decoration: none;
    font-weight: bold;
}

/* SPONSORS */

.news-section {
    padding: 40px 20px 20px;
}

.sponsors-section {
    padding: 40px 20px;
    background: #f5f5f5;
    text-align: center;
}

.sponsors-section h2 {
    margin-bottom: 15px;
}
.sponsors-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}
.sponsor-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.sponsor-card img {
    width: 100%;
    max-width: 300px;
    height: 120px;
    object-fit: contain;
}

/* RESPONSIVE */

@media screen and (min-width:768px) {

    .hero-stats {
        grid-template-columns: repeat(4,1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .sponsors-grid {
        grid-template-columns: repeat(3,1fr);
    }

}

@media screen and (max-width:767px) {

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .hero-badge {
        width: 70px;
    }

}