/*
Theme Name: Steward of the King
Theme URI: https://stewardoftheking.com
Author: Steward of the King LLC
Author URI: https://stewardoftheking.com
Description: A clean, elegant one-page website for Steward of the King LLC. We create digital apps and products.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: steward-of-the-king
Tags: one-page, business, minimal, elegant, dark
*/

/* Custom styles for the Steward of the King one-page theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&amp;family=Playfair+Display:wght@700&amp;display=swap');

:root {
  --gold: #C5A46E;
}

body {
  font-family: 'Inter', system_ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
}

.heading-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #C5A46E;
  transition: width 0.2s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.section-header {
  position: relative;
  display: inline-block;
}

.section-header:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, #C5A46E, transparent);
}

.service-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0.0, 0.2, 1),
              border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-color: #C5A46E;
}

.gold-accent {
  color: #C5A46E;
}

.elegant-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #E5E5E5, transparent);
}

.hero-bg {
  background: radial-gradient(circle at 50% 30%, #1C1917 0%, #0F0E0D 100%);
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

/* WordPress specific resets for clean one-pager */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}