/* Basic styles */
header {
    background-color: #333;
    padding: 15px;
    color: #fff;
    position: relative;
}

nav {
    display: flex;
    gap: 20px;
    margin-left: auto; /* Align nav to the right */
}

nav a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s ease;
}

/* Hover effects */
nav a:hover {
    background-color: #555;
    transform: scale(1.1);
}

/* Hide the menu button on larger screens */
.menu-toggle {
    display: none;
    background: none;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        background-color: #333;
        padding: 20px;
        position: absolute;
        right: 0;
        top: 60px;
        width: 200px;
        border-radius: 10px;
        z-index: 1;
    }

    .nav-menu.active {
        display: flex;
    }

    nav a {
        font-size: 20px;
        text-align: center;
        padding: 12px;
    }
}
