/*
Theme Name: temaresor
Theme URI: https://example.com/temaresor
Author: Apurba Shrestha
Author URI: https://example.com
Description: A custom theme built for ACF Pro and WPGraphQL compatibility.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: temaresor
Tags: custom-theme, acf, wpgraphql
*/

/* Basic reset and typography */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f3f4f6;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer {
  background: #111827;
  color: #f9fafb;
  padding: 1.5rem 1.25rem;
}

.site-header a,
.site-footer a {
  color: inherit;
}

.site-main {
  flex: 1;
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1.25rem 3rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
}

.site-title {
  font-size: 1.75rem;
  margin: 0;
}

.site-description {
  margin: 0.25rem 0 0;
  opacity: 0.8;
}

.post {
  margin-bottom: 2.5rem;
}

.post-title {
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.acf-block {
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.acf-block h2 {
  margin-top: 0;
}

.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.navigation a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
}


