/*
Theme Name:  Orchestify
Theme URI:   https://orchestify.io
Author:      Orchestify Agency
Author URI:  https://orchestify.io
Description: Orchestify – DevOps & Outsourcing Agency MVP Theme. Full-stack DevOps services, CI/CD pipelines, cloud infrastructure, and outsourcing solutions.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: orchestify
Tags:        agency, devops, outsourcing, full-width-template, custom-menu, featured-images, threaded-comments

*/

/* =============================================
   ORCHESTIFY — CSS DESIGN SYSTEM
   Dark industrial-tech aesthetic
   Fonts: Syne (display) + DM Sans (body)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Urbanist:wght@700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --c-bg:        #FFFFFF;
  --c-surface:   #F7F9FC;
  --c-border:    #E2E8F0;
  --c-accent:    #1863AF;
  --c-accent2:   #5B4FD9;
  --c-text:      #1A202C;
  --c-muted:     #64748B;
  --c-white:     #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-hero:    'Urbanist', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --section-py: 100px;
}

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

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

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Remove dark noise overlay */
body::before { display: none; }

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-white); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
}

/* ── Layout Utilities ── */
.container      { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section        { padding: var(--section-py) 0; }
.section--dark  { background: var(--c-surface); }
.grid-2         { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4         { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center    { display: flex; align-items: center; justify-content: center; }
.flex-between   { display: flex; align-items: center; justify-content: space-between; }
.text-center    { text-align: center; }

/* ── Typography Scale ── */
.display-xl { font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
.display-md { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; }
.display-sm { font-size: 1.25rem; font-weight: 600; }
.body-lg    { font-size: 1.125rem; color: var(--c-muted); line-height: 1.8; }
.body-sm    { font-size: 0.875rem; color: var(--c-muted); }
.label      { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 500; font-size: 0.9375rem;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--c-accent); color: #fff;
  box-shadow: 0 0 24px rgba(24,99,175,0.2);
}
.btn-primary:hover {
  background: #124F96; color: #fff;
  box-shadow: 0 0 40px rgba(24,99,175,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-accent); color: var(--c-accent);
  background: rgba(24,99,175,0.05);
}
.btn-ghost { background: transparent; color: var(--c-muted); padding: 14px 0; }
.btn-ghost:hover { color: var(--c-text); }

/* ── Cards ── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(24,99,175,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24,99,175,0.08), 0 0 0 1px rgba(24,99,175,0.08);
}
.card--accent { border-top: 2px solid var(--c-accent); }
.card--violet { border-top: 2px solid var(--c-accent2); }

/* ── Badge / Tag ── */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
}
.badge-cyan   { background: rgba(24,99,175,0.08); color: #1863AF; border: 1px solid rgba(24,99,175,0.2); }
.badge-violet { background: rgba(91,79,217,0.08); color: #5B4FD9; border: 1px solid rgba(91,79,217,0.2); }
.badge-green  { background: rgba(22,163,74,0.08); color: #16A34A; border: 1px solid rgba(22,163,74,0.2); }

/* ── Section Header ── */
.section-header { margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header p { max-width: 560px; }
.section-header.text-center p { margin: 0 auto; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--c-border); margin: 0; }

/* ── Glow Effects ── */
.glow-cyan   { text-shadow: 0 0 40px rgba(24,99,175,0.6); }
.glow-violet { text-shadow: 0 0 40px rgba(123,97,255,0.6); }

/* Noise overlay removed for white theme */

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .flex-between { flex-direction: column; gap: 24px; }
}
