/*
Theme Name: NISP Theme
Theme URI: https://nisp.com.br
Author: CALSOFT
Author URI: https://calsoft.com.br
Description: Tema customizado para o Blog do NISP - Núcleo de Inovações Sociais em Políticas Públicas. Design moderno e responsivo com Bootstrap 5.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietário
Text Domain: nisp-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, education, portfolio

NISP Theme, Copyright 2025 - NISP (Núcleo de Inovações Sociais em Políticas Públicas)
Todos os direitos reservados. Este tema é propriedade exclusiva do NISP.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 CSS Variables
2.0 Typography
3.0 Elements
4.0 Navigation
5.0 Accessibility
6.0 Alignments
7.0 Clearings
8.0 Widgets
9.0 Content
10.0 Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 CSS Variables
--------------------------------------------------------------*/
:root {
  /* Colors from style guide */
  --color-primary: #EC6608;
  --color-secondary: #53541A;
  --color-tertiary: #54BBAB;
  --color-tertiary-light: #C0E1D7;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-light: #F5F5F5;
  --color-gray: #666666;

  /* Typography */
  --font-heading: 'Zalando Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-body-condensed: 'Open Sans Condensed', sans-serif;

  /* Font sizes */
  --font-size-h1: 40px;
  --font-size-h2: 20px;
  --font-size-body: 16px;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;

  /* Container */
  --container-width: 1200px;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--color-tertiary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
4.0 Navigation
--------------------------------------------------------------*/
/* Styles will be in custom.css with Bootstrap integration */

/*--------------------------------------------------------------
5.0 Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*--------------------------------------------------------------
6.0 Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  margin-right: var(--spacing-sm);
}

.alignright {
  float: right;
  margin-left: var(--spacing-sm);
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
7.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/* Note: Main styles are loaded from assets/css/ folder with Bootstrap 5 */
