/* ballcapliner.com - Main Stylesheet
   Prefix: bcl-
   Design: Mockup C - Lifestyle Magazine
   Fonts: Barlow Condensed + Roboto (Google Fonts)
*/

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bcl-primary:       #1A1A2E;
  --bcl-secondary:     #0D0D1A;
  --bcl-accent:        #F5C842;
  --bcl-accent-hover:  #D4A800;
  --bcl-bg:            #FFFFFF;
  --bcl-surface:       #F7F8FA;
  --bcl-text:          #1A1A2E;
  --bcl-text-muted:    #666666;
  --bcl-border:        #E5E5E5;
  --bcl-max-width:     1100px;
  --bcl-radius:        0px;
  --bcl-transition:    150ms ease;
  --bcl-section-v:     80px;
  --bcl-section-h:     40px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--bcl-text);
  background: var(--bcl-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--bcl-text);
}

h1 { font-size: clamp(2.5rem, 9vw, 7rem); line-height: 0.92; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
h3 { font-size: 2rem; font-weight: 700; line-height: 1.1; }
h4 { font-size: 1.3rem; font-weight: 700; line-height: 1.2; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.bcl-container {
  max-width: var(--bcl-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bcl-section-h);
  padding-right: var(--bcl-section-h);
}

.bcl-section {
  padding: var(--bcl-section-v) var(--bcl-section-h);
}

.bcl-section-inner {
  max-width: var(--bcl-max-width);
  margin: 0 auto;
}

/* ============================================================
   OVERLINE / KICKER
   ============================================================ */
.bcl-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bcl-accent);
  margin-bottom: 20px;
}

.bcl-overline::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--bcl-border);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.bcl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--bcl-section-h);
}

.bcl-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.bcl-logo span {
  color: var(--bcl-accent);
}

.bcl-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  aria-label: "Open navigation";
}

.bcl-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--bcl-accent);
  transition: transform var(--bcl-transition), opacity var(--bcl-transition);
}

.bcl-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bcl-hamburger.is-active span:nth-child(2) { opacity: 0; }
.bcl-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* NAV OVERLAY */
.bcl-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bcl-primary);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.bcl-overlay.is-open {
  display: flex;
}

.bcl-overlay a {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--bcl-transition);
}

.bcl-overlay a:hover,
.bcl-overlay a[aria-current="page"] {
  color: var(--bcl-accent);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.bcl-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--bcl-accent) 0%, var(--bcl-primary) 100%);
}

/* ============================================================
   HERO (Homepage - Full Bleed Dark)
   ============================================================ */
.bcl-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, #1A1A2E 0%, #2D3561 60%, #1A1A2E 100%);
}

.bcl-hero-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(245, 200, 66, 0.04) 0px,
    rgba(245, 200, 66, 0.04) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.bcl-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--bcl-max-width);
  margin: 0 auto;
  padding: 64px var(--bcl-section-h);
}

.bcl-hero-kicker {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bcl-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bcl-hero-kicker::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--bcl-accent);
}

.bcl-hero h1 {
  color: #fff;
  margin-bottom: 28px;
  max-width: 700px;
}

.bcl-hero h1 em {
  color: var(--bcl-accent);
  font-style: normal;
}

.bcl-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

/* ============================================================
   HERO (Interior pages - Compact)
   ============================================================ */
.bcl-hero-compact {
  background: var(--bcl-primary);
  padding: 64px var(--bcl-section-h) 48px;
}

.bcl-hero-compact-inner {
  max-width: var(--bcl-max-width);
  margin: 0 auto;
}

.bcl-hero-compact h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}

.bcl-hero-compact h1 em {
  color: var(--bcl-accent);
  font-style: normal;
}

.bcl-hero-compact p {
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Breadcrumb */
.bcl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.bcl-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--bcl-transition); }
.bcl-breadcrumb a:hover { color: var(--bcl-accent); }
.bcl-breadcrumb span { color: rgba(255,255,255,0.25); }

/* ============================================================
   BUTTONS
   ============================================================ */
