.reservation-trigger-btn {
  background-color: #e63c2f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.3125rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  transition: all 0.3s ease;
}

.reservation-trigger-btn:hover {
  background-color: #f8cd43;
  color: #333;
}

.reservation-popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reservation-img {
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.reservation-popup.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.reservation-popup-content {
  position: relative;
  background-color: #fff;
  margin: 1.25rem;
  max-width: 70rem;
  width: 100%;
  border-radius: 0.625rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  padding: 2rem;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-3.125rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-popup {
  position: absolute;
  top: 0.75rem;
  right: 2rem;
  color: #aaa;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #333;
}

.popup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.popup-header h2 {
  color: #e63c2f;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.popup-header p {
  color: #666;
  font-size: 1.4rem;
  margin: 0;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: bold;
  color: #444;
  font-size: 1.2rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  height: 5rem;
  resize: vertical;
}

.submit-btn {
  background-color: #e63c2f;
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.25rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background-color: #f8cd43;
  color: #333;
}

.contact-info {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #666;
}

.contact-info a {
  color: #e63c2f;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}
