@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f8f6;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  -webkit-font-smoothing: antialiased;
}

/* ── Logo ── */
.logo-wrap {
  margin-bottom: 1rem;
}

.logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* ── Brand Name ── */
.brand-name {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #111;
  margin-bottom: 0.3rem;
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2.5rem;
}

/* ── Shirts Row ── */
.shirts-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  max-width: 700px;
  width: 100%;
}

.shirt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.shirt-card img {
  object-fit: contain;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.shirt-card:hover img {
  transform: translateY(-6px);
}

.shirt-card--left {
  width: 180px;
}

.shirt-card--center {
  width: 220px;
}

.shirt-card--right {
  width: 180px;
}



/* ── Divider ── */
.divider {
  width: 40px;
  height: 1px;
  background: #ddd;
  margin: 1.5rem auto;
}

/* ── Marquee ── */
.marquee-band {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.6rem 0;
  margin-bottom: 2.5rem;
  transform: rotate(-1.5deg);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  padding: 0 2rem;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #555;
}

.marquee-track .dot {
  color: #ccc;
  font-size: 0.5rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #111;
  padding: 0.95rem 2.5rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.wa-icon {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* ── Footer ── */
.foot {
  margin-top: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
}

.foot-link {
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.foot-link:hover {
  color: #111;
  border-color: #111;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body {
    padding: 2rem 1rem;
    justify-content: flex-start;
    padding-top: 3rem;
  }

  .logo-img {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .brand-sub {
    margin-bottom: 2rem;
  }

  /* Hide the right shirt — show only left + center */
  .shirt-card--right {
    display: none;
  }

  .shirts-row {
    gap: 1rem;
    max-width: 100%;
    justify-content: center;
  }

  .shirt-card--left {
    width: clamp(120px, 40vw, 180px);
  }

  .shirt-card--center {
    width: clamp(140px, 48vw, 210px);
  }

  .cta-btn {
    padding: 0.85rem 2rem;
    font-size: 0.7rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .marquee-band {
    margin-bottom: 2rem;
  }

  /* Footer — stack into two rows */
  .foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    line-height: 1.8;
  }
}

@media (max-width: 400px) {
  .shirt-card--left {
    width: 38vw;
  }

  .shirt-card--center {
    width: 46vw;
  }

  .brand-name {
    letter-spacing: 0.15em;
  }

  .brand-sub {
    letter-spacing: 0.2em;
  }
}