
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;           
  overflow-x: hidden;         
  font-family: Helvetica, Arial, sans-serif;
  background-color: black;
  color: white;
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

body.home {
  height: 100dvh;             
  overflow: hidden;           
}

body.home .page-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100dvh;            
  width: 100vw;
  box-sizing: border-box;
  transform-origin: top left;
}

.content {
    display: flex;
    align-items: flex-start;
    max-width: 980px;
    margin: 75px auto 30px;
    gap: 30px;
}


.nav-links {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}


.button-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  color: white;
  text-decoration: none;
}

.button:hover {
  background-color: white;
  color: black;
}

.button-text {
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  transform-origin: center;
}


.flashing-text {
  animation: flash 2.4s steps(60) infinite;
}

@keyframes flash {
  0%, 100% { color: #b12524; }
  50% { color: #000000; }
}

.flashing-text2 {
  animation: flash2 2.4s steps(60) infinite;
}

@keyframes flash2 {
  0%, 100% { color: #ff0000; }
  50% { color: #000000; }
}


.input-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  background-color: #141414;
  border: 1px solid white;
  height: 60px;
  align-items: stretch;
}

.input-container input[type="text"] {
  flex: 1;
  padding: 0 15px;
  font-size: 24px;
  line-height: 60px;
  border: none;
  border-right: 1px solid white;
  background-color: transparent;
  color: white;
  outline: none;
  font-family: Helvetica, Arial, sans-serif;
  height: 100%;
  box-sizing: border-box;
}

.input-container input[type="text"]::placeholder {
  color: #eee;
}

.input-container button {
  padding: 0 20px;
  font-size: 24px;
  line-height: 60px;
  border: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-container button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }


.grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  gap: 1rem;
}

.card {
  flex: 1 1 calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  min-width: 0;
  background: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.card img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  display: block;
  min-width: 0 !important;
}

.card-footer {
  padding: 0.5rem;
  text-align: center;
}

.card-footer a {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: none;
  border: 1px solid #00ff6d;
  color: #00ff6d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.15s ease;
} 
.musicgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 350px));
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin-top: 20px;
}
.musiccard {
  width: 100%;
}

.embed-wrapper {
  width: 100%;
}
.musiccard,
.embed-wrapper {
  overflow: visible;
}
.embed-wrapper iframe {
  width: 100%;
  max-width: 100%;
  height: 442px; /* fixed height required by Bandcamp */
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .musicgrid {
    grid-template-columns: 1fr; /* stack */
  }
}

.card-footer a:hover {
  opacity: 0.85;
}
.card .music-info {
  text-align: left;
  margin-top: 10px;
  font-size: 25px;
  color: #00ff6d;
}


.responsive-img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  padding: 10px;
  display: block !important;
  object-fit: cover !important;
}
#wrapper {
    width: 100%;
    overflow: hidden;
}
#container {
    width: 50%;
    margin: 0 auto;
}
.banner-img {
    width: 100%;
}
.album-img {
    width: 45%;
    max-width: 450px;
    height: auto;
    flex-shrink: 0;
}

.album-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.album-info h1 {
    margin: 0;
}

.author {
    margin-top: 10px;
}

.review {
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.7;
}
