/* Chinette — styles des pages statiques SEO */

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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --text: #1e293b;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --section-bg: #f1f5f9;
  --radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--section-bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: var(--primary);
  padding: 1rem 1.25rem;
}

.site-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.site-logo:hover { text-decoration: underline; }

.page-main {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  flex: 1;
}

/* ── Layout deux colonnes (desktop) : contenu + pub latérale ── */
.page-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.ad-aside {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 1.5rem;
  margin-top: 2rem;
  min-height: 250px;
}

.ad-slot {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.ad-slot.ad-aside ins {
  display: block;
  min-height: 250px;
}

@media (max-width: 1024px) {
  .page-grid { display: block; }
  .ad-aside { display: none; }
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text); }

h1 {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h2 { font-size: 1.15rem; margin: 1.5rem 0 0.75rem; }

.event-facts {
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.event-facts li { margin-bottom: 0.5rem; }
.event-facts li:last-child { margin-bottom: 0; }
.event-facts strong { color: var(--text-secondary); font-weight: 600; }

.event-desc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.intro { margin-bottom: 1.25rem; }

.city-events {
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.city-events li { margin-bottom: 0.85rem; }
.city-events li:last-child { margin-bottom: 0; }

.city-events a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.city-events a:hover { color: var(--primary); text-decoration: underline; }

.ev-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.btn:hover { background: var(--primary-hover); }

.btn-ghost {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-ghost:hover { background: var(--primary); color: #fff; }

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.site-footer a { color: var(--primary); }

@media (max-width: 640px) {
  h1 { font-size: 1.3rem; }
}
