body {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  background: #fffdf7;
  margin: 0; /* avoid overflow from default margins */
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background: #fffdf7CC; /* translucent to let stars peek through */
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #f2eee1;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 28px;
}

.navbar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-links a {
  color: inherit;
  text-decoration: none;
  font-family: 'Courier Prime', monospace;
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar-links a:hover {
  background: #f2eee1;
}

/* Mobile menu toggle button */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #000;
  transition: all 0.1s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fffdf7;
    border-top: 1px solid #e1dac3;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
  }
  
  .navbar-links.active {
    max-height: 300px;
  }
  
  .navbar-links li {
    border-bottom: 1px solid #f2eee1;
    margin: 0;
    padding: 0;
  }
  
  .navbar-links a {
    display: block;
    padding: 16px 20px;
    text-align: center;
  }
  
  .navbar-links a:hover {
    background: #f2eee1;
  }
  
  /* Animate hamburger to X */
  .navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
  }
  
  .navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
  }
}

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}

.form-group {
  margin-bottom: 1.5rem;
}

input {
  width: 200px;
  padding: 12px 16px;
  border: 2px solid #e1dac3;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Courier Prime', monospace;
  transition: all 0.3s ease;
  background: #f9f7ee;
  text-align: center;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #E291BA;
  background: #fffef9;
}

.btn {
  padding: 12px 30px;
  background: #E291BA;
  color: white;
  font-family: 'Courier Prime', monospace;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.card {
  border-radius: 10px;
  background: #e291b9;
  padding: 1rem;
  margin: 1rem;
  display: inline-block;
}

table {
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

tr {
  height: 48px;
}

td,
th {
  vertical-align: middle;
  padding: 0.5rem 0.75rem;
}

.table-field-name {
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Background decoration field */
.decoration-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* let users click through */
  z-index: 0;
}

.decoration-field .star {
  position: absolute;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
}

/* Repeating image banner */
.image-banner {
  width: 100%; /* How far across the screen does the banner go? */
  height: 380px; /* How tall is the banner including whitespace? */
  background-image: url("../images/BannerImage.2cad136555d4.jpg");
  background-repeat: repeat-x;
  background-size: auto 380px; /* How should the image scale within the banner? */
  background-position: center; /* Vertically and horizontally center the repeating images within the banner */
}

/* Venue section responsive layout */

.venue-grid {
  display: grid;
  max-width: 800px;
  margin: 0 auto;
}

.venue-details {
  padding: 10px;
}

/* Desktop styles - 2 columns side by side */
@media (min-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .venue-item {
    padding: 25px;
  }
}
