/* Merch Page Styles (inherits About styling via body.about class) */

/* Hide site-wide background on merch page */
body.merch::before {
  display: none !important;
}

/* Hero section styling */
.merch .hero--about {
  background: url("../img/abt.jpg") center / cover no-repeat;
}

/* Hero overlay fade */
.merch .hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

/* Seam guard - smooth transition from hero to gradient */
.merch .hero--about::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  height: 48px;
  background: #000;
  pointer-events: none;
}

/* After-hero gradient background */
.merch.after-hero {
  background: linear-gradient(180deg, #000 0%, #1a1a8c 45%, #000 100%);
  position: relative;
}

/* Coming Soon Container */
.merch .coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.merch .coming-soon-card {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 165, 0, 0.3);
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 600px;
}

.merch .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 165, 0, 0.1);
  border: 2px solid rgba(255, 165, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffa500;
  margin: 0 auto 1.5rem;
}

.merch .coming-soon-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.merch .coming-soon-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Feature Cards */
.merch .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.merch .feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 165, 0, 0.3);
  transform: translateY(-4px);
}

.merch .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 165, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffa500;
  margin-bottom: 1rem;
}

.merch .feature-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 0.75rem 0;
}

.merch .feature-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Notify Card */
.merch .notify-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.merch .notify-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.merch .notify-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

/* CTA Section */
.merch .section-cta {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Grid layout adjustments */
.merch .grid {
  gap: 1.5rem;
}

.merch .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Button styling */
.merch .btn-primary {
  background: #ffa500;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.merch .btn-primary:hover {
  background: #ffb820;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .merch .grid-3 {
    grid-template-columns: 1fr;
  }

  .merch .coming-soon-card {
    padding: 2rem 1.5rem;
  }

  .merch .notify-card {
    padding: 1.5rem;
  }

  .merch .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

/* Card with background image */
.coming-soon-card.with-bg {
  position: relative;
  padding: 4rem 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: url("assets/img/boxes.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

/* Dark overlay for readability */
.coming-soon-card .dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);  /* adjust: 0.45 lighter / 0.7 darker */
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Content stays above overlay */
.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Circle icon */
.icon-circle {
  margin: 0 auto 1.2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ff6600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff6600;
  font-size: 1.9rem;
  background: rgba(0, 0, 0, 0.35);
}

/* Paragraph styling */
.coming-soon-content p {
  max-width: 680px;
  margin: 0 auto;
  opacity: 0.9;
}

.coming-soon-content .mini {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-top: 0.7rem;
}


/* Coming Soon – background image update */
.coming-soon-card.with-bg {
  position: relative;
  padding: 4rem 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: url("assets/img/boxes.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
}

.coming-soon-card .dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.icon-circle {
  margin: 0 auto 1.2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ff6600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff6600;
  font-size: 1.9rem;
  background: rgba(0, 0, 0, 0.35);
}


/* Social icons base style */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Circle background */
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a; /* dark circle */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff6600;       /* <-- MAKE ICONS ORANGE */
  font-size: 1.4rem;
  transition: 0.3s ease;
}

/* Hover effect */
.social-icon:hover {
  transform: translateY(-4px);
  background: #ff6600;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.7);
}
.social-icon.instagram:hover {
  background: #e1306c;
  box-shadow: 0 0 15px #e1306c;
}

.social-icon.tiktok:hover {
  background: #69c9d0;
  box-shadow: 0 0 15px #69c9d0;
}

.social-icon.spotify:hover {
  background: #1db954;
  box-shadow: 0 0 15px #1db954;
}

.social-icon.soundcloud:hover {
  background: #ff5500;
  box-shadow: 0 0 15px #ff5500;
}

.social-icon.youtube:hover {
  background: #ff0000;
  box-shadow: 0 0 15px #ff0000;
}

