/* ============================================
   THE BIG SOO - SHARED STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&family=Oswald:wght@500;700&display=swap');

:root {
  --red: #CC0000;
  --dark-red: #8B0000;
  --crimson: #7B0000;
  --navy: #1a2a5e;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8B6914;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #e8e8e8;
  --dark-gray: #333333;
  --text-gray: #555555;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 60px;
  width: auto;
  max-width: 280px;
}

.header-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  flex: 1;
  padding: 0 20px;
}

.header-tagline .t-navy { color: var(--navy); }
.header-tagline .t-red { color: var(--red); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--red);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  z-index: 100;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header-inner { height: 70px; }
  .header-tagline { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-top: 2px solid var(--light-gray);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: 8px;
    margin-top: 4px;
  }
  .header-inner { position: relative; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  color: #3a2000;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 80px 20px;
}

.section-sm {
  padding: 50px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #ffffff;
  color: #1a1a2e;
  padding: 50px 20px 30px;
  border-top: 3px solid #cc0000;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #cc0000;
  font-style: italic;
  margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 8px;
}

.footer-links a {
  display: block;
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: #cc0000; }

.footer-contact p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-contact a {
  color: #cc0000;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 520px) {
  .footer-links-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 40px rgba(201,168,76,0.8); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   STORE / MERCH STYLES
   ============================================ */

/* Nav store link — stands out as a special CTA */
.nav-store-link {
  background: linear-gradient(135deg, var(--red), #ff2222) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(204,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-store-link:hover {
  background: linear-gradient(135deg, #ff2222, var(--red)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 18px rgba(204,0,0,0.45) !important;
  color: var(--white) !important;
}

/* Footer store link */
.footer-store-link {
  color: var(--red) !important;
  font-weight: 700 !important;
}
.footer-store-link:hover {
  color: var(--dark-red) !important;
}

/* ---- MERCH HERO BANNER ---- */
.merch-hero {
  background: linear-gradient(135deg, #0d1a3a 0%, #1a2a5e 45%, #0d1a3a 100%);
  padding: 70px 20px;
  overflow: hidden;
  position: relative;
}

.merch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
  pointer-events: none;
}

.merch-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.merch-hero-text .section-label {
  color: var(--gold);
}

.merch-hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.merch-hero-text h2 span {
  color: var(--gold);
}

.merch-hero-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.merch-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-merch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  color: #2a1500;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-merch:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
}

.btn-merch-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-merch-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Merch hero image collage */
.merch-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
}

.merch-hero-images .merch-img-main {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
}

.merch-hero-images .merch-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.merch-img-thumb {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
}

.merch-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.merch-img-thumb:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .merch-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .merch-hero-text h2 { font-size: 2rem; }
  .merch-hero-images {
    grid-template-columns: 1fr 1fr;
  }
  .merch-hero-images .merch-img-main {
    aspect-ratio: 4/3;
  }
}

/* ---- MERCH PRODUCT GRID (Coupon Book page) ---- */
.merch-section {
  background: var(--off-white);
  padding: 80px 20px;
}

.merch-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.merch-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.merch-section-header .section-label {
  color: var(--red);
}

.merch-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}

.merch-section-header p {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.merch-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.merch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.merch-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.merch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.merch-card:hover .merch-card-img img {
  transform: scale(1.06);
}

.merch-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.merch-card-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}

.merch-card-price {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
}

.merch-section-cta {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .merch-section-header h2 { font-size: 1.8rem; }
}

/* ---- MERCH STRIP BANNER (compact, for secondary pages) ---- */
.merch-strip {
  background: linear-gradient(90deg, var(--navy) 0%, #0d1a3a 50%, var(--navy) 100%);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.merch-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(201,168,76,0.04) 30px,
    rgba(201,168,76,0.04) 60px
  );
}

.merch-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.merch-strip-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.merch-strip-text strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

@media (max-width: 600px) {
  .merch-strip-inner { flex-direction: column; gap: 14px; }
}
