/* ========================= */
/* GLOBAL RESET */
/* ========================= */

html, body {
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: Arial, sans-serif;
}

/* ========================= */
/* NAVIGATION */
/* ========================= */

nav {
  position: absolute;
  top: 30px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* Music Button (Top Left) */

.music-nav {
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: opacity 0.2s ease;
}

.music-nav:hover {
  opacity: 0.6;
}

/* Merch Image in Nav (Top Right) */

.merch-nav {
  display: inline-block;
}

.merch-nav img {
  height: 70px;
  width: auto;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.merch-nav img:hover {
  transform: scale(1.05);
}

/* ========================= */
/* HOMEPAGE */
/* ========================= */

.home {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home img {
  max-width: 50%;
  max-height: 60vh;
  height: auto;
  width: auto;
}

/* ===================== */
/* MERCH PAGE STYLES */
/* ===================== */

.merch {
  height: 100vh;
  box-sizing: border-box;
  padding: 80px 40px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.merch-logo {
  height: 65px;
  width: auto;
  flex-shrink: 0;
}

.merch-tagline {
  margin: 5px 0 10px;
  font-style: italic;
  opacity: 0.7;
  flex-shrink: 0;
}

.products-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  flex: 1;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  min-height: 0;
}

.product {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product img {
  width: 100%;
  max-height: 35vh;
  object-fit: contain;
  border-radius: 8px;
}

.product h2 {
  margin-top: 10px;
  font-size: 0.95rem;
}

.product p {
  opacity: 0.8;
  margin: 4px 0 10px;
  font-size: 0.8rem;
}

.coming-soon {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid black;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
