/* Page-specific styles extracted from /style.css */

h1{
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 .5rem;
}

/* === for laser and animation buttons on ed/index.html === */
.header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:2rem;
}

.header-card{
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 1rem 1rem 0.6rem;   /* top | sides | bottom */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin: 0 0 0.6rem;          /* reduce gap below card */
}


.gallery{
  margin-top: .75rem;
}

.quick-links{
  display:flex;
  align-items:center;
  gap:.6rem;
}


.quick-label{
  font-size:.95rem;
  opacity:.75;
}

.quick-pill{
  text-decoration:none;
  padding:.52rem 1rem;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color:#222;
  font-weight:600;
}

.quick-pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* --- Filters (Ed index only) --- */
.filter-group{
  display:flex;
  gap: .75rem 1rem;
  align-items:flex-end;
  justify-content:flex-start;

  /* spacing */
  margin: 0.4rem 0 1rem;

  /* make it feel lighter (not a big “form card”) */
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: .75rem .9rem;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-group > div{
  display:flex;
  flex-direction:column;
  gap: .25rem;

  /* remove the “mini-card inside card” look */
  border: none;
  padding: 0;
  background: transparent;
}

.filter-group label{
  font-weight: 600;
  font-size: 0.95rem;
}

.filter-group input,
.filter-group select{
  min-width: 180px;
}

/* mobile: stack nicely */
@media (max-width: 600px){
  .filter-group{
    flex-direction: column;
    align-items: stretch;
  }
  .filter-group input,
  .filter-group select{
    width: 100%;
    min-width: 0;
  }
}
