/*
Theme Name: RNCD Simple
Theme URI: https://example.com/rncd-simple
Author: Rubens de Falcon
Author URI: https://www.kirc.com.br
Description: Tema WordPress minimalista com header e footer escuros, menu à direita e conteúdo branco. Usa Bootstrap via CDN e Open Sans.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: rncd-simple
*/

/* Reset basics */
* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  margin: 0;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: #434343;
  color: #fff;
  padding: 12px 0;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-brand img {
  max-height: 48px;
  height: auto;
  width: auto;
}

.primary-nav {
  margin: 0;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav a {
  color: #fff;
  font-weight: 600;
  padding: 6px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  text-decoration: underline;
}

/* Content */
.site-content {
  background: #fff;
  padding: 32px 0 48px;
  min-height: 60vh;
}

/* Footer */
.site-footer {
  background: #434343;
  color: #fff;
  text-align: center;
  padding: 24px 0;
}

.site-footer p { margin: 0; }
