/* ================================
   DIRTY HANDS NATION / THE NATION
   Premium cinematic black + gold theme
   ================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Root Theme */
:root{
  --bg-main: #060606;
  --bg-deep: #0b0b0b;
  --panel: rgba(18,18,18,0.82);
  --panel-2: rgba(28,28,28,0.92);
  --gold: #c89a3d;
  --gold-bright: #f2c56b;
  --gold-soft: rgba(200,154,61,0.18);
  --text-main: #f4f4f4;
  --text-soft: #bdbdbd;
  --text-fade: #8e8e8e;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 12px 40px rgba(0,0,0,0.45);
  --glow: 0 0 0 1px rgba(200,154,61,0.18), 0 8px 28px rgba(200,154,61,0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all .28s ease;
}

/* Base */
html, body {
  background:
    radial-gradient(circle at top left, rgba(200,154,61,0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 22%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.65;
  letter-spacing: 0.2px;
  min-height: 100%;
  overflow-x: hidden;
}

/* Grit / smoky overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.025), transparent 20%),
    radial-gradient(circle at 80% 25%, rgba(200,154,61,0.05), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.02), transparent 24%);
  opacity: 0.28;
  mix-blend-mode: screen;
  z-index: 0;
}

/* Optional top glow */
body::after {
  content: "";
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 78vw;
  height: 260px;
  background: radial-gradient(circle, rgba(200,154,61,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* General container feel */
main, .container, .content, .site-content, .page-content {
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.site-title,
.podcast-title,
.episode-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.06;
  color: var(--text-main);
  margin-bottom: 0.5em;
}

h1, .site-title, .podcast-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 600;
}

p, li, span, div {
  color: var(--text-soft);
  font-size: 1rem;
}

strong, b {
  color: #fff;
  font-weight: 700;
}

/* Gold accent heading shimmer */
h1, h2, .site-title, .podcast-title {
  background: linear-gradient(180deg, #fff 0%, #f7e6bf 28%, var(--gold-bright) 55%, #8d651f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(200,154,61,0.35);
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  transition: var(--transition);
}

a:hover::after {
  width: 100%;
}

/* Header / nav */
header, .site-header, .header, nav, .navbar {
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  position: relative;
  z-index: 5;
}

header a, nav a, .site-header a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.96rem;
}

/* Hero / top section */
.hero, .hero-section, .banner, .podcast-hero, .cover, .intro {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    linear-gradient(180deg, rgba(200,154,61,0.08), rgba(0,0,0,0.06)),
    rgba(12,12,12,0.88);
  box-shadow: var(--shadow), var(--glow);
  padding: clamp(28px, 5vw, 70px);
}

/* subtle diagonal slash accent */
.hero::before, .banner::before, .podcast-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 38%;
  height: 170%;
  background: linear-gradient(180deg, rgba(200,154,61,0.22), rgba(255,255,255,0.03));
  transform: rotate(18deg);
  filter: blur(12px);
  opacity: 0.24;
  pointer-events: none;
}

.hero::after, .banner::after, .podcast-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.06;
}

/* Cards / episodes / content blocks */
.card,
.episode,
.episode-item,
.post,
.post-card,
.block,
.section,
.panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008)),
    var(--panel);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  overflow: hidden;
}

.card::before,
.episode::before,
.episode-item::before,
.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(200,154,61,0.08) 35%, transparent 70%);
  opacity: 0;
  transition: opacity .28s ease;
}

.card:hover,
.episode:hover,
.episode-item:hover,
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,154,61,0.28);
  box-shadow: 0 18px 46px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,154,61,0.16);
}

.card:hover::before,
.episode:hover::before,
.episode-item:hover::before,
.post-card:hover::before {
  opacity: 1;
}

/* Episode titles */
.episode-title,
.card h3,
.episode h3,
.post-card h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
}

/* Buttons */
button,
.btn,
input[type="submit"],
input[type="button"],
.button,
.play-button,
.subscribe-button {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 65%, #8e6724 100%);
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35), 0 0 22px rgba(200,154,61,0.16);
  cursor: pointer;
  transition: var(--transition);
}

button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover,
.play-button:hover,
.subscribe-button:hover {
  transform: translateY(-2px) scale(1.02);
  color: #000;
  box-shadow: 0 16px 34px rgba(0,0,0,0.48), 0 0 28px rgba(200,154,61,0.24);
  filter: brightness(1.06);
}

button:active,
.btn:active,
.button:active {
  transform: translateY(0) scale(0.99);
}

/* Secondary buttons */
.button.secondary,
.btn-secondary,
.secondary {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid rgba(200,154,61,0.34);
  box-shadow: inset 0 0 0 1px rgba(200,154,61,0.06);
}

.button.secondary:hover,
.btn-secondary:hover,
.secondary:hover {
  background: rgba(200,154,61,0.08);
  color: #fff;
}

/* Inputs / search */
input,
textarea,
select {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(200,154,61,0.5);
  box-shadow: 0 0 0 3px rgba(200,154,61,0.14);
  background: rgba(255,255,255,0.055);
}

/* Images / cover art */
img {
  border-radius: 14px;
  transition: var(--transition);
}

.card img:hover,
.episode img:hover,
.cover img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Horizontal lines / dividers */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,154,61,0.36), transparent);
  margin: 28px 0;
}

/* Quotes / callouts */
blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.03);
  border-radius: 0 14px 14px 0;
  color: #f5f5f5;
  font-style: italic;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

/* Footer */
footer, .site-footer {
  border-top: 1px solid var(--line);
  background: rgba(8,8,8,0.75);
  color: var(--text-fade);
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b2b12, var(--gold));
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6d4a14, var(--gold-bright));
}

/* Fancy section title accent */
h2::after, .section-title::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  box-shadow: 0 0 18px rgba(200,154,61,0.25);
}

/* Animations */
@keyframes dhnFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card, .episode, .episode-item, .post-card, .hero, .banner, .podcast-hero {
  animation: dhnFadeUp .55s ease both;
}

/* Mobile polish */
@media (max-width: 768px) {
  h1, .site-title, .podcast-title {
    letter-spacing: 1px;
  }

  h2, h3 {
    letter-spacing: 1px;
  }

  .hero, .hero-section, .banner, .podcast-hero, .cover, .intro,
  .card, .episode, .episode-item, .post-card {
    border-radius: 16px;
    padding: 18px;
  }

  button, .btn, .button {
    width: 100%;
    text-align: center;
  }
}