/* Navbar Styles */
.navbar {
    background-color: #ff8400;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    position: relative;
    z-index: 1000;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Space between links */
    justify-content: center; /* Center the links */
    flex-grow: 1; /* Allow links to take remaining space */
    transition: all 0.3s ease;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FFCB04;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    .nav-links.active {
        display: flex !important; /* Ensure visibility when active */
    }

    .menu-toggle {
        display: flex;
    }

    .btn-book {
        display: none; /* Hide button on mobile view if you prefer */
    }
}
