/* Theme CSS - standalone (no Tailwind). Uses the same semantic tokens (HSL) */

:root {
  --background: 120 100% 0%;
  --foreground: 46 8% 94%;
  --primary: 256 100% 59%;
  --primary-foreground: 46 8% 94%;
  --secondary: 208 22% 25%;
  --secondary-foreground: 46 8% 94%;
  --muted: 248 33% 15%;
  --muted-foreground: 235 6% 66%;
  --border: 235 6% 66%;
  --ring: 256 100% 59%;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Layout */
.content-grid { max-width: 112rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .content-grid { padding: 0 2rem; } }
@media (min-width: 1024px) { .content-grid { padding: 0 4rem; } }

.section-padding { padding: 4rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 4rem; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: hsl(var(--background)/0.6); backdrop-filter: blur(8px); border-bottom: 1px solid hsl(var(--muted)); }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.site-logo img { height: 3rem; width: auto; display: block; }

.primary-menu, .footer-menu { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; }
.primary-menu a { position: relative; color: hsl(var(--foreground) / 0.85); transition: color .2s ease; }
.primary-menu a:hover { color: hsl(var(--foreground)); }
.primary-menu a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0; background: hsl(var(--primary)); transition: width .3s; }
.primary-menu a:hover::after { width: 100%; }

/* Buttons */
.button, .btn, .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem 2rem; border-radius: 2px; border: 0; cursor: pointer; text-decoration: none; transition: background .3s ease, transform .05s ease; font-weight: 600; font-size: 1.125rem; letter-spacing: .02em; }
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-primary:hover { background: hsl(var(--primary) / 0.9); }
.btn-primary:active { transform: translateY(1px); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--background) / 0.95) 50%, hsl(var(--background) / 0.9)); z-index: 1; }
.hero-inner { position: relative; z-index: 2; text-align: center; }

.text-hero { font-size: clamp(2.5rem, 8vw, 6rem); line-height: .9; font-weight: 300; letter-spacing: -0.02em; color: hsl(var(--foreground)); }
.text-manifesto { font-size: clamp(1.25rem, 3vw, 2rem); line-height: 1.3; font-weight: 400; letter-spacing: -0.01em; color: hsl(var(--muted-foreground)); }

.scroll-indicator { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); width: 1px; height: 4rem; background: linear-gradient(to bottom, transparent, hsl(var(--muted-foreground)), transparent); z-index: 2; }

/* Footer */
.site-footer { border-top: 1px solid hsl(var(--muted)); padding: 3rem 0; margin-top: 4rem; }
.site-footer-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; text-align: center; }
.footer-menu a { color: hsl(var(--foreground) / 0.85); }
.footer-menu a:hover { color: hsl(var(--foreground)); }

/* Content */
.prose { line-height: 1.7; font-size: 1.0625rem; color: hsl(var(--foreground)); }
.prose h1, .prose h2, .prose h3 { color: hsl(var(--foreground)); }

/* Forms (Contact Form 7 baseline) */
.wpcf7 form { display: grid; gap: 1rem; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 select, .wpcf7 textarea { width: 100%; padding: .75rem 1rem; border: 1px solid hsl(var(--border)); background: hsl(var(--muted)); color: hsl(var(--foreground)); border-radius: 4px; }
.wpcf7 input[type="submit"], .wpcf7 button { @apply unset; } /* reset */
.wpcf7 input[type="submit"], .wpcf7 .btn-submit { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border: 0; padding: .875rem 1.25rem; border-radius: 4px; cursor: pointer; }
.wpcf7 input[type="submit"]:hover, .wpcf7 .btn-submit:hover { background: hsl(var(--primary) / 0.9); }
