/*
Theme Name: NAF
Theme URI: https://nafnfc.com
Author: NAF Team
Author URI: https://nafnfc.com
Description: A single-page theme skeleton inspired by Astra; first draft uses placeholder content.
Version: 1.0
Text Domain: naf-theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Basic Reset */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Site Branding - General Rules (specific header .site-branding in header.css) */
.site-branding {
  padding: 1rem; /* Kept as a general fallback, header.css has more specific */
  text-align: center;
}

.site-title-wrapper {
  display: inline-block;
  text-align: left;
}

.site-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-title a {
  color: #333;
  text-decoration: none;
}

.site-title a:hover {
  color: #666;
}

.site-description {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: #666;
}

/* Site Footer (Site Header moved to header.css) */
.site-footer {
  padding: 2rem 1rem;
  background: #f8f9fa;
  margin-top: 2rem;
}

.entry-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Section placeholders */
.section {
  padding: 3rem 1rem;
  margin: 2rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Business Profile specific styles MOVED to bprofile.css */

/* --- Appended content from assets/css/custom.css --- */

/* Custom styles for NAF Theme */
/* This file will be populated with custom styles in future iterations */

/* NAF Theme Custom Styles */
:root {
  --naf-primary: #c5a45c;
  --naf-primary-light: #d4ba7f;
  --naf-primary-dark: #a88b45;
  --naf-secondary: #0b1b3f;
  --naf-secondary-light: #162c5c;
  --naf-secondary-dark: #060f24;
  --naf-bg-default: #f8f9fa;
  --naf-bg-paper: #ffffff;
  --naf-text-primary: #0b1b3f;
  --naf-text-secondary: #5a6a8b;
  --naf-font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  font-family: var(--naf-font-family);
  background: var(--naf-bg-default);
  color: var(--naf-text-primary);
}
