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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FF0000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FF0000;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

.nav-links .dropdown > a:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
}

/* Footer Styles */
footer {
    background-color: #00264d;
    color: #ffffff;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 1rem;
}

.footer-links h3, 
.footer-contact h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #FFD700;
    transform: translateX(5px);
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

/* Responsive styles for navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* About Page Styles */
/* Hero Banner */
body .hero-banner {
    position: relative;
    background: #00264d; /* Dark blue fallback */
    padding: 3rem 0;
    color: white;
    text-align: center;
    margin: 0;
}

body .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

body .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

body .hero-content h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

body .hero-content .tagline {
    color: #FFD700; /* Golden color */
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* About Overview */
body .about-overview {
    padding: 4rem 0;
    background-color: white;
}

body .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

body .overview-text h2 {
    color: #004080; /* Dark blue */
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

body .overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

body .overview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Feature Cards */
.feature-cards {
    padding: 4rem 0;
    background-color: #f8f9fa; /* Light gray */
}

body .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

body .feature-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    min-width: 0;
}

body .feature-card:hover {
    transform: translateY(-5px);
}

body .card-icon {
    width: 80px;
    height: 80px;
    background: #0074D9; /* Primary blue */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

body .feature-card h3 {
    color: #004080; /* Dark blue */
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

body .feature-card p {
    color: #333; /* Text color */
    line-height: 1.6;
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background-color: white;
}

body .timeline-section h2 {
    text-align: center;
    color: #004080; /* Dark blue */
    margin-bottom: 3rem;
}

body .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

body .timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #0074D9; /* Primary blue */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

body .timeline-item {
    padding: 1rem;
    position: relative;
    width: 50%;
    margin-bottom: 2rem;
    box-sizing: border-box;
}

body .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

body .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

body .timeline-date {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #0074D9; /* Primary blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    z-index: 1;
}

body .timeline-item:nth-child(odd) .timeline-date {
    right: -30px;
}

body .timeline-item:nth-child(even) .timeline-date {
    left: -30px;
}

body .timeline-content {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

body .timeline-content h3 {
    color: #004080; /* Dark blue */
    margin-bottom: 0.75rem;
}

/* Committee Section */
.committee-section {
    padding: 4rem 0;
    background-color: #f8f9fa; /* Light gray */
}

body .committee-section h2 {
    text-align: center;
    color: #004080; /* Dark blue */
    margin-bottom: 1rem;
}

body .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

body .committee-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

body .committee-member:hover {
    transform: translateY(-5px);
}

body .member-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

body .member-info {
    padding: 1.5rem;
}

body .member-info h3 {
    color: #004080; /* Dark blue */
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

body .member-role {
    color: #0074D9; /* Primary blue */
    font-weight: bold;
    margin-bottom: 1rem;
}

body .member-bio {
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
body .cta-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #004080, #0074D9); /* Dark blue to primary blue */
    color: white;
}

body .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

body .cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

body .cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

body .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

body .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #0074D9; /* Primary blue */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

body .btn:hover {
    background-color: #004080; /* Dark blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body .btn-secondary {
    background-color: white;
    color: #0074D9; /* Primary blue */
}

body .btn-secondary:hover {
    background-color: #FFD700; /* Gold */
    color: #004080; /* Dark blue */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    body .overview-content {
        gap: 2rem;
    }
    
    body .timeline::before {
        left: 30px;
    }
    
    body .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 1rem;
        text-align: left;
    }
    
    body .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 1rem;
        text-align: left;
    }
    
    body .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 4rem;
    }
    
    body .timeline-item:nth-child(odd) .timeline-date {
        left: -15px;
        right: auto;
    }
    
    body .timeline-item:nth-child(even) .timeline-date {
        left: -15px;
    }
}

@media (max-width: 768px) {
    body .overview-content {
        grid-template-columns: 1fr;
    }
    
    body .overview-image {
        order: -1;
    }
    
    body .cta-buttons {
        flex-direction: column;
    }
    
    body .timeline-item {
        padding-left: 3.5rem;
    }
    
    body .timeline-date {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Season Highlights Section */
.season-highlights-section {
    padding: 4rem 0;
    background-color: #e9f5ff; /* A light, complementary background */
}

.season-highlights-section h2 {
    text-align: center;
    color: #004080; /* Dark blue */
    margin-bottom: 1.5rem;
}

.season-highlights-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.season-highlights-section ul {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.season-highlights-section ul li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start; /* Align icon with start of text */
}

.season-highlights-section ul li i {
    color: #0074D9; /* Primary blue icon */
    margin-right: 10px;
    margin-top: 4px; /* Align icon slightly better with text */
    width: 20px; /* Ensure icons have consistent width */
}

.season-highlights-section .read-more-link {
    text-align: center;
    margin-top: 2rem;
} 