/* Skyttere.com - Dark Heroic Theme */
:root {
  --bg-primary:    #0a0a0f;
  --bg-secondary:  #111118;
  --bg-card:       #16161f;
  --bg-card-hover: #1c1c28;
  --accent-gold:   #c9a84c;
  --accent-red:    #8b1a1a;
  --text-primary:  #e8e8e8;
  --text-secondary:#b0b0c0;
  --text-muted:    #666680;
  --border:        #2a2a3a;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --radius:        4px;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --transition:    0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #e8c96a; }

h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.3; color: var(--text-primary); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin: 2rem 0 1rem; }
h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }

p { margin-bottom: 1.2rem; color: var(--text-secondary); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* HEADER */
.site-header {
  background: rgba(10,10,15,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold) !important;
  letter-spacing: 0.05em;
}
.site-logo span { color: var(--text-muted); font-size: 0.7rem; display: block; letter-spacing: 0.15em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: var(--text-secondary); font-size: 0.9rem; letter-spacing: 0.05em; }
nav a:hover { color: var(--accent-gold); }
.lang-switch { display: flex; gap: 0.5rem; }
.lang-switch a {
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.lang-switch a.active, .lang-switch a:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a0a 50%, #0a0a0f 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; padding: 4rem 1.5rem; max-width: 800px; }
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 1.5rem;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2.5rem; }

.btn-primary {
  display: inline-block;
  background: var(--accent-gold);
  color: #000 !important;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary:hover { background: #e8c96a; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(201,168,76,0.1); }

/* MAIN GRID */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 0;
}
.content-main { min-width: 0; }

/* SECTION HEADER */
.section-header { margin-bottom: 2rem; }
.section-header h2 { margin: 0 0 0.5rem; }
.section-line { width: 60px; height: 3px; background: var(--accent-gold); }

/* ARTICLE FEATURED */
.article-featured {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.article-featured:hover { border-color: var(--accent-gold); }
.article-featured-img {
  height: 300px;
  background-size: cover; background-position: center;
  background-color: var(--bg-secondary);
}
.article-featured-body { padding: 2rem; }

/* ARTICLE GRID */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover { border-color: var(--accent-gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card-img { height: 180px; background-size: cover; background-position: center; background-color: var(--bg-secondary); }
.article-card-body { padding: 1.2rem; }
.article-card h3 { font-size: 1rem; margin: 0.5rem 0; }
.article-card h3 a { color: var(--text-primary); }
.article-card h3 a:hover { color: var(--accent-gold); }

.article-cat {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.article-meta {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.8rem;
}
.article-excerpt { font-size: 0.9rem; color: var(--text-secondary); margin: 0.8rem 0; }

/* ARTICLE PAGE */
.article-header { margin-bottom: 2rem; }
.article-hero-img {
  width: 100%; height: 400px;
  background-size: cover; background-position: center;
  background-color: var(--bg-secondary);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.article-body { font-size: 1.05rem; line-height: 1.8; }
.article-body h2 { border-left: 3px solid var(--accent-gold); padding-left: 1rem; }
.article-nav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* SIDEBAR */
.sidebar { min-width: 0; }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}

/* AD SLOTS */
.ad-slot {
  background: var(--bg-secondary);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  margin: 1.5rem 0;
  min-height: 90px;
  display: flex; align-items: center; justify-content: center;
}

/* FOOTER */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-col h4 {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 1rem;
}
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* DIVIDER */
.divider { width: 60px; height: 3px; background: var(--accent-gold); margin: 1.5rem 0; }

/* FADE IN ANIMATION */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* EMPTY STATE */
.empty-state {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* LOAD MORE */
.load-more-wrap { text-align: center; margin: 2rem 0; }

/* MOBILE */
@media (max-width: 768px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-secondary); flex-direction: column;
        padding: 1rem; border-bottom: 1px solid var(--border); }
  nav.open { display: flex; }
  .article-grid { grid-template-columns: 1fr; }
  .hero { min-height: 50vh; }
  .article-hero-img { height: 220px; }
}
