/*
Theme Name: Saasify Orcaworks
Theme URI:  https://example.com/
Author:      Your Name
Author URI:  https://example.com/
Description: Saasify Orcaworks — classic theme derived from Saasify. Converted to a standalone classic theme (no parent required).
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: saasify-orcaworks
Tags:        one-column, two-columns, flexible-header, accessibility-ready, custom-logo, featured-images
*/
/* ---------------------------
   Local font-face definitions
   Place font files in: /wp-content/themes/saasify-child/assets/fonts/
   Filenames used below are examples — replace with your actual files.
   --------------------------- */
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('assets/fonts/NeueHaasDisplay.woff2') format('woff2'),
       url('assets/fonts/NeueHaasDisplay.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('assets/fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
       url('assets/fonts/NeueHaasDisplay-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fallback CSS variable used across your stylesheet */
:root {
  --wp--preset--font-family--neue-haas-grotesk-display-pro: 'Neue Haas Grotesk Display', "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ----------------------------------------------------------
   Basic reset / baseline
   ---------------------------------------------------------- */
:root {
  --color-bg: #071024;
  --color-surface: rgba(255,255,255,0.02);
  --color-text: #e6eef8;
  --color-muted: #9aa6b2;
  --color-primary: #0b63ff;
  --accent-gradient: linear-gradient(90deg,#06b6d4,#7c3aed);
  --max-width: 1200px;
  --radius: 12px;
  --site-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--site-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

/* ----------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------- */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------
   Header
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  padding: 18px 0;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Branding */
.site-branding .site-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

/* Nav */
.nav-list {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a {
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
}
.nav-list a:hover {
  background: rgba(255,255,255,0.03);
}

/* Actions */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--color-text);
  background: transparent;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(7,12,36,0.6);
}

/* ----------------------------------------------------------
   Hero / Headings
   ---------------------------------------------------------- */
.hero {
  padding: 72px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}
.h-intro h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.06;
}
.lead { color: var(--color-muted); margin-bottom: 18px; }

/* Features / cards */
.features { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.feature {
  background: var(--color-surface);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

/* Card */
.card {
  background: rgba(255,255,255,0.02);
  padding: 20px;
  border-radius: 12px;
}

/* ----------------------------------------------------------
   Sections
   ---------------------------------------------------------- */
.section-features, .section-pricing {
  padding: 36px 0;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* Pricing */
.pricing { display:flex; gap:18px; flex-wrap:wrap; }
.price-card {
  background: #071328;
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 220px;
}

/* ----------------------------------------------------------
   Blog / Post styles
   ---------------------------------------------------------- */
.entry-title { margin: 0 0 8px; font-size: 1.5rem; color: var(--color-text); }
.post-excerpt { color: var(--color-muted); }

.post-list article { margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.03); }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
  padding: 36px 0;
  margin-top: 48px;
  background: transparent;
}
.site-footer .footer-grid {
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  align-items:flex-start;
}
.site-footer a { color: var(--color-text); text-decoration: none; }

/* Copyright */
.site-copyright {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 16px;
  margin-top: 18px;
  color: var(--color-muted);
}

/* ----------------------------------------------------------
   Utilities
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.muted { color: var(--color-muted); }

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-list { display: none; }
  .h-intro h1 { font-size: 30px; }
}

/* ----------------------------------------------------------
   End of style.css
   ---------------------------------------------------------- */
