/*
Theme Name: EasyForm Minimal
Theme URI:  https://example.com/easyform-minimal
Author: Your Name
Author URI: https://example.com
Description: A minimal, full-featured starter theme for WordPress 6.8.3 — clean, accessible and easy to modify.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: easyform-minimal
Tags: minimal, accessibility, responsive, starter
*/

/* Minimal reset & theme styling */
:root {
  --content-width: 1000px;
  --accent: #1e73be;
}

html,body{height:100%;}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#111;
  line-height:1.5;
  background:#fff;
}

a{color:var(--accent); text-decoration:none;}
header.site-header{background:#fff;border-bottom:1px solid #eee; padding:1rem 0;}
.wrap{max-width:var(--content-width);margin:0 auto;padding:0 1rem;}
.site-title{margin:0;font-size:1.25rem;}
.site-description{margin:0;font-size:.9rem;color:#666;}

.site-content{padding:2rem 0;}
.post{margin-bottom:2rem;}
.post-title{font-size:1.5rem;margin:0 0 .5rem;}
.site-footer{border-top:1px solid #eee;padding:1rem 0;color:#666;font-size:.9rem;}
@media (min-width:700px){
  .two-column{display:grid;grid-template-columns:1fr 300px;gap:2rem;}
}

.custom-navbar {

  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}

.navbar-list {
  display: flex;
   justify-content: flex-end; /* 👈 Right-aligns the nav items */

  gap: 20px;
  
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.navbar-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.2s ease;
}

.navbar-list li a:hover {
  color: #0073aa;
}

.navbar-list .active a,
.navbar-list li a[aria-current="page"] {
  color: #0073aa;
  font-weight: 700;
  border-bottom: 2px solid #0073aa;
}
