/* General page styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white !important;
}

body.menu-open {
    overflow: hidden; /* Disables scrolling */
}

header {
    background-color: #ffffff;
    padding: 0; /* No padding for the header to avoid extra space */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* Stack elements vertically */
}

.header-banner {
    text-align: center;
    background-color: #0073bb;
    padding: 10px 0;
    color: #ffffff;
}

.site-title {
    font-size: 24px;
    margin: 0;
}

.header-content {
    display: flex;
    justify-content: space-between; /* Space between logo and buttons */
    align-items: center; /* Center items vertically */
    padding: 15px; /* Add padding around content */
}

.logo img {
    width: 100px;
}

.header-button-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between buttons */
}

.header-button {
    background-color: #0073bb;
    color: white;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header-button:hover {
    background-color: #005a99;
}

.welcome-message {
    font-weight: bold;
    margin-right: 15px; /* Space between welcome message and buttons */
}

@media (max-width: 768px) {
    .header-button-container {
        flex-direction: row; /* Stack buttons vertically on small screens */
        gap: 8px; /* Space between buttons */
        text-align: center; /* Center buttons on mobile */
    }

    .welcome-message {
        display: none; /* Hide welcome message on smaller screens */
    }

    .site-title {
        font-size: 20px; /* Adjust title size on small screens */
    }
}

        /* General Body and Header Styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        header {
            background: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative; /* Keep it in the flow of the document */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999; /* Ensure it stays above other content */
        }

        .header-banner {
            text-align: center;
            padding: 10px;
        }

        .header-banner h1 {
            margin: 0;
            font-size: 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s ease;
        }

        /* Slide-down Menu */
        #mobile-menu {
            position: absolute;
            top: 80px; /* Start just below the header */
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%); /* Hidden by default */
            transition: transform 0.3s ease;
            z-index: 1000; /* Below the header */
            overflow-y: auto; /* Allow scrolling for long menus */
            height: calc(100vh - 60px); /* Take up remaining screen height */
        }

        #mobile-menu ul {
            list-style: none;
            margin: 0;
            padding: 20px;
            text-align: center;
        }

        #mobile-menu ul li {
            padding: 15px 0;
        }

        #mobile-menu ul li a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
        }

        #mobile-menu ul li a:hover {
            text-decoration: underline;
        }

        /* Show menu */
        #mobile-menu.show {
            transform: translateY(0); /* Slide the menu down */
        }

        /* Page Content Placeholder */
        .content {
            padding: 20px;
            margin-top: 70px; /* Space for the fixed header */
        }
/* Menu List */
#mobile-menu ul {
    list-style: none;
    margin: 40px auto; /* Center vertically with margin */
    padding: 0;
    text-align: center;
    width: 90%; /* Make the menu occupy 80% of the screen width */
    border-bottom: 1px solid #ccc; /* Separator line */
    display: flex; /* Flexbox for alignment */
    justify-content: center; /* Center the links horizontally */
    align-items: center; /* Center the links vertically between top and separator */
    gap: 20px; /* Space between the links */
}

/* Menu Items */
#mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: normal;
}

/* Separator */
.menu-separator {
    color: #ccc; /* Match the separator style */
    font-size: 18px;
}

.menu-mascot {
    text-align: center; /* Center the image horizontally */
    margin: 20px 0; /* Add spacing around the image */
}

.menu-mascot img {
    width: 500px; /* Set image size */
    height: 300px; /* Ensure the image remains square */
    object-fit: cover; /* Ensure the image fits perfectly */
    max-width: 90%; /* Responsive for smaller devices */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}
