:root {
    --primary-blue: #134279; /* Stones River Blue */
    --secondary-gray: #6d6e70; /* Stones River Gray */
    --background-white: #ffffff;
    --text-dark: #333333;
}

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

body {
    background-color: var(--background-white);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main Container */
.container {
    max-width: 1080px;
    width: 100%;
    text-align: center;
    padding: 40px;
    border: 1px solid #e0e0e0; /* Light border for definition */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Header/Logo Section */
header {
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 10px;
}

/* Main Content Section */
main {
    margin-bottom: 60px;
}

main h2 {
    font-size: 3em;
    font-weight: 700;
    color: var(--secondary-gray);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.2em;
    color: var(--secondary-gray);
    margin-bottom: 30px;
}

.countdown h3 {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-blue);
    color: var(--background-white);
    font-size: 1.5em;
    font-weight: 700;
    border-radius: 5px;
    margin: 30px 0;
    letter-spacing: 1px;
}

main p {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* Footer/Contact Section */
footer {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-info {
    font-size: 1.1em;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info .label {
    font-weight: 700;
    color: var(--primary-blue);
    margin-right: 5px;
}

.contact-info a {
    color: var(--secondary-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 1.5em;
    }

    main h2 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }
}