@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #F7C325;
    --primary-dark: #D4A50A;
    --primary-light: #FFD54F;
    --accent: #FFE082;
    --background: #FAFAFA;
    --background-alt: #FFF8E1;
    --text: #1A1A1A;
    --text-light: #555555;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
}

.btn-secondary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--black);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    padding: 100px 20px;
}

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(247, 195, 37, 0.5));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.about {
    padding: 100px 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 24px;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.highlight-item p {
    color: var(--text-light);
}

.registration-options {
    background: var(--background-alt);
    border-radius: 20px;
    padding: 50px;
}

.registration-options h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
}

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

.option {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option h4 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.option p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.leagues {
    padding: 100px 0;
    background: var(--background);
}

.leagues h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.league-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.league-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.league-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.league-card.featured {
    transform: scale(1.02);
}

.league-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.card-header {
    padding: 30px;
    color: var(--white);
    position: relative;
}

.card-header.womens {
    background: linear-gradient(135deg, #8B2942, #5C1A2B);
}

.card-header.mens {
    background: linear-gradient(135deg, #1A3A5C, #0F2440);
}

.card-header.coed {
    background: linear-gradient(135deg, #1A1A1A, #333333);
    border-left: 4px solid var(--primary);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 30px;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-details {
    margin-bottom: 25px;
}

.card-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--background);
    color: var(--text);
}

.card-details li:last-child {
    border-bottom: none;
}

.division-list {
    background: var(--background-alt);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.division-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
}

.card-body .btn {
    width: 100%;
}

.game-info {
    padding: 100px 0;
    background: var(--white);
}

.game-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 50px;
}

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

.info-item {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: 15px;
    transition: var(--transition);
}

.info-item:hover {
    background: var(--background-alt);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text);
}

.info-item .address,
.info-item .detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.community-intro {
    padding: 60px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    color: var(--text-light);
}

.paws-drive {
    padding: 80px 0;
    background: var(--background);
}

.drive-header {
    text-align: center;
    margin-bottom: 50px;
}

.drive-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 10px;
}

.drive-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.drive-content {
    max-width: 1000px;
    margin: 0 auto;
}

.drive-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-card.highlight {
    background: var(--primary);
    color: var(--black);
}

.info-card.highlight h3 {
    color: var(--black);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
}

.info-card.highlight p,
.info-card.highlight li {
    color: var(--black);
}

.drive-details li,
.how-it-works li {
    padding: 8px 0;
}

.donations-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.donations-section h3 {
    font-size: 1.8rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 30px;
}

.donations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.donation-category h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 15px;
}

.category-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.donation-category.optional ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
}

.donation-category.optional ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.points-table {
    width: 100%;
    border-collapse: collapse;
}

.points-table th,
.points-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--background);
}

.points-table th {
    background: var(--black);
    color: var(--white);
    font-weight: 600;
}

.points-table .points {
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.points-table .note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.donation-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--background-alt);
    border-radius: 10px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 992px) {
    .highlights,
    .options-grid,
    .league-cards,
    .info-grid,
    .footer-content,
    .drive-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .league-card.featured {
        transform: none;
    }

    .donations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--background);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: 10px;
        text-align: center;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .highlights,
    .options-grid,
    .league-cards,
    .info-grid,
    .footer-content,
    .drive-info {
        grid-template-columns: 1fr;
    }

    .about h2,
    .leagues h2,
    .game-info h2,
    .cta-section h2,
    .drive-header h2 {
        font-size: 2rem;
    }

    .registration-options {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }

    .donations-section {
        padding: 25px 20px;
    }

    .points-table th,
    .points-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

.rules-header {
    margin-top: 25px;
    color: var(--primary);
    font-size: 1.1rem;
}

.rules-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}

.rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.standings-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.standings-section h3 {
    font-size: 1.8rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 10px;
}

.standings-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
}

.standings-table-wrapper {
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
}

.standings-table th,
.standings-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid var(--background);
}

.standings-table th {
    background: var(--black);
    color: var(--white);
    font-weight: 600;
}

.standings-table th:first-child {
    border-radius: 10px 0 0 0;
}

.standings-table th:last-child {
    border-radius: 0 10px 0 0;
    text-align: right;
}

.standings-table td:first-child {
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    width: 60px;
}

.standings-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.standings-table tr.first-place {
    background: var(--background-alt);
}

.standings-table tr.first-place td {
    font-weight: 700;
}

.standings-table tbody tr:hover {
    background: var(--background);
}

.total-donated {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--black);
    border-radius: 10px;
    color: var(--white);
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: var(--accent);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
}

.sponsor-section {
    padding: 50px 0;
    background: var(--background);
    text-align: center;
}

.sponsor-section h3 {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sponsor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sponsor-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.sponsor-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sponsor-logo-img {
    max-width: 250px;
    height: auto;
}

.sponsor-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}

.sponsor-location {
    font-size: 1rem;
    color: var(--text-light);
}

.sponsor-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 10px;
}

.rules-section {
    padding: 80px 0;
    background: var(--white);
}

.rules-content {
    max-width: 900px;
    margin: 0 auto;
}

.rule-category {
    margin-bottom: 50px;
}

.rule-category h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}

.rules-list {
    list-style: none;
}

.rules-list > li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--background);
    color: var(--text);
}

.rules-list > li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.rules-list > li:last-child {
    border-bottom: none;
}

.sub-list {
    margin-top: 10px;
    margin-left: 20px;
    list-style: none;
}

.sub-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.sub-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

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

.conduct-item {
    background: var(--background);
    padding: 25px;
    border-radius: 15px;
}

.conduct-item h3 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.conduct-item p {
    color: var(--text-light);
}

.conduct-item ul {
    list-style: none;
    margin-top: 10px;
}

.conduct-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.conduct-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.card-penalties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.penalty {
    padding: 25px;
    border-radius: 15px;
    color: var(--white);
}

.penalty.yellow {
    background: linear-gradient(135deg, #FDD835, #F9A825);
    color: var(--text);
}

.penalty.red {
    background: linear-gradient(135deg, #E53935, #C62828);
}

.penalty h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.penalty p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .conduct-grid,
    .card-penalties {
        grid-template-columns: 1fr;
    }
}
