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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: linear-gradient(90deg, #101B3A 0%, #3B82F6 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
}

/* Right-align About dropdown menu on desktop */
.dropdown-menu-right {
    right: 0;
    left: auto;
}

/* Hamburger menu toggle - hidden by default */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
    margin-right: 12px;
}

.mobile-menu-toggle .bar {
    width: 28px;
    height: 0;
    border-top: 3px solid white;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger-x {
    display: none;
    font-size: 24px;
    color: #fff;
    background: transparent;
    line-height: 1;
    text-align: center;
    width: 24px;
    height: 24px;
    user-select: none;
}

.mobile-menu-toggle.active .bar {
    display: none;
}

.mobile-menu-toggle.active .hamburger-x {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.1rem 0 1.2rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1e40af;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
}

/* Quick Links Section */
.quick-links {
    padding: 4rem 0;
    background-color: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #3b82f6;
}

.quick-link-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quick-link-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

/* If there are two .section-title in a row, add spacing between them */
.section-title + .section-title {
    margin-top: 1.5rem;
}

/* Announcements Section */
.announcements {
    padding: 0;
    background-color: #f8f9fa;
}

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

/* If there are two .announcements-grid in a row, add spacing between them */
.section-title + .announcements-grid {
    margin-top: 1.5rem;
}

.announcement-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.announcement-card.featured {
    border-left: 6px solid #19325a;
    background: #fff;
    box-shadow: 0 4px 16px rgba(25,50,90,0.07);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.announcement-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #19325a;
}

.badge {
    background-color: #c62828;
    color: #fff;
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.announcement-card .btn-primary {
    background: #19325a;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}

.announcement-card .btn-primary:hover {
    background: #c62828;
}

.deadline {
    color: #c62828;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 1.2rem;
}

/* Divisions Section */
.divisions {
    padding: 0;
    background-color: white;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.division-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.division-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.division-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.division-card .btn {
    margin: 0.25rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1180px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        justify-content: space-between;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: linear-gradient(90deg, #101B3A 0%, #3B82F6 100%);
        z-index: 1001;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 1.5rem 0 2rem 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav.active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem 2rem;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: none;
        margin-top: 0;
        padding-left: 0;
    }
    .dropdown-menu li a {
        color: white;
        padding: 0.5rem 3.5rem 0.5rem 3.5rem;
        background: none;
        margin-left: 1.5rem;
        font-size: 1rem;
        border-radius: 0;
        display: inline-block;
        vertical-align: middle;
    }
    .dropdown-menu li a:hover {
        background: none;
        color: #f59e0b;
        text-decoration: underline;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .quick-links-grid,
    .announcements-grid,
    .divisions-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.1rem 0 1.2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .quick-link-card,
    .announcement-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.header .container {
    padding-left: 0;
    padding-right: 0;
}

/* USA Football-style Hero Section */
.usa-style-hero {
    background: #0d223a;
    padding: 0;
    min-height: 420px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.usa-hero-inner {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 420px;
}

.usa-hero-left {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 2.5rem 3.5rem 4vw;
    position: relative;
    min-width: 320px;
    z-index: 2;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.usa-hero-bg-dots {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    z-index: 1;
}

.usa-hero-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    z-index: 2;
    position: relative;
}

.usa-hero-subtitle {
    font-size: 1.15rem;
    color: #e0e6f0;
    margin-bottom: 2.2rem;
    z-index: 2;
    position: relative;
    max-width: 420px;
}

.usa-hero-buttons {
    display: flex;
    gap: 1rem;
    z-index: 2;
    position: relative;
}

.usa-hero-buttons .btn-primary {
    background: #b71c2b;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.9rem 2.1rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.usa-hero-buttons .btn-primary:hover {
    background: #8d1722;
}

.usa-hero-buttons .usa-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.9rem 2.1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.usa-hero-buttons .usa-outline:hover {
    background: #fff;
    color: #0d223a;
}

.usa-hero-right {
    flex: 1 1 55%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5rem 4vw 2.5rem 2.5rem;
    min-width: 320px;
    position: relative;
}

.usa-hero-collage {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.usa-collage-img {
    border-radius: 12px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.18);
    object-fit: cover;
    object-position: center;
    background: #1a2c47;
    display: block;
    width: 100%;
    height: 100%;
}

.usa-collage-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.usa-collage-img-wrapper.img1 {
    width: 220px;
    height: 300px;
    transform: rotate(-4deg) translateY(10px);
}

.usa-collage-img-wrapper.img2 {
    width: 180px;
    height: 220px;
    transform: rotate(3deg) translateY(-18px);
}

.usa-collage-img-wrapper.img3 {
    width: 200px;
    height: 260px;
    transform: rotate(2deg) translateY(22px);
}

.collage-fade-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    background: #0d223a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    z-index: 2;
}

.collage-fade-overlay.active {
    opacity: 1;
}

.usa-collage-img {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .usa-hero-inner {
        flex-direction: column;
        min-height: unset;
    }
    .usa-hero-left, .usa-hero-right {
        min-width: 0;
        width: 100%;
        padding: 2rem 1rem;
        justify-content: center;
    }
    .usa-hero-collage {
        justify-content: center;
        gap: 0.7rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 1.1rem 0 1.2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .usa-hero-left {
        padding-top: 1.1rem;
        padding-bottom: 1.1rem;
    }
    
    .usa-hero-buttons .btn-primary, .usa-hero-buttons .usa-outline {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .usa-collage-img {
        width: 90px !important;
        height: 120px !important;
    }
    
    .usa-hero-right {
        display: none;
    }
}

@media (max-width: 1230px) {
    .usa-hero-inner {
        flex-direction: column;
        min-height: unset;
        align-items: center;
    }
    .usa-hero-left, .usa-hero-right {
        min-width: 0;
        width: 100%;
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .usa-hero-right {
        margin-top: 2rem;
    }
    .usa-hero-collage {
        justify-content: center;
        gap: 0.7rem;
    }
}

/* Reduce top margin before Latest News & Announcements */
.announcements .section-title {
    margin-top: 2rem;
}

/* Get Started panel button style */
.btn-getstarted {
    display: inline-block;
    width: 100%;
    padding: 0.55rem 1rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.97rem;
    background: #fff;
    color: #19325a;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
}

.btn-getstarted:hover, .btn-getstarted:focus {
    background: #19325a;
    color: #fff;
    border-color: #19325a;
} 