/* ================================================
   escortsindebuurt.nl — Global Stylesheet
   Dark theme, gold accent, mobile-first
   ================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0e0e12;
  --bg2:       #16161d;
  --bg3:       #1e1e28;
  --border:    #2a2a38;
  --gold:      #c9a84c;
  --gold-lt:   #e0c270;
  --pink:      #d4538a;
  --text:      #e0e0e8;
  --muted:     #888899;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); text-decoration: underline; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: var(--text); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .3rem; }

/* ---------- Layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4rem 0; }

/* ---------- Header / Nav ---------- */
header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.5px;
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .1s;
}

.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: #0e0e12;
}

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

.btn-pink {
  background: var(--pink);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #12121a 0%, #1a1025 60%, #0e0e12 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 { margin-bottom: 1rem; }
.hero h1 span { color: var(--gold); }

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

/* Search bar */
.search-bar {
  display: flex;
  max-width: 580px;
  margin: 0 auto 1.5rem;
  gap: .5rem;
}

.search-bar input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}

.search-bar input::placeholder { color: var(--muted); }
.search-bar input:focus { border-color: var(--gold); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Section headers ---------- */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p { color: var(--muted); max-width: 520px; margin: .5rem auto 0; }

/* ---------- Escort Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.escort-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.escort-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-photo-placeholder {
  font-size: 3.5rem;
  opacity: .3;
}

.card-badge {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: var(--gold);
  color: #0e0e12;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.card-body { padding: 1rem; }
.card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.card-meta { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.card-meta span { margin-right: .6rem; }
.card-desc { font-size: .88rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.5; }
.card-footer { display: flex; gap: .5rem; }
.card-footer .btn { font-size: .82rem; padding: .45rem 1rem; flex: 1; text-align: center; }

/* ---------- Categories ---------- */
.categories-section { background: var(--bg2); }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.cat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.cat-card:hover { border-color: var(--gold); background: rgba(201,168,76,.07); }
.cat-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.cat-name { font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.cat-count { font-size: .8rem; color: var(--muted); }

/* ---------- Coming Soon ---------- */
.coming-soon {
  background: linear-gradient(135deg, #16101f 0%, #1a1025 100%);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.coming-soon h2 span { color: var(--gold); }

.coming-soon p { color: var(--muted); max-width: 480px; margin: .75rem auto 1.75rem; }

.cs-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: .5rem;
}

.cs-form input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  color: var(--text);
  font-size: .9rem;
  outline: none;
}

.cs-form input:focus { border-color: var(--gold); }
.cs-form input::placeholder { color: var(--muted); }

/* ---------- SEO Content ---------- */
.seo-section { background: var(--bg); }

.seo-content {
  max-width: 820px;
  margin: 0 auto;
}

.seo-content h2 { color: var(--gold); margin-top: 2rem; margin-bottom: .75rem; }
.seo-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.seo-content p { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg2); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}

.faq-q:hover { color: var(--gold); }
.faq-q .arrow { color: var(--gold); font-size: 1.1rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo { font-size: 1.1rem; margin-bottom: .6rem; display: block; }
.footer-brand p { font-size: .88rem; color: var(--muted); }

.footer-col h4 { font-size: .9rem; color: var(--text); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .88rem; color: var(--muted); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Article pages ---------- */
.article-hero {
  background: var(--bg2);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-hero .breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.article-hero .breadcrumb a { color: var(--muted); }
.article-hero .breadcrumb a:hover { color: var(--gold); }
.article-hero h1 { max-width: 760px; }
.article-hero .meta { margin-top: .75rem; font-size: .85rem; color: var(--muted); }

.article-body { padding: 3rem 0 4rem; }

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content h2 { color: var(--gold); margin-top: 2rem; margin-bottom: .75rem; }
.article-content h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.article-content p { color: var(--muted); margin-bottom: 1rem; }
.article-content ul { color: var(--muted); margin-bottom: 1rem; }

.article-cta {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta h3 { margin-bottom: .5rem; }
.article-cta p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }

.related-articles {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-articles h3 { margin-bottom: 1rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}

.related-link {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .88rem;
  color: var(--muted);
  display: block;
  transition: border-color .2s, color .2s;
}

.related-link:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .search-bar { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .cs-form { flex-direction: column; }

  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}
