/* Custom styles for Track One Recordings */

body {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Album card styling */
.album-card {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}

.album-card .col-md-3 {
  display: flex;
  align-items: flex-start;
}

.album-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.album-card .card-title {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.album-card .track-list {
  columns: 2;
  column-gap: 2rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .album-card .track-list {
    columns: 1;
  }
}

.album-card .btn-success {
  background-color: #1db954;
  border-color: #1db954;
}

.album-card .btn-success:hover {
  background-color: #1ed760;
  border-color: #1ed760;
}

/* Artist page styling */
.artist-page .artist-intro a {
  color: #1db954;
}

.artist-page .artist-intro a:hover {
  color: #1ed760;
}

.navbar {
  background-color: transparent;
}

.navbar-brand {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 576px) {
  .navbar-brand {
    max-width: calc(100% - 3rem);
  }

  .navbar-brand img {
    height: 32px;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff !important;
}


/*# sourceMappingURL=application.css.map*/