/* ============================================
   OPINIONS ON TAP — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Dancing+Script:wght@700&family=Barlow:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --black:       #0d0b08;
  --off-white:   #f0ead8;
  --gold:        #C9A84C;
  --gold-light:  #e8c96a;
  --gold-dark:   #9c7c30;
  --warm-dark:   #1a1508;
  --mid-grey:    #1e1a12;
  --text-body:   #e8dfc8;

  --font-slab:   'Alfa Slab One', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body:   'Barlow', sans-serif;

  --max-width: 1200px;
  --section-pad: 100px 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-slab);
  line-height: 1.1;
  color: var(--off-white);
}

.script {
  font-family: var(--font-script);
  color: var(--gold);
}

.gold { color: var(--gold); }

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }

.btn {
  display: inline-block;
  font-family: var(--font-slab);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---- Divider ---- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-dark);
}
.divider-star {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: width 0.3s, height 0.3s;
}

.nav.scrolled .nav-logo img {
  width: 42px;
  height: 42px;
}

.nav-logo-text {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s ease;
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Hero photo background */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  opacity: 1;
}

/* Dark warm overlay — keeps text readable, adds pub warmth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 7, 2, 0.92) 0%,
      rgba(10, 7, 2, 0.85) 45%,
      rgba(10, 7, 2, 0.55) 70%,
      rgba(10, 7, 2, 0.35) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-slab);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 16px;
}

.hero-headline .line-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  opacity: 0.75;
  max-width: 460px;
  margin: 24px 0 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo {
  width: 380px;
  max-width: 90%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================
   MARQUEE STRIP
   ============================ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-slab);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
  flex-shrink: 0;
}

.marquee-item span {
  margin-left: 32px;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   CONCEPT SECTION
   ============================ */
.concept {
  background: var(--warm-dark);
  position: relative;
  overflow: hidden;
}

.concept::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C9A84C' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.concept-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.concept-heading {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  margin-bottom: 28px;
}

.concept-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  opacity: 0.85;
}

.concept-body p + p {
  margin-top: 20px;
}

.concept-visual {
  position: relative;
}

.concept-badge-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.concept-badge {
  width: 340px;
  max-width: 100%;
  border-radius: 50%;
}

.concept-quote {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
}

/* ============================
   DESIGNS SECTION
   ============================ */
.designs {
  background: var(--black);
}

.designs-header {
  text-align: center;
  margin-bottom: 64px;
}

.designs-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 16px;
}

.designs-header p {
  color: var(--text-body);
  opacity: 0.75;
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.design-card {
  background: var(--mid-grey);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.design-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: transform 0.4s ease;
}

.design-card:hover .design-card-bg {
  transform: scale(1.04);
}

a.design-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.design-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.2) 60%, transparent 100%);
  z-index: 1;
}

.design-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.design-card-slogan {
  font-family: var(--font-slab);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.design-card-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  opacity: 0.7;
}

/* Real shirt photo card */
.design-card-bg--photo {
  position: absolute;
  inset: 0;
  padding: 0;
  background: #1a1a1a;
}

.shirt-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
}

.shirt-photo--front {
  display: none;
}

.hero-gift {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  margin: -16px 0 32px;
}

/* 6-card 3x2 grid */
.designs-grid--6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .designs-grid--6 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .designs-grid--6 {
    grid-template-columns: 1fr;
  }
}

/* Additional card backgrounds */
.collection-bg-4 {
  background: linear-gradient(145deg, #1a0a00 0%, #2d1500 50%, #1a0a00 100%);
}
.collection-bg-5 {
  background: linear-gradient(145deg, #001a1a 0%, #002d2d 50%, #001a1a 100%);
}
.collection-bg-rotating {
  background: linear-gradient(145deg, #1a0d1a 0%, #2d1a2d 50%, #1a0d1a 100%);
}

/* Rotating card subtle pulse */
.collection-card--rotating .collection-card-title {
  color: var(--gold-light);
}

.collection-card--rotating .collection-card-bg {
  position: relative;
}

.collection-card--rotating .collection-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Collection category cards */
.collection-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.4s ease;
}

.design-card:hover .collection-card-bg {
  transform: scale(1.03);
}

.collection-bg-1 {
  background: linear-gradient(145deg, #1a1200 0%, #2d1f00 50%, #1a1200 100%);
}
.collection-bg-2 {
  background: linear-gradient(145deg, #0d1a0a 0%, #162b10 50%, #0d1a0a 100%);
}
.collection-bg-3 {
  background: linear-gradient(145deg, #0d0d1a 0%, #14142d 50%, #0d0d1a 100%);
}

.collection-card-number {
  font-family: var(--font-slab);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -20px;
}

.collection-card-title {
  font-family: var(--font-slab);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.collection-card-sub {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 220px;
}

/* Placeholder shirt cards */
.shirt-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  padding: 40px 20px;
}

.shirt-placeholder-icon {
  font-size: 4.5rem;
  opacity: 0.3;
}

.shirt-placeholder-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  font-family: var(--font-body);
  font-weight: 700;
}

/* Card meta: price + CTA */
.design-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.design-price {
  font-family: var(--font-slab);
  font-size: 1.1rem;
  color: var(--gold);
}

.btn-amazon {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.btn-amazon:hover {
  opacity: 1;
  color: var(--gold);
}

/* Featured card badge */
.design-card--featured {
  position: relative;
}

.design-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-slab);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

/* Placeholder backgrounds for design cards */
.card-bg-1 {
  background: linear-gradient(135deg, #1a1508 0%, #2d2010 40%, #1a1508 100%);
}
.card-bg-2 {
  background: linear-gradient(135deg, #0d1a0d 0%, #132213 40%, #0d1a0d 100%);
}
.card-bg-3 {
  background: linear-gradient(135deg, #0d0d1a 0%, #13132d 40%, #0d0d1a 100%);
}

.card-icon {
  font-size: 5rem;
  opacity: 0.35;
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}

/* ============================
   PINT OF VIEW STRIP
   ============================ */
.pov-strip {
  background: var(--gold);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pov-strip::before {
  content: '"';
  position: absolute;
  font-family: var(--font-slab);
  font-size: 40rem;
  color: rgba(0,0,0,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}

.pov-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.pov-strip h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 24px;
}

.pov-strip p {
  font-size: 1.15rem;
  color: rgba(13,13,13,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-dark {
  background: var(--black);
  color: var(--gold);
  border: 2px solid var(--black);
}
.btn-dark:hover {
  background: var(--warm-dark);
  transform: translateY(-2px);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--warm-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 70px;
  border-radius: 50%;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.6;
  max-width: 280px;
  line-height: 1.6;
}

.footer-nav {
  text-align: center;
}

.footer-nav h4 {
  font-family: var(--font-slab);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-nav a:hover { opacity: 1; color: var(--gold); }

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social h4 {
  font-family: var(--font-slab);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.45;
}

/* ============================
   ANIMATIONS (page load)
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 24px auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-logo { width: 260px; }

  .concept-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .designs-grid {
    grid-template-columns: 1fr;
  }
  .design-card { aspect-ratio: 4/3; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-social { align-items: center; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-pad: 72px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
