@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);
}




.m-navbar {
  display: none;
}


.m-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.836);
  z-index: 1100;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.m-nav-panel {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1150;
  padding: 18px 20px 24px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


@media (max-width: 1023px) {
  .navbar { display: none; }
  .m-navbar { display: flex; }
}


.m-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: #fff;
  z-index: 1200;

  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.m-nav-title {
  font-family: 'Flight';
  text-decoration: none;
  color: #111;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: normal;
}


.m-nav-burger {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  align-content: center;
  gap: 6px;
}

.m-nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.m-nav-panel a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #111;
  font-family: 'Flight';
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.m-nav-panel a:last-child {
  border-bottom: 0;
}


.m-nav-book {
  margin-top: 14px;
  text-align: center;
  background: #111;
  color: #fff !important;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #111;
}


body.m-nav-open .m-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.m-nav-open .m-nav-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}



.m-nav-brand{
  display: flex;
  align-items: center;
  margin-right: 40px;
  gap: 10px;
}

.m-nav-logo{
  height: 70px;
  width: auto;
}

.m-nav-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.m-nav-main{
  font-family: 'Flight';
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
}

.m-nav-sub{
  font-family: 'Flight';
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
}
