/*
Theme Name: Simfinite
Theme URI: https://github.com/anant/simfinite-theme
Author: Antigravity
Author URI: https://github.com/anant
Description: Convert static single-page React mockup into a responsive, high-performance WordPress theme with an interactive intake flow.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simfinite
Tags: one-column, custom-menu, translation-ready, dark, custom-colors
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #FBFAF7;
  color: #12181F;
}

@keyframes fibPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

input:focus {
  outline: 2px solid #2A7FD4 !important;
  border-color: #2A7FD4 !important;
}

.opt-btn:hover {
  border-color: #F5B700 !important;
  background: #1F2830 !important;
}

.ghost-hover:hover {
  background: #F5B700 !important;
  color: #12181F !important;
}

.cta-hover:hover {
  background: #D99A00 !important;
}

.nav-lnk:hover {
  color: #12181F !important;
  cursor: pointer;
}

.person-icon:hover {
  opacity: .7;
}

html {
  scroll-behavior: smooth;
}

/* Base styling for inner WordPress pages to match the premium dark/light layout */
.wp-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 24px;
}

.entry-title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 400;
  color: #0B1E3E;
  margin-bottom: 24px;
}

.entry-meta {
  font-family: monospace;
  font-size: 11px;
  color: #5B6470;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.entry-content {
  font-size: 16px;
  line-height: 1.7;
  color: #12181F;
}

.entry-content p {
  margin-bottom: 24px;
}

.entry-content h2, .entry-content h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #0B1E3E;
  margin: 40px 0 16px;
}

.entry-content ul, .entry-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

/* Accessibility screen reader text styling */
.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;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #FBFAF7;
  clip: auto !important;
  clip-path: none;
  color: #12181F;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px;
  position: absolute;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

