body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* sprječava da slika iskače van */
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ponaša se kao background-size: cover */
  object-position: center; /* ponaša se kao background-position: center */
  z-index: -1;         /* slika ide iza sadržaja */
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
}


.album-card {
  background-color: #1c1c1c;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

.album-card img {
  border-radius: 10px 10px 0 0;
}

.album-card .card-body {
  text-align: center;
}

.album-card h5 {
  font-weight: 700;
  margin-top: 10px;
  color: #ccc;
}

.album-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.album-card a {
  margin: 5px;
}

.no-caret::after {
    display: none !important;
}

.member-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.member-photo {
  width: 120px;
  height: 120px;
  object-fit: cover; /* da se slika ne deformira */
  border-radius: 50%; /* da ostane okrugla */
  margin: 15px auto;
}


footer {
  background-color: #1f1f1f;
  padding: 20px;
  text-align: center;
  color: #aaa;
  margin-top: auto;
}

