/* ===============================
   STYLE UTAMA PDCAT SHOP
   =============================== */

body {
  background-color: #f4f8ff;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #0d47a1, #1976d2);
  color: white;
  border-radius: 0 0 20px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

/* MARQUEE PROMO */
.marquee {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 0.6rem;
  font-weight: 500;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  animation: move 12s linear infinite;
}

@keyframes move {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* CARD KUCING */
.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* FOOTER */
footer {
  background: #0d47a1;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  border-radius: 15px 15px 0 0;
}

/* FOTO ADMIN */
#adminPhoto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1976d2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .card img {
    height: 180px;
  }
}
