/* Bad Dog Bar Craft — Dark Moody Copper/Amber Bar Theme */
:root {
  --primary: #D97706;
  --primary-light: #F59E0B;
  --primary-dark: #B45309;
  --accent: #DC2626;
  --bg: #0F0F0F;
  --bg-alt: #1A1A1A;
  --text: #E5E5E5;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;
  --border: #2A2A2A;
  --card-bg: #171717;
  --footer-bg: #0A0A0A;
  --header-bg: #0F0F0F;
  --shadow: rgba(217, 119, 6, 0.08);
  --glow: rgba(217, 119, 6, 0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body { font-family: 'Georgia', 'Times New Roman', serif; line-height: 1.7; color: var(--text); background: var(--bg); }
a { color: var(--primary-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.header { background: var(--header-bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.header__inner { max-width: 1100px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.header__logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); font-family: 'Georgia', serif; letter-spacing: 1px; }
.header__nav { display: flex; align-items: center; }
.nav__list { list-style: none; display: flex; gap: 2rem; }
.nav__list a { color: var(--text-light); font-family: 'Segoe UI', system-ui, sans-serif; font-size: .9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; padding: .5rem 0; border-bottom: 2px solid transparent; transition: all .2s; }
.nav__list a:hover { color: var(--primary-light); border-bottom-color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1000 0%, #0f0f0f 50%, #1a0500 100%); border: 1px solid var(--border); color: var(--text-white); padding: 4rem 2rem; text-align: center; max-width: 1100px; margin: 2rem auto; border-radius: 4px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 70%); }
.hero * { position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; margin-bottom: 0.5rem; color: var(--primary-light); font-family: 'Georgia', serif; }
.hero__tagline { font-size: 1.1rem; opacity: 0.8; margin-bottom: 1.5rem; font-style: italic; letter-spacing: 1px; }
.hero p { max-width: 650px; margin: 0 auto 1.5rem; line-height: 1.8; opacity: 0.9; font-size: .95rem; }
.btn { display: inline-block; background: var(--primary); color: #fff; padding: .75rem 2rem; border-radius: 2px; font-family: 'Segoe UI', system-ui, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .85rem; transition: all .2s; border: 1px solid var(--primary); }
.btn:hover { background: transparent; color: var(--primary-light); }

/* Main */
.main { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; }
.main > h1 { font-size: 2rem; color: var(--primary-light); margin-bottom: 2rem; font-family: 'Georgia', serif; }

/* Posts grid */
.posts-grid { margin: 3rem 0; }
.posts-grid h2 { font-size: 1.6rem; color: var(--primary-light); margin-bottom: 1.5rem; text-align: center; font-family: 'Georgia', serif; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }

/* Card */
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.card:hover { border-color: var(--primary); box-shadow: 0 0 20px var(--glow); }
.card a { color: inherit; display: block; }
.card__img { width: 100%; height: 200px; object-fit: cover; filter: brightness(0.85); transition: filter .3s; }
.card:hover .card__img { filter: brightness(1); }
.card__body { padding: 1.25rem; }
.card__title { font-size: 1.05rem; margin-bottom: .5rem; color: var(--text-white); line-height: 1.4; font-family: 'Georgia', serif; }
.card__date { font-size: .8rem; color: var(--primary); display: block; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: 1px; font-family: 'Segoe UI', sans-serif; }
.card__excerpt { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* Page */
.page { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
.page h1 { font-size: 2rem; color: var(--primary-light); margin-bottom: 1.5rem; font-family: 'Georgia', serif; }
.page h2 { font-size: 1.3rem; color: var(--primary); margin: 2rem 0 1rem; }
.page p { margin-bottom: 1.25rem; }
.page ul, .page ol { margin: 0 0 1.25rem 2rem; }
.page li { margin-bottom: .5rem; }
.contact-info { background: var(--bg-alt); padding: 1.5rem; border-radius: 4px; margin: 1.5rem 0; border-left: 3px solid var(--primary); }
.contact-info ul { list-style: none; margin-left: 0; }
.contact-info li { padding: .5rem 0; }

/* Post single */
.post { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
.post h1 { font-size: 2rem; color: var(--primary-light); margin-bottom: .5rem; line-height: 1.3; font-family: 'Georgia', serif; }
.post__date { display: block; color: var(--primary); margin-bottom: 1.5rem; font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Segoe UI', sans-serif; }
.post__img { width: 100%; border-radius: 4px; margin-bottom: 2rem; max-height: 400px; object-fit: cover; }
.content h2 { font-size: 1.3rem; color: var(--primary-light); margin: 2rem 0 1rem; font-family: 'Georgia', serif; }
.content h3 { font-size: 1.1rem; margin: 1.5rem 0 .75rem; color: var(--primary); }
.content p { margin-bottom: 1.25rem; line-height: 1.8; }
.content ul, .content ol { margin: 0 0 1.25rem 2rem; }
.content li { margin-bottom: .5rem; }

/* Related */
.related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.related h2 { font-size: 1.2rem; color: var(--primary-light); margin-bottom: 1rem; font-family: 'Georgia', serif; }
.related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.related__item { display: block; padding: 1rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; transition: border-color .2s; }
.related__item:hover { border-color: var(--primary); }
.related__item h3 { font-size: .95rem; margin-bottom: .25rem; color: var(--text-white); }
.related__item time { font-size: .8rem; color: var(--primary); }

/* Footer */
.footer { background: var(--footer-bg); color: var(--text-light); padding: 3rem 1.5rem 1rem; margin-top: 3rem; border-top: 1px solid var(--border); }
.footer__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer__col h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--primary-light); font-family: 'Georgia', serif; }
.footer__col p { opacity: 0.75; line-height: 1.7; font-size: .9rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .5rem; }
.footer__col a { color: var(--text-light); transition: color .2s; font-family: 'Segoe UI', sans-serif; font-size: .9rem; }
.footer__col a:hover { color: var(--primary-light); }
.footer__bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; opacity: 0.6; font-size: .85rem; font-family: 'Segoe UI', sans-serif; }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav__list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--header-bg); flex-direction: column; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
  .nav__list.active { display: flex; }
  .hero { padding: 2.5rem 1rem; margin: 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .post, .page { padding: 1.5rem; }
  .related__grid { grid-template-columns: 1fr; }
}
