/* Dawg Pound Charlotte — Browns palette */
:root {
  --orange: #FF3C00;
  --brown: #311D00;
  --brown-2: #4a2e08;
  --cream: #FFF6EE;
  --ink: #1c1410;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Barlow Condensed', 'Barlow', sans-serif; letter-spacing: .5px; }
img { max-width: 100%; display: block; }
a { color: var(--orange); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px;
  background: var(--brown);
  color: var(--white);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); font-family: 'Barlow Condensed'; font-weight: 800; font-size: 1.15rem; }
.nav-brand img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--orange); }
.nav-brand em { color: var(--orange); font-style: normal; }
.nav nav { display: flex; align-items: center; gap: 18px; }
.nav nav a { color: var(--white); text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav nav a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); padding: 7px 14px; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { color: var(--brown) !important; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--brown) 0%, #241500 60%, #1a0f00 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 20px 80px;
}
.hero-logo {
  width: 170px; height: 170px; border-radius: 50%;
  margin: 0 auto 24px; border: 5px solid var(--orange);
  box-shadow: 0 0 60px rgba(255,60,0,.35);
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.5rem); font-weight: 800; line-height: .95; }
.hero h1 span { color: var(--orange); }
.hero-tag { margin-top: 18px; font-size: 1.15rem; font-weight: 700; color: var(--orange); }
.hero-sub { max-width: 620px; margin: 10px auto 0; color: #e8d9c8; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #e13500; }
.btn-ghost { border: 2px solid var(--orange); color: var(--orange); }
.btn-ghost:hover { background: rgba(255,60,0,.12); }

/* Sections */
.section { padding: 70px 20px; max-width: 1080px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 2.4rem; color: var(--brown); text-transform: uppercase; }
.section-dark .section-head h2 { color: var(--white); }
.section-head p { color: #6b5a48; max-width: 560px; margin: 8px auto 0; }
.section-dark { background: var(--brown); max-width: none; }
.section-dark .section-head p { color: #d9c7b2; }

/* Events */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.event-card {
  background: var(--white); border-radius: 12px; padding: 22px;
  text-decoration: none; color: var(--ink);
  border-top: 5px solid var(--orange);
  box-shadow: 0 4px 18px rgba(49,29,0,.08);
  transition: transform .15s ease;
  position: relative;
}
.event-card:hover { transform: translateY(-4px); }
.event-card.past { opacity: .78; border-top-color: #b7a88f; }
.badge {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: 1px;
  background: var(--orange); color: var(--white); border-radius: 4px; padding: 3px 8px; margin-bottom: 10px;
}
.event-card.past .badge { background: #8a7a63; }
.event-card h3 { font-size: 1.35rem; color: var(--brown); margin-bottom: 8px; }
.ev-when { font-weight: 700; font-size: .92rem; }
.ev-where { font-size: .9rem; color: #6b5a48; margin: 4px 0 10px; }
.ev-blurb { font-size: .95rem; }
.event-note { text-align: center; margin-top: 26px; color: #6b5a48; font-size: .95rem; }

/* IG grid */
.ig-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; max-width: 1080px; margin: 0 auto;
}
.ig-tile { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1/1; display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.ig-tile:hover img { transform: scale(1.05); }
.ig-cap {
  position: absolute; inset: auto 0 0 0; padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: var(--white); font-size: .85rem; font-weight: 600;
}
.feed-cta { text-align: center; margin-top: 32px; }

/* About */
.about-wrap { display: flex; gap: 34px; align-items: center; flex-wrap: wrap; justify-content: center; }
.about-logo { width: 200px; height: 200px; border-radius: 50%; border: 4px solid var(--orange); flex-shrink: 0; }
.about-wrap > div { max-width: 560px; }
.about-wrap h2 { font-size: 2.2rem; color: var(--brown); text-transform: uppercase; margin-bottom: 12px; }
.about-wrap p { margin-bottom: 12px; }
.about-hash { color: var(--orange); font-weight: 700; }

/* Footer */
.footer { background: #1a0f00; color: #cbb79f; text-align: center; padding: 40px 20px; font-size: .9rem; }
.footer img { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 12px; border: 2px solid var(--orange); }
.footer a { color: var(--orange); font-weight: 600; }

@media (max-width: 640px) {
  .nav nav a:not(.nav-cta) { display: none; }
  .hero { padding: 50px 16px 60px; }
}
