/* ── IMPORTS ── */
@import 'nav.css';
@import 'hero.css';
@import 'partneri.css';
@import 'par-mums.css';
@import 'pasakumi.css';
@import 'single-pasakumi.css';
@import 'galerija.css';
@import 'informacija.css';
@import 'footer.css';

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

/* ── TOKENS ── */
:root {
  --gold:     #c6a266;
  --gold-dim: rgba(198,162,102,.15);
  --gray:     #aba7a6;
  --ring:     #4d4948;
  --black:    #000000;
  --white:    #ffffff;
  --bg:       #0a0a0a;
  --bg-alt:   #0f0f0f;
  --bg-card:  #111010;
  --border:   #1e1e1e;
  --text:     #ede9e4;
  --muted:    #7a7674;
  --dim:      #4d4948;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Baskerville', serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 900;
}

p, li {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
}

.overline {
  font-family: 'Black Ops One', serif;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}


/* ── H3 GOLD IN CONTENT AREAS ── */
.about-text h3,
.single-pasakums-text h3,
.single-info-text h3 {
  color: var(--gold);
  font-size: 1.15em;
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}

/* ── SECTIONS ── */
section { padding: 5rem 2.5rem; }
section.alt { background: var(--bg-alt); }

.section-header { margin-bottom: 3rem; }

.section-header h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  color: var(--gray);
  line-height: 1;
  margin-top: .4rem;
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 860px;
  margin-top: .75rem;
  text-align: justify;
}

.section-desc h3 { 
  color: var(--gold); 
  margin-top: 1.5rem; 
  margin-bottom: .5rem; 
}

.hero-compact {
  min-height: 30vh !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: .75rem 2rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn:hover { background: #d4b47a; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover { background: var(--gold-dim); transform: translateY(-1px); }

/* ── 404 ── */
.error-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2.5rem;
}

.error-404 h1 {
  font-size: clamp(80px, 15vw, 160px);
  color: var(--ring);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-404 p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 2rem;
}


/* ── WYSIWYG CONTENT ── */
.about-text h3,
.single-pasakums-wysiwyg h3,
.single-info-wysiwyg h3,
.info-card h3 {
  color: var(--gold);
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}

.about-text p,
.single-pasakums-wysiwyg p,
.single-info-wysiwyg p {
  margin-bottom: 1.1rem;
}

.about-text p:last-child,
.single-pasakums-wysiwyg p:last-child,
.single-info-wysiwyg p:last-child {
  margin-bottom: 0;
}

/* ── WYSIWYG LISTS ── */
.single-pasakums-wysiwyg ul,
.single-info-wysiwyg ul,
.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.1rem;
}

.single-pasakums-wysiwyg ul li,
.single-info-wysiwyg ul li,
.about-text ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: .35rem;
  font-size: 18px;
  color: #999;
  line-height: 1.6;
}

.single-pasakums-wysiwyg ul li::before,
.single-info-wysiwyg ul li::before,
.about-text ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}