/* ==========================================================================
   RESERVATION FORM STYLING
   ========================================================================== */

.reservation-section {
  padding: 80px 0;
}

.reservation-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(11, 25, 44, 0.08);
  border: 1px solid #E5E7EB;
}

.form-header {
  margin-bottom: 35px;
}

.form-header h2 {
  color: #0B192C;
  font-size: 2.2rem;
  margin-top: 5px;
}

.form-header p {
  color: #6B7280;
  font-size: 15px;
}

.form-group label {
  font-weight: 600;
  font-size: 13px;
  color: #0B192C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.custom-input {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  padding: 10px 16px;
  font-size: 15px;
  color: #1F2937;
  transition: all 0.25s ease;
}

textarea.custom-input {
  height: auto;
}

.custom-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  outline: none;
}

/* SweetAlert Dark Theme Tweaks */
.swal2-popup {
  border: 1px solid #D4AF37 !important;
  border-radius: 14px !important;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .reservation-card {
    padding: 25px 20px;
  }
}



/* ==========================================================================
   COMPACT PAGE HEADER (RESERVATION / SUBPAGES)
   ========================================================================== */

.reservation-page-header {
  position: relative;
  padding: 80px 0 100px 0; /* Reduced height, creates room for form overlap */
  background-color: #0B192C;
  overflow: hidden;
  color: #ffffff;
}

.reservation-page-header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(1);
  z-index: 1;
}

.reservation-page-header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.85) 0%, rgba(11, 25, 44, 0.95) 100%);
  z-index: 2;
}

.relative-z {
  position: relative;
  z-index: 3;
}

/* Breadcrumbs */
.custom-breadcrumb {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.custom-breadcrumb .breadcrumb-item {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-breadcrumb .breadcrumb-item a {
  color: #D4AF37 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff !important;
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #E2E8F0 !important;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Titles */
.reservation-page-header .page-title {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.reservation-page-header .page-subtitle {
  font-size: 16px;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pull the form card up slightly for a seamless look */
.reservation-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .reservation-page-header {
    padding: 60px 0 80px 0;
  }
  .reservation-page-header .page-title {
    font-size: 2rem;
  }
}



/* Bordered Button Styling for Staff Portal */
      /* Bordered Button Styling for Staff Portal */
.staff-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: transparent;
}

/* Hover state fix */
.staff-portal-btn:hover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: transparent;
}

      /* Modal Styling */
      .staff-modal-content {
        background: #0b192c;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        color: #ffffff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.6);
      }
      .staff-modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 25px;
        position: relative;
      }
      .staff-modal-title {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        letter-spacing: 1px;
        font-size: 1.25rem;
        margin: 0;
      }
      .staff-modal-body {
        padding: 25px;
      }
      .staff-modal-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 25px;
      }
      .btn-webmail-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #d4af37;
        color: #0b192c !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 20px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
      }
      .btn-webmail-link:hover {
        background: #f3e5ab;
        color: #000 !important;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      }
      .modal-close-custom {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        opacity: 0.7;
        cursor: pointer;
      }
      .modal-close-custom:hover {
        opacity: 1;
        color: #d4af37;
      }