/* style.css */
/* === GLOBAL STYLES === */
body {
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  background: linear-gradient(to right, #f9fbfc, #eef3f9);
  margin: 0;
  padding: 2rem;
  color: #333;
}

h2 {
  text-align: center;
  color: #1a73e8;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* === FILTER SECTION === */
.filter-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.filter-group select {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 5px rgba(26, 115, 232, 0.3);
}

/* === CARD STYLING === */
#media-list,
#lab-list {
  max-width: 960px;
  margin: 0 auto;
}

.media-card {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.media-card:hover {
  transform: translateY(-4px);
}

.media-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #333;
}

.media-card p {
  margin: 0.3rem 0;
  color: #555;
  font-size: 0.95rem;
}

/* === BUTTON === */
.btn-link {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(135deg, #1a73e8, #00c6ff);
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-link:hover {
  background: linear-gradient(135deg, #0f5dd9, #00aaff);
}

/* === RESPONSIVE === */
@media screen and (max-width: 600px) {
  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group select {
    width: 100%;
  }

  .media-card {
    padding: 1rem;
  }
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

.title {
  font-size: 1.8rem;
  color: #1a73e8;
  margin-left: 1rem;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #1a73e8;
}

.main {
  padding: 2rem 0;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 5%;
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card h3 {
  margin-top: 0;
  color: #1a73e8;
}

.footer {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
  background-color: #0b58ab;
  margin-top: 3rem;
}

/* Header tanpa teks, hanya logo kecil */
.site-header {
  position: fixed;
  top: 55;
  left: 0;
  padding: 45px;
  z-index: 1000;
  background-color: transparent; /* Atau ubah jadi warna solid jika mau */
}

/* Logo kecil pojok kiri */
.logo-kecil {
  width: 150px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

