/*
Theme Name: HQ Webhosting
Theme URI: https://hq-webhosting.nl
Author: HQ Webhosting
Author URI: https://hq-webhosting.nl
Description: Een strak, modern one-page coming soon thema voor HQ Webhosting.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
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: hq-webhosting
Tags: one-page, coming-soon, hosting, modern
*/

:root {
  --hq-bg: #0a0e1a;
  --hq-bg-2: #111726;
  --hq-text: #f5f7fa;
  --hq-muted: #8a93a6;
  --hq-accent: #00d4ff;
  --hq-accent-2: #7c3aed;
  --hq-border: rgba(255, 255, 255, 0.08);
  --hq-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--hq-bg);
  color: var(--hq-text);
  font-family: var(--hq-font);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 212, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hq-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
}

.hq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hq-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hq-logo span { color: var(--hq-accent); }

.hq-badge {
  font-size: 0.8rem;
  color: var(--hq-muted);
  border: 1px solid var(--hq-border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.hq-badge::before {
  content: '●';
  color: var(--hq-accent);
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

.hq-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  margin: 4rem 0;
}

.hq-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 2rem;
}
.hq-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--hq-accent), var(--hq-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hq-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--hq-muted);
  max-width: 680px;
  line-height: 1.7;
}

.hq-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--hq-border);
  font-size: 0.85rem;
  color: var(--hq-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.hq-footer a { color: var(--hq-muted); text-decoration: none; margin-left: 1.25rem; }
.hq-footer a:hover { color: var(--hq-accent); }
