body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}


/* ----------------------------- Header Section ----------------------------- */
#logo img {
    justify-content: left;
    width: 240px;
    height: 160x;
    z-index: 1;
}

#logo {
    flex: 0 1 auto;
}

#header {
    margin: 0;
    padding: 0;
    /* change to white once done more stuff */
}

#header-container {
    display: flex;
    align-items: center;
    /* Align items vertically centered */
    padding: 10px 20px;
    /* Optional: Add some padding */
    /*!!!!!!Change the font to Azur sans-serif!!!!!!*/
    margin: 0;
    font-size: 15px;
}

nav {
    flex: 1 1 auto;
    /* Allow the nav to grow and shrink */
    text-align: center;
    /* Center the nav content */
}

nav ul {
    list-style-type: none;
    /* Remove bullets */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margin */
    display: flex;
    /* Use flexbox to arrange items horizontally */
    justify-content: center;
}

nav ul li {
    padding: 10px 20px;
    text-align: center;
    /* Add padding for spacing */
}

nav ul li a {
    text-decoration: none;
    /* Remove underline from links */
    color: black;
    /* Set link color */
}

nav ul li a:hover {
    color: grey;
    /* Change color on hover */
}

/* ------------------------------- Mobile Mode Header ------------------------------ */

/* Hide the menu icon by default */
#menu-toggle {
    display: none;
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 960px) {
    #header-container {
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        width: 100%;
    }

    nav ul.show {
        display: flex;
    }

    #menu-toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 10px;
    }

    #menu-toggle img {
        width: 30px;
        height: 30px;
    }
}

/* ----------------------------- Middle Message ----------------------------- */

#coming-soon {
    text-align: center;
    width: 100%;
    background-color: #1F2330;
    color: white;
    padding: 30px 0px;
    font-size: 60px;
}

#image-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 30px 0px;
}

#image-row img {
    padding: 10px 15px;
    width: 5%;
    /* Make each image take equal width */
    height: auto;
    /* Ensure the image maintains its aspect ratio */
    flex: 1;
    /* Allow images to grow and shrink to fill the container */
    border-radius: 20px;
}

@media only screen and (max-width: 960px) {
    #coming-soon {
        font-size: 20px;
        padding: 90px 0px;
    }

    #image-row {
        padding: 10px 0px;
    }

    #image-row img {
        width: 15%;
        padding: 0px 5px;
        border-radius: 10%;
    }
}

/* --------------------------------- Footer --------------------------------- */

#footer {
    width: 100%;
    padding: 30px 20px;
    transition: background-color 0.2s ease-in;
}

#footer:hover {
    background-color: #F4F5F5;
}

#footer #icon-container {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    position: relative;
    right: 50px;
}

#footer #icon-container img {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

@media only screen and (max-width: 960px) {
    #footer #icon-container {
        justify-content: center;
        right: 0;
    }
}