/* General Styles for All Pages */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light blue background */
    color: #2c3e50; /* Dark blue text */
    line-height: 1.6;
}

h1, h2, h3 {
    color: #2c3e50; /* Darker shade of blue for headings */
    text-align: center;
    margin: 20px 0;
}

p {
    text-align: center;
    margin: 10px 20px;
}


/* Header Styling */
header {
    background-color: #f56600; /* Clemson orange */
    color: white;
    padding: 15px 20px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2em;
}


/* Footer Styling */
footer {
    background-color: #f56600; /* Match Clemson orange */
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
    font-size: 0.9em;
}


/* Styling for Images */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Adjust images for smaller screens */
    gap: 50px; /* Space between images */
    margin: 20px;
}

.image-container img {
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow */
    border: 2px solid #2c3e50; /* Dark blue border */
    margin: 20px; /* Whitespace around each image */
}


/* Table Styling for Schedules */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 1em;
}

table, th, td {
    border: 1px solid #ccc; /* Light grey borders */
}

th, td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f56600; /* Clemson orange */
    color: white;
}


.home {
    color: #f56600; /* Orange for home games */
    font-weight: bold;
}

.away {
    color: #8a2be2; /* Purple for away games */
    font-weight: bold;
}


/* Aside Section */
aside {
    margin: 20px auto;
    padding: 15px;
    background-color: #e8e8e8;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

aside ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

aside ul li a {
    color: #2c3e50; /* Dark blue links */
    text-decoration: none;
}

aside ul li a:hover {
    text-decoration: underline;
}





/* Responsive Design */
@media (max-width: 768px) {
    .image-container {
        gap: 20px; /* Reduce spacing on smaller screens */
    }

    table {
        font-size: 0.9em; /* Adjust table font size */
    }

    aside {
        width: 90%; /* Make aside narrower for smaller screens */
    }
}