/* Default navigation (large screens) */
#menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #222;
    padding: 10px 0;
    color: white;
    flex-wrap: wrap;
    transition: max-height 0.3s ease;
}

/* Hide the hamburger menu button by default */
#menu-toggle {
    display: none;
}

/* Mobile view (max-width 768px) */
@media screen and (max-width: 768px) {
    #menu {
        display: none; /* Hide the default navigation menu */
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        background-color: #333;
        border: 1px solid #444;
        max-height: 0;
        overflow: hidden;
    }

    #menu a {
        text-align: center;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 1px solid #555;
    }

    #menu-toggle {
        display: block; /* Show the hamburger menu button */
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
        margin-left: 20px;
    }
}

/* Show the menu when expanded */
#menu.open {
    display: flex;
    max-height: 500px;
}



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #336699;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav {
    background: #222;
    display: flex;
    justify-content: center;
    padding: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}

nav a:hover {
    background: #444;
}

.banner {
    width: 100%;
    height: 400px;
    background: url('../images/banner.png') no-repeat center center/cover;
}

.banner2 {
    width: 100%;
    height: 400px;
    background: url('../images/loadingvanbanner.png') no-repeat center center/cover;
}

.banner3 {
    width: 100%;
    height: 400px;
    background: url('../images/banner3.png') no-repeat center center/cover;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tiles {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.tile {
    flex: 1;
    padding: 20px;
    background: #f8f8f8;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.tile:hover {
    transform: scale(1.05);
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
