/* Common Navbar Styles */

body {
  padding-top: 80px;
}

/* Navbar container */
.navbar {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

/* Navbar brand/logo */
.navbar-brand img {
  max-height: 40px;
  width: auto;
}

/* Navbar links */
.navbar .nav-link {
  font-weight: 400;
  color: #333;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #f0b429;
}

.navbar .nav-link.active {
  font-weight: 500 !important;
  position: relative;
  color: #f0b429;
}

.navbar .nav-link.active:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #f0b429;
}

/* Auth buttons */
.auth-buttons {
  display: flex;
  align-items: center;
}

.btn-signup, .btn-login {
  text-decoration: none;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-signup {
  background-color: transparent;
  color: #333;
  margin-right: 10px;
}

.btn-signup:hover {
 color: #f0b429;
}

.btn-login {
  
}

.book-now-btn {
  background-color: #f0b429;
  color: white;
  box-shadow: 0 4px 8px rgba(240, 180, 41, 0.2);
  
}


/* Book Now Button */
.book-now-btn {
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
}

/* User Profile Dropdown */
.user-profile-dropdown {
  position: relative;
}

.user-profile-dropdown .dropdown-toggle {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}

.user-profile-dropdown .dropdown-toggle:hover {
  background-color: rgba(240, 180, 41, 0.1);
}

.user-profile-dropdown .dropdown-toggle::after {
  display: none;
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0b429;
  background-color: #f0f0f0;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-weight: 500;
  color: #333;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  margin-top: 10px;
}

.dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.dropdown-item:hover {
  background-color: rgba(240, 180, 41, 0.1);
  color: #f0b429;
}

.dropdown-item i {
  color: #f0b429;
}

.dropdown-header {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .navbar-nav {
    margin: 10px 0;
  }
  
  .d-flex.align-items-center,
  .auth-buttons {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    justify-content: space-between;
  }
  
  .book-now-btn,
  .btn-signup, 
  .btn-login {
    width: 48%;
    text-align: center;
  }
  
  .user-profile-dropdown {
    width: 48%;
  }
} 