/* Sud-Ouest Découverte — Custom Styles */

/* Playfair Display + Source Sans 3 loaded via Google Fonts in HTML */

:root {
  --color-primary: #059669;
  --color-accent: #d97706;
  --color-bg: #fefce8;
  --color-text: #1c1917;
  --color-text-light: #57534e;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
}

/* Header */
.site-header {
  border-bottom: 3px solid var(--color-accent);
}

.site-header a {
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--color-primary);
}

/* Footer */
.site-footer {
  border-top: 3px solid var(--color-accent);
}

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

/* Blog cards */
.blog-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Image placeholders */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-style: italic;
  color: #78716c;
  font-size: 0.875rem;
  padding: 1rem;
}

/* Breadcrumbs */
.breadcrumb a:hover {
  text-decoration: underline;
}

/* Article content */
.article-content p {
  margin-bottom: 1.25rem;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Tag cloud */
.tag-cloud a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin: 0.25rem;
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-primary);
  transition: background 0.2s, color 0.2s;
}

.tag-cloud a:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Mobile menu (pure CSS) */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu-checkbox:checked ~ .mobile-nav {
    display: flex;
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
  }
}
