
@font-face {
    font-family: 'Flight'; 
    src: url('Fonts/Flight.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}

.navbar {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-bottom: 0px !important;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed; 
    top: 0; 
    z-index: 1000; 
}


.navbar-logo {
    width: 220px;
    height: 84px;
    padding: 0px 0px 0px 0px;
    justify-content: center;
    display: flex;
}

.navbar-logo img { 
    max-width: 100%;
    max-height: 100%;
    margin-top: 5px;
}
.navbar-logo a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}


.navbar-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    padding-right: 10px !important;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-family: 'Flight';
    font-weight: normal;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #007bff; 
}

.navbar-actions{
    display: flex;
    align-items: center;
    gap: 10px; 
    padding-right: 17px; 
}

.navbar-booking-btn{
    background-color: #000;
    color: #fff;
    font-family: 'Flight';
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 5px;
    white-space: nowrap;
    transition: 
        background-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.navbar-booking-btn:hover{
    background-color: #111;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}