/*
Theme Name: Pastrana Direct
Theme URI: https://pastranadirect.com
Author: Pastrana Direct LLC
Author URI: https://pastranadirect.com
Description: Holographic one-page WordPress theme for Pastrana Direct LLC — dark navy, glass cards, aurora gradients, and Zelle Direct payment integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pastrana-direct
Tags: one-page, e-commerce, dark, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* ---------- Design Tokens ---------- */
:root {
  --pd-bg: #0a0f1f;
  --pd-bg-2: #0f1730;
  --pd-fg: #e8ecff;
  --pd-muted: #9aa3c7;
  --pd-glass-bg: rgba(255, 255, 255, 0.06);
  --pd-glass-border: rgba(255, 255, 255, 0.12);
  --pd-holo: linear-gradient(135deg, #7c5cff 0%, #22d3ee 50%, #f0abfc 100%);
  --pd-shadow-glow: 0 20px 60px -20px rgba(124, 92, 255, 0.5);
  --pd-radius: 18px;
  --pd-font-display: 'Space Grotesk', system-ui, sans-serif;
  --pd-font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Base ---------- */
body {
  font-family: var(--pd-font-body);
  color: var(--pd-fg);
  background: var(--pd-bg);
  background-image:
    radial-gradient(60% 50% at 20% 10%, rgba(124, 92, 255, 0.25), transparent 60%),
    radial-gradient(50% 40% at 90% 20%, rgba(34, 211, 238, 0.20), transparent 60%),
    radial-gradient(40% 40% at 50% 100%, rgba(240, 171, 252, 0.18), transparent 60%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--pd-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
p { color: var(--pd-muted); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 15, 31, 0.7);
  border-bottom: 1px solid var(--pd-glass-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-branding a { font-family: var(--pd-font-display); font-weight: 700; font-size: 1.25rem; }
.main-nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.main-nav a { color: var(--pd-muted); font-size: 0.95rem; transition: color .2s; }
.main-nav a:hover { color: var(--pd-fg); }

/* ---------- Holographic helpers ---------- */
.holo-text {
  background: var(--pd-holo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass {
  background: var(--pd-glass-bg);
  border: 1px solid var(--pd-glass-border);
  border-radius: var(--pd-radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--pd-shadow-glow);
}
.holo-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--pd-holo);
  color: #0a0f1f;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--pd-font-display);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--pd-holo);
  color: #0a0f1f;
  box-shadow: var(--pd-shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--pd-fg);
  border: 1px solid var(--pd-glass-border);
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }

/* Hero */
.hero { padding-top: 120px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-card { padding: 40px; }
.hero img { border-radius: var(--pd-radius); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* Zelle section */
.zelle-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
}
.zelle-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #6d1ed4, #a855f7);
  font-family: var(--pd-font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 720px) {
  .zelle-card { grid-template-columns: 1fr; text-align: center; }
  .zelle-icon { margin: 0 auto; }
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img { aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; }
.product-card h3 { font-size: 1rem; margin: 0; }
.product-card .price { color: var(--pd-fg); font-weight: 700; font-family: var(--pd-font-display); }

/* Concierge */
.concierge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.concierge-grid .glass { padding: 28px; text-align: center; }
@media (max-width: 720px) { .concierge-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
  border-top: 1px solid var(--pd-glass-border);
  padding: 40px 0;
  text-align: center;
  color: var(--pd-muted);
  font-size: 0.9rem;
}
