/*
Theme Name: No Cookies WP Theme
Theme URI: NA
Author: Tim Schram
Description: A minimal, text-first WordPress theme that sets zero cookies. No tracking, no emoji scripts, no comment cookies, no session cookies for logged-out visitors.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: MIT
Text Domain: nocookie-minimal
*/

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--white:    #FFFFFF;
  --ink:    #1a1a1a;
  --paper:  #fafaf8;
  --muted:  #767676;
  --rule:   #e0ddd8;
  --accent: #b5451b;
  --max:    100%;
  --serif:  "Georgia", "Times New Roman", serif;
  --mono:   "Courier New", monospace;
  --sansserif:  "Arial", "Helvetica", sans-serifserif;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  font-family: var(--sansserif);
  background: var(--white);
  color: var(--ink);
  line-height: 1.75;
  padding: 2rem 1.25rem;
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */
.site-wrapper {
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--ink);
}

.site-title {
  font-size: 1.35rem;
  font-weight: normal;
  letter-spacing: 0.02em;
}

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

.site-title a:hover { color: var(--accent); }

.site-description {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--mono);
  margin-top: 0.25rem;
}

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.main-navigation {
  margin-top: 1rem;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}

.main-navigation a {
  font-family: var(--mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--accent); }

/* ─── Posts / Pages ─────────────────────────────────────────────────────────── */
.post, .page { margin-bottom: 4rem; }

.entry-header { margin-bottom: 1.5rem; }

.entry-title {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.3;
}

.entry-title a { color: inherit; text-decoration: none; }
.entry-title a:hover { color: var(--accent); }

.entry-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.entry-meta a { color: var(--muted); }

/* ─── Content ───────────────────────────────────────────────────────────────── */
.entry-content p,
.entry-summary p { margin-bottom: 1.25rem; }

.entry-content h2, .entry-content h3, .entry-content h4 {
  margin: 2rem 0 0.75rem;
  font-weight: normal;
}

.entry-content h2 { font-size: 1.3rem; border-bottom: 1px solid var(--rule); padding-bottom: 0.3rem; }
.entry-content h3 { font-size: 1.1rem; }
.entry-content h4 { font-size: 1rem; font-style: italic; }

.entry-content a { color: var(--accent); }
.entry-content a:hover { text-decoration: none; }

.entry-content blockquote {
  border-left: 3px solid var(--rule);
  padding-left: 1.25rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
}

.entry-content pre {
  font-family: var(--mono);
  font-size: 0.8rem;
  background: #f0ede8;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  border-left: 3px solid var(--rule);
  margin: 1.5rem 0;
  line-height: 1.6;
}

.entry-content code {
  font-family: var(--mono);
  font-size: 0.82em;
  background: #f0ede8;
  padding: 0.1em 0.3em;
}

.entry-content pre code { background: none; padding: 0; }

.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.entry-content li { margin-bottom: 0.3rem; }

.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2rem 0;
}

/* ─── Read More / Pagination ────────────────────────────────────────────────── */
.more-link,
.page-links a,
.nav-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
}

.more-link:hover,
.nav-links a:hover { text-decoration: underline; }

.posts-navigation,
.post-navigation {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  padding-top: 1.5rem;
  margin-top: 4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
  html { font-size: 16px; }
  .entry-title { font-size: 1.4rem; }
}


/* Forms -------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --input-border: #8b8a8b;
  --input-focus-h: 245;
  --input-focus-s: 100%;
  --input-focus-l: 42%;
}

.input {
  font-size: 16px;
  // Capitalized to prevent Sass
  // thinking it's the Sass max()
  font-size: Max(16px, 1em);
  font-family: inherit;
  padding: 0.25em 0.5em;
  background-color: #fff;
  border: 2px solid var(--input-border);
  border-radius: 4px;
  transition: 180ms box-shadow ease-in-out;
}

.input:focus {
  border-color: hsl(
    var(--input-focus-h),
    var(--input-focus-s),
    var(--input-focus-l)
  );
  box-shadow: 0 0 0 3px
    hsla(
      var(--input-focus-h),
      var(--input-focus-s),
      calc(var(--input-focus-l) + 40%),
      0.8
    );
  outline: 3px solid transparent;
}

.input:not(textarea) {
  line-height: 1;
  height: 2.25rem;
}

input[type="file"] {
  font-size: 0.9em;
  padding-top: 0.35rem;
}

textarea.input {
  resize: vertical;
}

.input[readonly] {
  border-style: dotted;
  cursor: not-allowed;
  color: #777;
}

.input[disabled] {
  --input-border: #ccc;

  background-color: #eee;
  cursor: not-allowed;
}

label {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}

.input + label {
  margin-top: 2rem;
}

.login-submit input {
	font-size: 18px !important;
    background-color: #3b5668 !important;
	color: #FFFFFF !important;
	padding: 6px !important;
	min-width: 120px !important;
}

.login-submit input {
	border: 0 !important;
}

.login-submit input:hover {
	border: 0 !important;
	background-color: #000000 !important;
}

.plan_btn, .plan_btn-select {
	background-color: #3b5668 !important;
	color: #FFFFFF !important;
}

.plan_btn a {
	color: #FFFFFF !important;
}

.entry-content a {
	color: #A71A2D !important;
}

iframe {
	border: 0 !important;
	width: 100% !important;
	margin: 0 auto !important;
}

.blocker {
	background-color: rgba(0, 0, 0, .75) !important;
}

.entry-title {
	display: none !important;
}

.pay_form {
	padding-left: 22% !important;
}

#checkout_form_wrapper label{
	font-size: 15px !important;
}


.checkout_checkout-field-bemail label {
	margin-bottom: 12px !important;
}

.checkout_checkout-field {
	margin: 10px 0 !important;
}

.clearboth {
	margin: 0 !important;
	height: 0 !important;
}

.checkout_spacer {
	padding: 0 !important;
}


.entry-content h4 {
	font-style: normal;
	font-size: 22px !important;
}

h5 {
margin-bottom: 12px !important;	
}

.checkout_checkout h5 {
	padding-top: 0 !important;
}

hr {
	margin:10px 0 !important;
}

.input {
	width: 100% !important;
}

select {
	padding: 11px !important;
}

table {
	width: 100% !important;
}


td {
	padding: 8px 0 !important;
	border-bottom: 1px solid #CCCCCC !important;
}