.bcl-btn-solid {
  display: inline-block;
  background: var(--bcl-accent);
  color: var(--bcl-primary);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: var(--bcl-radius);
  transition: background var(--bcl-transition);
  border: none;
  cursor: pointer;
}

.bcl-btn-solid:hover {
  background: var(--bcl-accent-hover);
}

.bcl-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--bcl-accent);
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  text-decoration: none;
  border: 2px solid var(--bcl-accent);
  border-radius: var(--bcl-radius);
  transition: background var(--bcl-transition), color var(--bcl-transition);
}

.bcl-btn-outline:hover {
  background: var(--bcl-accent);
  color: var(--bcl-primary);
}

.bcl-text-link {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bcl-text);
  text-decoration: none;
  border-bottom: 2px solid var(--bcl-accent);
  padding-bottom: 2px;
  transition: color var(--bcl-transition);
}

.bcl-text-link:hover { color: var(--bcl-accent); }

/* ============================================================
   FEATURE SPLIT (Homepage)
   ============================================================ */
.bcl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.bcl-split-img {
  background: linear-gradient(135deg, var(--bcl-primary) 0%, #2D3561 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bcl-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 4px 4px 0 rgba(26,26,46,0.1);
}

.bcl-split-text {
  background: var(--bcl-surface);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bcl-split-text h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.bcl-split-text p {
  color: var(--bcl-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================================
   CARDS (3-column grid)
   ============================================================ */
.bcl-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bcl-card {
  background: var(--bcl-surface);
  padding: 32px 28px;
  border-bottom: 4px solid var(--bcl-accent);
  transition: transform var(--bcl-transition), box-shadow var(--bcl-transition);
}

.bcl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,26,46,0.1);
}

.bcl-card-num {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(26,26,46,0.07);
  line-height: 1;
  margin-bottom: -8px;
}

.bcl-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.bcl-card p {
  color: var(--bcl-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   DARK CTA BANNER
   ============================================================ */
.bcl-cta {
  background: var(--bcl-primary);
  padding: var(--bcl-section-v) var(--bcl-section-h);
}

.bcl-cta-inner {
  max-width: var(--bcl-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bcl-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.bcl-cta h2 em {
  color: var(--bcl-accent);
  font-style: normal;
}

/* ============================================================
   ARTICLE BODY
   ============================================================ */
.bcl-article-wrap {
  max-width: var(--bcl-max-width);
  margin: 0 auto;
  padding: var(--bcl-section-v) var(--bcl-section-h);
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 64px;
  align-items: start;
}

.bcl-article-body {
  min-width: 0;
}

.bcl-article-body p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4em;
}

.bcl-article-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.bcl-article-body h3 {
  font-size: 1.4rem;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.bcl-article-body ul,
.bcl-article-body ol {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.bcl-article-body ol { list-style: decimal; }

.bcl-article-body li {
  margin-bottom: 0.5em;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.75;
}

.bcl-article-body a {
  color: var(--bcl-primary);
  border-bottom: 1px solid var(--bcl-accent);
  transition: color var(--bcl-transition);
}

.bcl-article-body a:hover { color: var(--bcl-accent); }

.bcl-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--bcl-text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bcl-border);
}

.bcl-article-meta strong { color: var(--bcl-text); }

/* Sidebar */
.bcl-article-sidebar {
  min-width: 0;
}

.bcl-sidebar-box {
  background: var(--bcl-surface);
  padding: 28px;
  border-top: 4px solid var(--bcl-accent);
  margin-bottom: 24px;
}

.bcl-sidebar-box h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bcl-border);
}

.bcl-sidebar-box ul { list-style: none; padding: 0; }
.bcl-sidebar-box li { margin-bottom: 10px; }
.bcl-sidebar-box a {
  font-size: 0.9rem;
  color: var(--bcl-text-muted);
  transition: color var(--bcl-transition);
}
.bcl-sidebar-box a:hover { color: var(--bcl-accent); }

/* ============================================================
   FAQ
   ============================================================ */
.bcl-faq {
  margin-top: 2em;
}

.bcl-faq-item {
  border-top: 1px solid var(--bcl-border);
  padding: 20px 0;
}

.bcl-faq-item:last-child { border-bottom: 1px solid var(--bcl-border); }

.bcl-faq-q {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.bcl-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--bcl-accent);
  flex-shrink: 0;
  transition: transform var(--bcl-transition);
}

.bcl-faq-item.is-open .bcl-faq-q::after {
  transform: rotate(45deg);
}

.bcl-faq-a {
  display: none;
  padding-top: 12px;
  color: var(--bcl-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.bcl-faq-item.is-open .bcl-faq-a {
  display: block;
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.bcl-author-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bcl-surface);
  padding: 32px;
  border-left: 4px solid var(--bcl-accent);
  margin-top: 2.5em;
}

.bcl-author-avatar {
  width: 80px;
  height: 80px;
  background: var(--bcl-primary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--bcl-accent);
  flex-shrink: 0;
}

.bcl-author-name {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.bcl-author-role {
  font-size: 0.85rem;
  color: var(--bcl-text-muted);
  margin-bottom: 10px;
}

.bcl-author-bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   DARK SURFACE SECTION
   ============================================================ */
.bcl-dark {
  background: var(--bcl-primary);
}

.bcl-dark h2,
.bcl-dark h3,
.bcl-dark .bcl-overline { color: var(--bcl-accent); }

.bcl-dark p,
.bcl-dark li { color: rgba(255,255,255,0.75); }

.bcl-dark .bcl-card {
  background: rgba(255,255,255,0.05);
  border-bottom-color: var(--bcl-accent);
}

.bcl-dark .bcl-card h3 { color: #fff; }
.bcl-dark .bcl-card p { color: rgba(255,255,255,0.65); }

/* ============================================================
   FOOTER
   ============================================================ */
.bcl-footer {
  background: var(--bcl-secondary);
  color: rgba(255,255,255,0.5);
  padding: 48px var(--bcl-section-h);
}

.bcl-footer-inner {
  max-width: var(--bcl-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.bcl-footer-brand {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bcl-footer-brand span { color: var(--bcl-accent); }

.bcl-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 20px;
}

.bcl-footer-copy {
  font-size: 0.8rem;
}

.bcl-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bcl-footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--bcl-transition);
}

.bcl-footer-links a:hover { color: var(--bcl-accent); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bcl-about-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--bcl-section-v) var(--bcl-section-h);
}

.bcl-about-wrap p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.85;
  margin-bottom: 1.4em;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.bcl-legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--bcl-section-v) var(--bcl-section-h);
}

.bcl-legal-wrap h2 {
  font-size: 1.5rem;
  margin-top: 2em;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

.bcl-legal-wrap p,
.bcl-legal-wrap li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1em;
}

.bcl-legal-wrap ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.bcl-404-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--bcl-section-v) var(--bcl-section-h);
  background: var(--bcl-primary);
}

.bcl-404-wrap h1 {
  font-size: clamp(6rem, 20vw, 14rem);
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 0;
}

.bcl-404-wrap h2 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.bcl-404-wrap p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .bcl-article-wrap {
    grid-template-columns: 1fr;
  }
  .bcl-article-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --bcl-section-v: 56px;
    --bcl-section-h: 24px;
  }

  .bcl-split { grid-template-columns: 1fr; }
  .bcl-split-img { min-height: 280px; }
  .bcl-split-text { padding: 36px 24px; }

  .bcl-cards { grid-template-columns: 1fr; }

  .bcl-cta-inner { flex-direction: column; align-items: flex-start; }

  .bcl-footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .bcl-article-body h2 { font-size: 1.6rem; }
  .bcl-article-body h3 { font-size: 1.25rem; }

  .bcl-hero { min-height: 70vh; }
}

@media (max-width: 480px) {
  .bcl-nav { padding: 0 20px; }
  .bcl-logo { font-size: 1.3rem; }
  .bcl-hero-content { padding: 48px 20px; }
  .bcl-overlay a { font-size: 2rem; }
}
