/* ============================================================
   TROMBONE CHAMP: UNFLATTENED — Placeholder Page Styles
   ============================================================ */

:root {
  --tc-blue: #0653d1;
}

@font-face {
  font-family: 'Multicolore Pro';
  src: url('../assets/fonts/Multicolore_Pro.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

.tc-page {
  background-color: var(--tc-blue);
}

.tc-page .site-header,
.tc-page .site-header.scrolled {
  background: var(--tc-blue);
}

.tc-page .site-footer {
  background: var(--bg-darkest);
}

.tc-page .btn-merch {
  background: #ffff00;
  color: #060f16;
}

.tc-page .btn-merch:hover {
  background: #e6e600;
}

/* ---- HERO ---- */
.tc-hero {
  position: relative;
  background: var(--tc-blue);
}

.tc-hero-bg {
  width: 100%;
  line-height: 0;
}

.tc-hero-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.tc-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 28px;
  padding: 14% 24px 24px;
  text-align: center;
}

@keyframes tc-logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.tc-logo {
  width: min(220px, 45vw);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  animation: tc-logo-float 4s ease-in-out infinite;
}

.tc-status {
  font-family: 'Multicolore Pro', 'Quatro', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.tc-buy-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tc-buy-btn {
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.tc-buy-btn:hover {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.tc-buy-btn img {
  height: 46px;
  width: auto;
}

/* ---- TRAILER PLACEHOLDER ---- */
.tc-trailer {
  margin-top: -15vw;
  padding: 0 24px 72px;
  display: flex;
  justify-content: center;
}

.tc-trailer-box {
  position: relative;
  width: 100%;
  max-width: 1030px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #c9c9c9;
}

.tc-trailer-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .tc-buy-btn img {
    height: 36px;
  }
}

/* ---- SOCIAL ---- */
.tc-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px 64px;
}

.tc-social-label {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.tc-social-icons {
  display: flex;
  gap: 22px;
}

.tc-social-icons a {
  color: #ffffff;
  font-size: 1.6rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.tc-social-icons a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}
