/* Oversized header logo — sits above the bar and spills into page content */
.bodkin-topnav {
  overflow: visible;
}
.bodkin-logo {
  display: block;
  margin-top: -1.25rem;
  margin-bottom: -1.75rem;
}
.bodkin-logo img {
  display: block;
  pointer-events: none;
}
@media (min-width: 768px) {
  .bodkin-logo {
    margin-top: -1.75rem;
    margin-bottom: -2.5rem;
  }
}

/* Bodkin form / flash helpers for Laravel pages */
.bodkin-flash {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .bodkin-flash { padding-left: 4rem; padding-right: 4rem; }
}
.bodkin-flash--success { color: #8B7355; }
.bodkin-flash--error { color: #c45c5c; }

.bodkin-field { margin-bottom: 2rem; }
.bodkin-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(244, 241, 234, 0.45);
  margin-bottom: 0.75rem;
}
.bodkin-field input,
.bodkin-field select,
.bodkin-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 241, 234, 0.2);
  padding: 0 0 0.75rem;
  color: #F4F1EA;
  font-size: 1.125rem;
  font-family: inherit;
  outline: none;
  border-radius: 0;
}
.bodkin-field input:focus,
.bodkin-field select:focus,
.bodkin-field textarea:focus {
  border-bottom-color: #8B7355;
}
.bodkin-field select option {
  background: #1A1C19;
  color: #F4F1EA;
}
.bodkin-field textarea { resize: vertical; min-height: 5rem; }
.bodkin-alert {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(244, 241, 234, 0.7);
}
.bodkin-alert--error { color: #c45c5c; }
.bodkin-alert--success { color: #8B7355; }

/* Event ticket modal on dark theme */
.bodkin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 28, 25, 0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.bodkin-modal-overlay.is-open { display: flex; }
.bodkin-modal {
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: #3D2B1F;
  padding: 2rem 1.75rem;
  position: relative;
}
.bodkin-modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  color: rgba(244, 241, 234, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.bodkin-modal-close:hover { color: #F4F1EA; }
