/* Body styles with background image */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("images/sod.jpg") no-repeat center center fixed; /* Ensure correct path to image */
    background-size: contain;
    background-position: center center;
	background-color: #e1e1e1;
    background-attachment: fixed;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    color: white;
    overflow: hidden;
}
/* Countdown Title Styles */
.countdown-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem; /* Adjust font size as needed */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 10px;
}

/* Fixed footer-style countdown row with very thin height */
.countdown-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Full width of the page */
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 5px 0; /* Thin padding for footer-style row */
    display: flex;
    justify-content: center; /* Centers the countdown blocks */
    align-items: center; /* Centers the countdown blocks vertically */
    gap: 5px; /* Space between blocks */
    height: 30px; /* Even thinner height for the countdown row */
    z-index: 1000; /* Ensures the countdown stays at the top */
}

/* "Just" text styles (on the left side of the footer) */
.just-text {
    color: white;
    font-size: 1rem; /* Adjust font size as needed */
    font-weight: bold;
    margin-right: 10px; /* Adds space between "Just" and the countdown */
    white-space: nowrap;
}

/* Individual countdown block */
.countdown {
    text-align: center;
    font-size: 0.7rem; /* Smaller font size to fit the thin row */
}

/* Countdown numbers styling */
.time {
    font-size: 1rem; /* Reduced font size for numbers to fit in a thin row */
    font-weight: bold;
    color: white;
    display: block;
}

/* Countdown label styling */
.label {
    font-size: 0.6rem; /* Reduced font size for labels */
    color: white;
    font-weight: lighter;
}

/* Divider styling for clusters (e.g., ":", etc.) */
.divider {
    font-size: 1rem; /* Same size as the numbers */
    font-weight: bold;
    color: white; /* Ensures the divider is visible */
}

/* More Text Styling (on the right side of the footer) */
.more-text {
    color: white;
    font-size: 1rem; /* Adjust font size as needed */
    font-weight: bold;
    text-align: right; /* Aligns text to the right */
    margin-left: 10px; /* Adds space between countdown and "more to go" text */
    white-space: nowrap; /* Ensures the text doesn't break into a new line */
}

/* Media Queries for Responsiveness */

/* Smaller screens (e.g., tablets) */
@media (max-width: 768px) {
    .countdown-container {
        padding: 3px 10px; /* Adjust padding for smaller screens */
    }

    .time {
        font-size: 0.9rem; /* Slightly smaller font size for numbers */
    }

    .label {
        font-size: 0.5rem; /* Adjust label font size */
    }

    .divider {
        font-size: 0.9rem; /* Divider size */
    }

    .more-text {
        font-size: 0.8rem; /* Smaller font size for the text */
    }

    .just-text {
        font-size: 0.9rem; /* Adjust font size for "Just" */
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    .countdown-container {
        padding: 3px 10px; /* Adjust padding for mobile */
    }

    .time {
        font-size: 0.8rem; /* Further reduce font size on mobile */
    }

    .label {
        font-size: 0.4rem; /* Further reduce label font size on mobile */
    }

    .divider {
        font-size: 0.8rem; /* Divider size */
    }

    .more-text {
        font-size: 0.7rem; /* Smaller font size for the text on mobile */
    }

    .just-text {
        font-size: 0.8rem; /* Adjust font size for "Just" on mobile */
    }