/*font family from google fonts*/
@import url("https://fonts.googleapis.com/css2?family=Baloo:wght@400;700&display=swap");

html {
    text-align: center;
    font-family: 'Baloo', monospace;
    text-shadow: 3px 3px 7px rgba(0,0,0,0.5);
    margin: 0;
    padding: 0;
    height: 100%;
    background-image: url('../IMAGES/Ch6S3Lobby.jpeg');
    background-size: cover;
}

body {
    text-align: center;
    font-family: 'Baloo', monospace;
    text-shadow: 3px 3px 7px rgba(0,0,0,0.5);
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: url('../IMAGES/Ch6S3Lobby.jpeg');
    background-size: cover;
}


.progress-container {
    margin: 20px auto;
    text-align: center;
    width: calc(100% - 50px);
    position: relative;
}

.selector-container {
    font-family: 'Baloo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: rgb(0, 0, 0, 0.35);
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.selector-container label {
    margin-right: 10px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

#countdownSelector {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Baloo', sans-serif;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

#countdownSelector:hover {
    background-color: #eee;
}

progress {
    width: 100%;
    height: 30px;
    border-radius: 0;
    position: relative;
}

.progress-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.timing-banner {
    font-size: 18px;
    font-style: italic;
    background: rgba(0, 0, 0, 0.4);
    border: 4px solid #ff0000;
    padding: 8px 16px;
    border-radius: 16px;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

#progressLabel {
    margin-top: 11.5px;
}

#countdown {
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-shadow: 0.1em 0.1em 0.15em #000000;
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    background-color: #333;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

li {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

li a {
    display: block;
    color: white;
    padding: 14px 0;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

li a:hover {
    text-shadow: 3px 3px 7px rgb(141, 0, 66);
    color: #ff0077;
    background-color: #900245;
}

.active {
    background-color: #900245;
    color: #fff; /* Highlight active step */
}

.titleBlock {
    font-size: 35px;
    color: white;
}

.navigation-bar {
    font-size: 22px;
}

#fortniteLevel {
    margin: 15px;
    font-size: 30px;
    color: white;
}

#enddate {
    font-size: 15px;
    color: white;
    text-shadow: 1.5px 1.5px 2px #000000;
    margin: 0px;
}

@media (max-width: 768px) {
    .titleBlock {
        font-size: 24px;
        padding: 10px;
    }

    .navigation-bar {
        flex-direction: column;
        font-size: 18px;
        border-radius: 0;
    }

    li a {
        padding: 10px 0;
    }

    .progress-container {
        width: 90%;
    }

    .selector-container {
        font-size: 13px;
        padding: 8px 12px;
        margin-top: 10px;
        width: 90%;
    }

    #countdownSelector {
        font-size: 14px;
        width: 100%;
        padding: 10px;
    }

    #countdown {
        font-size: 20px;
        padding: 0 10px;
    }

    .progress-text {
        font-size: 16px;
    }

    #progressLabel {
        font-size: 16px;
    }

    #enddate {
        font-size: 13px;
        padding: 0 10px;
    }
}
