/* Header Styles */
.navbar {
  background-color: transparent;
}

.navbar-brand img {
  max-width: 100px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
}

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

.btn-outline-light {
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: #f5c61c;
  border-color: #f5c61c;
  color: black;
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.9);
}

.dropdown-item {
  color: white;
}


/* Consistent header height for all pages */
header {
  min-height: 70vh;
}

/* Hero section specific styles */
.hero-section {
  min-height: 100vh;
}

/* Page header styles for non-index pages */
.page-header {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Reservation Button */
.floating-reservation-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #f5c61c;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-reservation-btn:hover {
  background-color: #e0b524;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}