/* Smooth theme transition */
body,
.navbar,
.card,
.footer {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

#darkModeToggle {
  font-size: 1.1rem;
  line-height: 1;
}

.moirai-one-regular {
  font-family: "Moirai One", system-ui !important;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
}

.moirai-one-logo {
  font-family: "Moirai One", system-ui !important;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
}

.navbar .navbar-nav {
  width: 100%;
  justify-content: space-evenly;
}

.navbar .nav-link {
  font-size: 1.2rem;
  font-weight: 500;
}

.h1,h2 {
 text-align: center;
 font-weight: bold;
 font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./img/mick-haupt-ehMNP0Ooj3M-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px);
  transform: scale(1.03);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.hero-title {
  margin-top: 0;
  padding-top: 1rem;
  text-align: center;
}

.hero-content-wide {
  max-width: 1400px;
  margin: 0 auto;
}

#searchResults {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 3rem 0;
}

#searchResults::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./img/mick-haupt-ehMNP0Ooj3M-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px);
  transform: scale(1.03);
}

#searchResults::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

#searchResults .search-results-inner {
  position: relative;
  z-index: 1;
  color: white;
}

.search-bar .btn {
  background-color: #000;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  color: white;
  box-shadow: none;
  outline: none;
}

.navbar .form-control:focus,
.navbar .form-control:focus-visible {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  outline: none;
}


@media (max-width: 811px) {

.hero-section {
  padding-top: 6rem;
  min-height: 80vh;
}

}

@media (max-width: 430px) {
  .moirai-one-logo {
    font-size: 3rem

  }
}

.card-text-color {
  color: grey;

}

.album-cover {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hidden {
  display: none;
}

