.fixed-img {
    height: 200px; /* atur sesuai keinginan */
    object-fit: cover;
    width: 100%;
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* assets/css/home.css */

body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background-color: #f9fafb;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

.hero-img {
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.btn-danger {
  background-color: #dc2626;
  border: none;
}

.btn-outline-dark {
  background-color: #0f766e;
  color: white;
  border: none;
}

.btn-outline-dark:hover {
  background-color: #0d5c58;
}

section {
  scroll-margin-top: 80px;
}

a.btn-sm {
  font-size: 0.875rem;
}

.badge.bg-success {
  font-size: 0.85rem;
  padding: 0.45em 0.7em;
}

.bg-light {
  background: linear-gradient(90deg, #f8fafc 0%, #e2e8f0 100%);
}
