body {
    background-color: #020213; /* Deep, rich black */
    font-family: Arial, sans-serif;
    margin: 0;
    color: rgba(255,255,255,.85); /* Crayola's Maize for a soft gold */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    padding: 20px 0;
}

.logo-container {
    padding: 0;
}

.logo {
    font-family: 'Times New Roman', serif;
    font-size: 48px;
    font-weight: bold;
    color: #C39617;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000000;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 40px;
    border: 4px solid rgba(255,255,255,.125);
    background: rgba(255,255,255,.05);
    border-radius: 25px;
    
}

.logo-image {
    width: 400px; /* Adjust as needed */
    height: auto;
}

.mascot-image {
    width: 180px; /* Adjust as needed */
    height: auto;
    /* You would need to replace this with the actual mascot image URL */
}

.tagline-container {
    text-align: left;
    max-width: 500px;
    border-left: 2px solid #fff; /* A vibrant red */
    padding-left: 20px;
}

.tagline {
    font-size: 24px;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
}

.sub-tagline {
    font-size: 24px;
    color: #E0C14F;
    margin-top: 10px;
}

/* Add these styles to your existing styles.css file */

.construction-section {
    padding: 0;
    margin: 0;
}

.construction-message {
    margin-top: 20px;
}

footer {
    margin-top: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #666; /* Softer gray for less emphasis */
}

.copyright {
    color: #999;
}

