/* ============================= 
 NAVBAR BASE
============================= */
.navbar {
  position: relative !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;

  z-index: 9999;
  background-color: transparent;
  padding: 18px 40px;
}

/* ============================= 
 LOGO
============================= */
.navbar-logo img {
  height: 75px;
  padding: 0;
  border-radius: 1rem;
}

/* ============================= 
 LINKS
============================= */
.navbar-links {
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #222222 !important;
  font-weight: 500;
  font-size: 15px;

  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #570000;
  border-bottom: 2px solid #570000;
}

/* ============================= 
 DROPDOWN
============================= */
.dropdown-menu {
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 8px 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 18px;
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: #570000;
}

/* ============================= 
 BUTTONS
============================= */
.navbar-actions .nav-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* Maintenance */
.navbar-actions .nav-btn:first-child {
  border: 1px solid #570000;
  color: #570000;
  background: #fff;
}

/* Payment */
.navbar-actions .nav-btn:last-child {
  background: #570000;
  color: #fff;
  border: none;
}

/* Hover */
.navbar-actions .nav-btn:hover {
  background: #7a0000;
  color: #fff;
}

/* ============================= 
 MOBILE
============================= */
/* ============================= 
 MOBILE
============================= */
@media (max-width: 1400px) {

  /* Collapse menu area */
  .navbar {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
  }

  /* Stack links vertically */
  .navbar-links {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    height: 100vw;
  }

  /* Bigger links */
  .navbar-links .nav-link {
    font-size: 3rem;
    font-weight: 600;
    color: #333333 !important;
    padding: 8px 0;
    border-bottom: none;
  }

  .navbar-links .nav-link:hover,
  .navbar-links .nav-link.active {
    color: #570000 !important;
  }

  /* Buttons under links */
  .navbar-actions {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    padding-bottom: 3rem;
  }

  .navbar-actions .nav-btn {
    width: 100%;
    font-size: 2rem;
    padding: 12px 0;
  }
}

/* ============================= 
 MOBILE
============================= */
@media (max-width: 1400px) {

  .navbar-logo {
    height: 30rem;
    height: auto;
  }
  /* Collapse menu area */
  .navbar {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
  }

  /* Stack links vertically */
  .navbar-links {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    height: 100vw;
    margin-bottom: 0;
  }

  /* Bigger links */
  .navbar-links .nav-link {
    font-size: 3rem;
    font-weight: 600;
    color: #333333 !important;
    padding: 8px 0;
    border-bottom: none;
  }

  .navbar-links .nav-link:hover,
  .navbar-links .nav-link.active {
    color: #570000 !important;
  }

  /* Buttons under links */
  .navbar-actions {
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
    width: 100%;
    padding-bottom: 7rem;
  }

  .navbar-actions .nav-btn {
    width: 66%;
    font-size: 3rem;
    padding: 12px 0;
    font-weight: 600;
    padding: .5rem 1rem;
    margin-top: 0;
  }
}

/* =========================================
   GLOBAL MOBILE ICON + NAV SIZE BOOST
========================================= */
@media (max-width: 1400px) {

  /* Navbar toggle icon */
  .navbar-toggler-icon {
    width: 5rem !important;
    height: 5rem !important;
    border: none !important;
  }

  .navbar-toggler {
    font-size: 5rem;
    border: none !important;
    margin-right: 2rem;
  }

  /* Nav links larger for touch targets */
  .nav-link {
    font-size: 1.2rem;
    padding: 10px 14px;
}

  /* Bootstrap icons */
  .bi {
    font-size: 2rem;
  }

  /* FontAwesome icons */
  .fa,
  .fas,
  .far,
  .fal,
  .fab {
    font-size: 2rem;
  }

}