/* =============================================
   HOP STEW — Static Site Stylesheet
   ============================================= */

/* Fonts are loaded via <link> in the HTML head (with preconnect) */

/* --- Design Tokens --- */
:root {
  --red:        #a12527;
  --red-dark:   #7a1b1d;
  --gold:       #b57c15;
  --dark:       #27241d;
  --gray1:      #423d33;
  --gray2:      #504a40;
  --gray3:      #625d52;
  --light:      #e8e6e1;
  --off-white:  #faf9f7;
  --white:      #ffffff;

  --font-head:  'Lora', serif;
  --font-body:  'Inter', sans-serif;

  --radius:     6px;
  --max-w:      1290px;
  --section-py: 5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray1);
  background: var(--off-white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* --- Utility --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 15px 36px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn:hover, .btn:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

/* Fade-up reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  padding: 1rem 0 0.75rem;
  transition: box-shadow 0.2s, padding 0.3s ease;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.header-top {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 350px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-logo img {
  height: 70px;
}

.header-socials {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.social-icon:hover, .social-icon:focus-visible {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 860px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-inline: auto;
}

/* =============================================
   PLATFORM CARDS  (id="listennow")
   ============================================= */
.platforms {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.platforms h2 {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.cards-grid {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 260px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--dark);
}

.platform-card:hover, .platform-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  color: var(--dark);
}

.platform-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.platform-card span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  background: url('../images/bg.jpg') center/cover no-repeat;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 36, 29, 0.88);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-text p {
  color: var(--light);
  margin-bottom: 1rem;
}

.stat {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
}

.about-photo img {
  border-radius: 12px;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* =============================================
   FEATURED VIDEOS
   ============================================= */
.videos {
  background: var(--light);
  padding: var(--section-py) 0;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
  text-align: center;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.video-item figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray2);
  line-height: 1.4;
}

.video-item figcaption strong {
  color: var(--dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-cta {
  text-align: center;
}

/* =============================================
   TWITCH
   ============================================= */
.twitch-section {
  background: var(--dark);
  padding: var(--section-py) 0;
}

.twitch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.twitch-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.twitch-text p {
  color: var(--light);
  margin-bottom: 1.75rem;
}

.twitch-image img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

/* =============================================
   PODOMATIC
   ============================================= */
.podomatic-section {
  background: var(--off-white);
  padding: var(--section-py) 0;
  text-align: center;
}

.podomatic-section .section-heading {
  margin-bottom: 0.75rem;
}

.podomatic-section .podo-sub {
  color: var(--gray2);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}

.podomatic-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.podomatic-logo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.podomatic-embeds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.podo-episode strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.podo-embed-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.podo-embed-wrap iframe {
  display: block;
  width: 100%;
  max-width: 504px;
  height: 208px;
  border: 0;
}

.podomatic-cta {
  margin-top: 2rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  padding: 3rem 0 2rem;
  text-align: center;
  color: var(--light);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 90px;
  width: auto;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-credits {
  font-size: 0.875rem;
  color: var(--gray3);
  line-height: 1.8;
}

.footer-credits a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credits a:hover, .footer-credits a:focus-visible {
  color: var(--white);
}

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-hero {
  background: url('../images/headerbg.jpg') center/cover no-repeat;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shop-hero .hero-overlay {
  background: rgba(0,0,0,0.65);
}

.shop-hero .hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}

.shop-body {
  background: var(--off-white);
  padding: var(--section-py) 0;
  text-align: center;
}

.shop-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.shop-body p {
  color: var(--gray2);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.shop-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.shop-back {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-back:hover, .shop-back:focus-visible { color: var(--red-dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 3.5rem; }

  .about-inner,
  .twitch-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo { order: -1; }

  .videos-grid {
    gap: 1.5rem;
  }

  .podomatic-embeds {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root { --section-py: 2.5rem; }

  .header-logo img { height: 280px; }
  .site-header.scrolled .header-logo img { height: 56px; }
  .header-socials { position: static; }
  .header-top {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero { min-height: 420px; }

  .platform-card { width: 100%; max-width: 320px; }

  .videos-grid { grid-template-columns: 1fr; }

  .twitch-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .podomatic-embeds { grid-template-columns: 1fr; }

  .shop-cta-row { flex-direction: column; align-items: center; }
}
