body {
  background-color: #f9f9f9;
}

.card {
  border-radius: 12px;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
}

h2 {
  font-weight: 600;
  color: #333;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9f9f9;
}

main {
  flex: 1;
}

footer {
  width: 100%;
  position: relative;
  bottom: 0;
}

.navbar-brand img {
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

#jadwal-shalat .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#jadwal-shalat .card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.foto-container {
    width: 300px;       /* lebar tampilan foto */
    height: 200px;      /* tinggi tampilan foto */
    overflow: hidden;   /* sembunyikan bagian foto yang lebih besar */
    border-radius: 5px;
}

.foto-container img {
    width: 100%;        /* sesuaikan dengan container */
    height: 100%;       /* sesuaikan dengan container */
    object-fit: cover;  /* crop foto agar sesuai container */
    display: block;
}

.foto-container {
    overflow: hidden;
    border-radius: 8px;
}

.foto-container img {
    width: 100%;
    height: 150px; /* semua gambar sama tinggi */
    object-fit: cover;
    display: block;
    transition: filter 0.3s;
}

.foto-container:hover img {
    filter: grayscale(70%);
}

.foto-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px; /* jarak vertikal antar baris */
}

.foto-container img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s;
}

.foto-container:hover img {
    filter: grayscale(70%);
}

