:root {
  --primary: #0b7285;
  --primary-dark: #12212e;
  --secondary:#6edbd6;
  --white: #e8fffa;
  --cream:#ece7dc;
  --glass: rgba(255, 255, 255, 0.15);
}

body {
  margin: 0;
  font-family: "Gelasio", sans-serif;
  background-color: #f8fafc; /* Light grey background makes the white nav pop */
}

/* Navbar Container */
.glass-nav {
  background: rgba(18, 144, 203, 0.85); /* Slightly translucent blue */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 0;
  transition: all 0.3s ease;
}

/* Brand styling */


.navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
}

.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
  width: 90%;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5em; /* Arrow နဲ့ စာသားကြား ခြားလိုက်တာ */
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%; /* margin နဲ့ ညှိထားတာ */
  background-color: white;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.nav-link.dropdown-toggle:hover::before {
  width: 70%; /* arrow ပါတာကြောင့် width ကို နည်းနည်းလျှော့ထားတာ ပိုလှတယ် */

}

.nav-link:hover {
  color: #ffffff !important;
}

/* Modern Buttons */
.btn-login {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

.btn-book {
  background: white;
  color: var(--primary);
  border-radius: 50px;
  padding: 7px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.btn-book:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
  }

  .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-link:not(.dropdown-toggle):hover::after,
  .nav-link:not(.dropdown-toggle).active::after {
    width: 80px;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em; /* Arrow နဲ့ စာသားကြား ခြားလိုက်တာ */
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }

  .nav-link.dropdown-toggle::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 50%; /* margin နဲ့ ညှိထားတာ */
    background-color: white;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }

  .nav-link.dropdown-toggle:hover::before {
    width: 70%; /* arrow ပါတာကြောင့် width ကို နည်းနည်းလျှော့ထားတာ ပိုလှတယ် */
  }

  .nav-link:hover {
    color: #ffffff !important;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

@media (max-width: 991px) {
  .footer-section {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-item {
    justify-content: center;
  }
}
