:root {
--bg-color: #005312;
    --card-bg: #f3e5c6;       /* Deeper green overlay so the white text pops */
    --accent-color: #0f65b1;   /* High-visibility athletic gold/yellow */
    --text-main: #2b1f1d;      /* Crisp white for perfect legibility on green */
    --text-muted: #b39f94;    /* Softer, desaturated light green for secondary text */
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
}

header {
    text-align: center;
    padding: 3rem 0 2rem 0;
}

.logo {
    margin-bottom: 0.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 290px; 
    height: auto;
    
    object-fit: contain; 
    
    border-radius: 5px; 
}
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

h1 span {
    color: var(--accent-color);
}

.tagline {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.schedule-card {
    background: var(--card-bg);
    border-left: 5px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.schedule-card h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.location {
    font-size: 1.2rem;
    font-weight: 500;
}

.links-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .links-section {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Strava Orange */
.btn-strava {
    background-color: #fc4c02;
}
.btn-strava:hover {
    background-color: #e04302;
}

/* Instagram Gradient */
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-instagram:hover {
    opacity: 0.9;
}

.btn svg {
    margin-right: 10px;
    fill: currentColor;
}

footer {
    margin-top: auto;
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}