*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  background: #fff;
  color: #222;
}

/* ------------------ HEADER ------------------ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}
header img { width: 150px; }
header nav a {
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

/* ------------------ MERCH ------------------ */
.merch-section {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 3rem;
}

.merch-item {
  width: 280px;
  background: #f7f7f7;
  border-radius: 16px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.merch-item a { text-decoration: none; color: inherit; }

.merch-item img:first-child {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.amazon-badge,
.spreadshirt-badge {
  width: 120px;
  transition: transform .2s ease, filter .2s ease;
}

.amazon-badge:hover,
.spreadshirt-badge:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}


/* ------------------ BREADCRUMB ------------------ */
.breadcrumb {
  max-width: 1400px;
  margin: 1rem auto 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: #555;
}

.breadcrumb img {
  width: 20px;
  height: 20px;
  opacity: .85;
}

.breadcrumb a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
}

.breadcrumb span {
  color: #777;
}

/* ------------------ LAYOUT ------------------ */
.container {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  margin: 2rem auto;
  gap: 2rem;
  width: 100%;
}

.left-column {
  width: 70%;
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: justify;
}

.right-column {
  width: 30%;
}

.intro-text {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1rem 0 .3rem;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: .1rem 0 .4rem;
  text-align: left;
}

.cover {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* ------------------ SONGTEXT ACCORDION ------------------ */
.toggle-lyrics {
  width: 100%;
  background: #e0e0e0;
  border: 1px solid #bbb;
  padding: .6rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  margin: .5rem 0;
}

.lyrics-box {
  display: none;
  white-space: pre-line;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.video-wrapper {
  margin: 1.5rem 0;
}

/* ------------------ BUTTONS ------------------ */
.btn {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: var(--btn-bg,#faf6e8);
  border: 1px solid var(--btn-border,#e0d9c2);
  color: var(--btn-text,#333);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  user-select: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  background: #fffdf4;
}

.store-buttons a { margin: .25rem; }

/* ------------------ MOBILE ------------------ */
@media (max-width: 860px) {

  .hero-hero {
    height: 260px;
    background-position: center top;
  }

  .container {
    flex-direction: column !important;
    padding: 0 20px !important;
  }

  .left-column,
  .right-column {
    width: 100% !important;
  }
}

/* ------------------ FOOTER ------------------ */
footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  background: #f0f0f0;
  font-weight: 600;
}
