/* ============================================================
   FILE: css/landing_overrides.css
   PROJECT: Bri's Pampered Paws
   PURPOSE: Landing page gallery + hidden admin paw link
   AUTHOR: Dusty Lunn
   LAST UPDATED: 2026-02-03
   ============================================================ */

/* --- Dog gallery --- */

.dog-gallery{ padding: 28px 0 0; }

.gallery-wrap{
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 22px;
  align-items:start;
}

.gallery-text{
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(230,90,163,0.14);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.gallery-text p{
  color:#6b4a5b;
  line-height:1.6;
  margin: 0 0 14px;
}

.gallery-card{
  background:#fff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.gallery-frame{
  width:100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,230,241,0.35);
  border: 1px solid rgba(230,90,163,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
}

.gallery-frame img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.gallery-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 2px 6px;
}

.gbtn{
  border: 1px solid rgba(230,90,163,0.22);
  background: rgba(255,230,241,0.55);
  color:#4a2b3a;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}

.gstatus{
  flex:1;
  text-align:center;
  color:#7a5266;
  font-weight: 700;
  font-size: 0.95rem;
}

.gallery-thumbs{
  display:flex;
  gap: 8px;
  overflow:auto;
  padding: 8px 2px 2px;
}

.gallery-thumbs img{
  width:72px;
  height:54px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor:pointer;
  flex: 0 0 auto;
}

.gallery-thumbs img.active{
  border-color: rgba(230,90,163,0.65);
}

@media (max-width: 980px){
  .gallery-wrap{ grid-template-columns: 1fr; }
}


/* --- Hidden admin paw link --- */

.paw-admin{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  text-decoration:none;
  font-size: 22px;

  opacity: 0.06;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(230,90,163,0.18);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  z-index: 9999;

  transition: opacity .15s ease, transform .12s ease;
}

.paw-admin:hover{
  opacity: 0.95;
  transform: translateY(-1px);
}
