/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f0f4f8;
  color: #111;
  line-height: 1.6;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 50px;
}

h1 {
  font-size: 2.8rem;
  color: #1e40af;
  margin-bottom: 12px;
}

header p {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid Cards */
.faucet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin: 0 0 40px;
}

.faucet-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.faucet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* Thumbnail / Logo – Bagian utama yang diperkuat */
.card-logo {
  width: 160px !important;           /* Ukuran besar & dipaksa */
  height: 160px !important;
  min-width: 160px;
  max-width: none !important;        /* Hilangkan batas max-width yang mungkin override */
  object-fit: contain;               /* Logo utuh, ga stretch/kepotong */
  margin: 0 auto 24px;               /* Center & jarak bawah */
  display: block;
  border-radius: 16px;
  background: #f8f9fa;               /* Background ringan biar logo pop (terutama kalau transparent) */
  padding: 12px;                     /* Ruang dalam biar ga nempel tepi */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Shadow halus biar premium */
}

/* Judul & Deskripsi */
.faucet-card h3 {
  font-size: 1.65rem;
  margin-bottom: 14px;
  color: #111;
}

.faucet-card p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 28px;
  min-height: 90px;                  /* Biar deskripsi rata tinggi antar card */
}

/* Tombol */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 70px;
  color: #666;
  font-size: 0.95rem;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  
  .faucet-grid {
    grid-template-columns: 1fr;
  }
  
  .faucet-card {
    padding: 28px 20px;
  }
  
  .card-logo {
    width: 140px !important;
    height: 140px !important;
    min-width: 140px;
  }
}