/* ============================
   MERCH PAGE STYLING
   ============================ */

/* Header section */
/* UNIVERSAL HERO SECTION */
.hero {
  height: 70vh;
  background: url("assets/background5.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;

  /* Fade-in animation */
  opacity: 0;
  animation: fadeHero 1.5s ease-in-out forwards;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Text above overlay */
.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Fade-in keyframes */
@keyframes fadeHero {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Typography */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Section spacing */
.section-padding {
  padding: 80px 0;
}

/* Merch cards */
.merch-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.merch-card:hover {
  transform: translateY(-5px);
}

/* Merch images */
.merch-img {
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Gold button */
.btn-gold {
  background-color: #d4a373;
  color: #000;
  padding: 12px 28px;
  border: none;
  font-weight: 600;
}

.btn-gold:hover {
  background-color: #c08f5f;
}

/* Footer */
.footer-cta {
  background: #000;
  color: #fff;
  padding: 60px 0;
}
