/*
Theme Name: Elevate Digital
Author: Stephen Hubbert
Version: 1.0
Description: Lean, minimal-luxury WordPress theme for Elevate Digital.
*/

/* -----------------------------
   Elevate Design System (Minimal Luxury)
----------------------------- */

:root{
  /* Colors */
  --ed-ink: #0F172A;
  --ed-text: #1E293B;
  --ed-muted: #64748B;
  --ed-border: #E5E7EB;
  --ed-surface: #FFFFFF;
  --ed-bg: #FFFFFF;
  --ed-soft: #F8FAFC;
  --ed-accent: #2563EB;
  --ed-accent-dark: #1E40AF;

  /* Type */
  --ed-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Layout */
  --ed-container: 1200px;
  --ed-pad-x: 24px;
  --ed-radius-lg: 18px;
  --ed-radius-md: 12px;

  /* Shadows */
  --ed-shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
  --ed-shadow-md: 0 18px 60px rgba(15, 23, 42, 0.10);

  /* Spacing */
  --ed-section-y: 120px;
  --ed-section-y-md: 90px;
  --ed-section-y-sm: 70px;
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; background:var(--ed-bg); color:var(--ed-text); font-family:var(--ed-font); }
img{ max-width:100%; height:auto; display:block; }
body{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{ max-width:var(--ed-container); margin:0 auto; padding:0 var(--ed-pad-x); }
section{ padding: var(--ed-section-y) 0; }

@media (max-width: 900px){ section{ padding: var(--ed-section-y-md) 0; } }
@media (max-width: 600px){ section{ padding: var(--ed-section-y-sm) 0; } }

/* Typography */
h1,h2,h3{ color:var(--ed-ink); margin:0 0 16px; letter-spacing:-0.02em; }
h1{ font-size:52px; line-height:1.08; font-weight:800; }
h2{ font-size:36px; line-height:1.2; font-weight:750; }
h3{ font-size:22px; line-height:1.3; font-weight:700; }

p{ margin:0 0 16px; font-size:18px; line-height:1.75; color:var(--ed-muted); }

@media (max-width: 900px){
  h1{ font-size:38px; }
  h2{ font-size:30px; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:var(--ed-radius-md);
  font-weight:700;
  border:1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--ed-accent);
  color:#fff;
  box-shadow: var(--ed-shadow-sm);
}
.btn-primary:hover{
  background:var(--ed-accent-dark);
  transform: translateY(-1px);
}

.btn-outline{
  background:transparent;
  border-color: rgba(37, 99, 235, 0.35);
  color:var(--ed-accent);
}
.btn-outline:hover{
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

/* Cards */
.card{
  background:var(--ed-surface);
  border:1px solid var(--ed-border);
  border-radius:var(--ed-radius-lg);
  box-shadow: var(--ed-shadow-sm);
}

/* Utility */
.bg-soft{ background:var(--ed-soft); }

/* Forms (premium baseline) */
input, textarea, select{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--ed-border);
  background:#fff;
  font-size:16px;
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
label{ font-weight:700; color:var(--ed-ink); display:block; margin:0 0 8px; }

/* Header */
.ed-header{
  position:sticky;
  top:0;
  z-index:999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(229,231,235,.8);
}
.ed-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.ed-brand{ display:flex; align-items:center; gap:12px; line-height:1; }
.ed-brand-mark{ display:flex; flex-direction:column; gap:2px; }
.ed-brand-name{ font-weight:900; letter-spacing:-0.02em; color:var(--ed-ink); }
.ed-brand-sub{ font-size:12px; color:var(--ed-muted); font-weight:700; }

.ed-nav{ display:flex; gap:18px; align-items:center; }
.ed-nav a{
  font-weight:700;
  color:rgba(15,23,42,.85);
  padding:10px 10px;
  border-radius:12px;
}
.ed-nav a:hover{ background:rgba(15,23,42,.04); }

@media (max-width: 900px){
  .ed-nav{ display:none; }
}

/* Footer */
.ed-footer{
  background: var(--ed-ink);
  color:#fff;
  padding:60px 0;
}
.ed-footer p{ color: rgba(255,255,255,.75); margin:10px 0 0; font-size:15px; }
.ed-footer a{ color:#fff; font-weight:700; }
