/* --- Gallery Page Specific Styles --- */
      .gallery-header {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%), url('../images/parallax-img-2.jpg') center/cover no-repeat;
        padding: 120px 0 60px;
        color: #FFFFFF;
        text-align: center;
      }

      .gallery-header h1 {
        font-family: 'Cinzel', serif;
        color: #F59E0B;
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
      }

      /* Filter Navigation */
      .gallery-filters {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 40px;
      }

      .filter-btn {
        background: #F1F5F9;
        color: #334155;
        border: none;
        padding: 10px 22px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.25s ease;
      }

      .filter-btn:hover,
      .filter-btn.active {
        background: #D97706;
        color: #FFFFFF;
        box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
      }

      /* Grid & Items */
      .gallery-item {
        transition: all 0.35s ease;
      }

      .gallery-item.hide {
        display: none;
      }

      .gallery-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: #0F172A;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        cursor: pointer;
      }

      .gallery-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
      }

      .gallery-card:hover img {
        transform: scale(1.08);
        opacity: 0.85;
      }

      .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.85) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .gallery-card:hover .gallery-overlay {
        opacity: 1;
      }

      .gallery-overlay h5 {
        color: #FFFFFF;
        font-size: 16px;
        margin: 0 0 4px;
        font-weight: 600;
      }

      .gallery-overlay span {
        color: #F59E0B;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* Lightbox Modal */
      .lightbox-modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(15, 23, 42, 0.92);
        backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
        padding: 20px;
      }

      .lightbox-modal.active {
        display: flex;
      }

      .lightbox-content {
        max-width: 900px;
        width: 100%;
        text-align: center;
        position: relative;
      }

      .lightbox-content img {
        max-width: 100%;
        max-height: 80vh;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      }

      .lightbox-caption {
        color: #FFFFFF;
        margin-top: 15px;
        font-size: 16px;
      }

      .lightbox-close {
        position: absolute;
        top: -40px;
        right: 0;
        color: #FFFFFF;
        font-size: 30px;
        cursor: pointer;
        background: none;
        border: none;
      }

      
/* 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;
      }