/* Base styles */
body {
  font-family: 'Crimson Text', Georgia, serif !important;
  background-color: white;
  color: #121212;
  line-height: 1.6;
}

/* Map popup styles */
.maplibregl-popup-content {
  font-family: 'Crimson Text', Georgia, serif !important;
}

.maplibregl-popup-content strong {
  font-family: 'Crimson Text', Georgia, serif !important;
  font-weight: 700 !important;
}

.maplibregl-popup-content a {
  font-family: 'Crimson Text', Georgia, serif !important;
}

/* Custom font sizes */
.fs-7 {
  font-size: 0.95rem !important;
  display: inline-flex;
  align-items: center;
}

.fs-7 a {
  color: #0d6efd;
  text-decoration: none;
}

.fs-7 a:hover {
  text-decoration: underline;
}

/* Heading styles */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.list-group-item {
  position: relative;
}

/* Navbar styles */
.navbar {
  background-color: white !important;
  border-bottom: 1px solid #e2e2e2;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #121212 !important;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  color: #363636 !important;
  font-size: 1.1rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

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

.nav-link.active {
  font-weight: 600;
  color: #121212 !important;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Container and main content */
.container {
  max-width: 1200px;
  padding: 0 2rem;
}

.main-content {
  padding: 0.5rem 0;
}

.main-content .container {
  background-color: transparent;
}

/* Buttons */
.btn-primary {
  background-color: #121212;
  border-color: #121212;
  border-radius: 0;
  padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
  background-color: #363636;
  border-color: #363636;
}

/* Footer */
.footer {
  border-top: 1px solid #e2e2e2;
  color: #363636;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  .navbar-brand img {
    height: 30px;
  }
  .container {
    padding: 0 1rem;
  }
}

/* Engagement Banner */
.engagement-banner {
  margin-bottom: 0;
  border-radius: 0;
  border: none;
}

.engagement-banner .btn-outline-dark {
  background-color: white;
  border-color: #121212;
  color: #121212;
  transition: all 0.2s ease;
}

.engagement-banner .btn-outline-dark:hover {
  background-color: #121212;
  color: white;
}

.engagement-banner .alert-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.engagement-banner .alert-link:hover {
  border-bottom-width: 2px;
}

/* Coffee support floating button */
.coffee-support__button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1080; /* above most content, below modal backdrop */
  border-radius: 999px;
  padding: 0.6rem 1rem;
}

@media (max-width: 768px) {
  .coffee-support__button {
    right: 1rem;
    bottom: 1rem;
    padding: 0.55rem 0.9rem;
  }
}

/* Coffee support modal — tier buttons read clearly as actions */
.coffee-support-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  border-width: 2px;
  box-shadow: 0 2px 0 rgba(18, 18, 18, 0.06);
}

.coffee-support-tier:hover {
  box-shadow: 0 6px 18px rgba(18, 18, 18, 0.12);
}

.coffee-support-tier__main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.coffee-support-tier__action {
  font-weight: 600;
  line-height: 1.25;
}

.coffee-support-tier__price {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.2;
}

.coffee-support-tier__price--on-primary {
  color: rgba(255, 255, 255, 0.88);
}

.coffee-support-tier__icon {
  flex-shrink: 0;
  font-size: 1.35rem;
  opacity: 0.85;
}

.coffee-support-tier:hover .coffee-support-tier__icon {
  opacity: 1;
  transform: translateX(2px);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
/* Navbar search styles */
.navbar-search {
  position: relative;
  width: 300px;
}

.navbar-search-input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  border: 1px solid var(--border-gray, #ced4da);
  border-radius: 0.375rem;
}

.navbar-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid var(--border-gray, #ced4da);
  border-radius: 0.375rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-top: 0.25rem;
}

.result-group {
  margin-bottom: 0.5rem;
}

.result-group-header {
  padding: 0.5rem;
  font-weight: bold;
  color: #6c757d;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.result-item {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.result-item:hover,
.result-item.selected {
  background-color: #0d6efd;
  color: white;
}

/* Modal search styles */
.modal-search-container {
  position: relative;
}

.modal-search-input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-family: 'Source Serif Pro', Georgia, serif;
  border: 1px solid var(--border-gray, #ced4da);
  border-radius: 0.375rem;
}

/* Ensure modal z-index is correct */
.modal {
  z-index: 1050;
}

.modal-backdrop {
  z-index: 1040;
}

/* Loading state */
.navbar-search.is-loading::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid #dee2e6;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: spin 0.75s infinite linear;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
} 
/*


 */ 

.drag-handle {
  cursor: grab !important;
  color: #666;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin-right: 10px;
}

.drag-handle:hover {
  color: #333;
  background-color: #e9ecef;
}

.drag-handle:active {
  cursor: grabbing !important;
}

.sortable-ghost {
  opacity: 0.5;
  background: #f8f9fa;
}

.sortable-chosen {
  background-color: #f0f0f0;
} 

/*# sourceMappingURL=application.css-a41604b67d1070e851bbc8c100dda8096fed8f2fe752a512faaa77a96dbb57f7.map */
