/*
Theme Name: Valucreas Group - Under Construction
Theme URI: https://www.valucreas.co.za
Author: Valucreas Group
Author URI: https://www.valucreas.co.za
Description: A premium, minimal under construction theme for Valucreas Group.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valucreas
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Sora:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg: #0a0b0d;
  --bg-card: #111214;
  --fg: #f0ede8;
  --fg-muted: #6b6b6b;
  --fg-secondary: #c2bfb8;
  --gold: #c9a84c;
  --gold-dim: rgba(201,168,76,0.5);
  --gold-glow: rgba(201,168,76,0.07);
  --border: #1f2023;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: radial-gradient(ellipse 80% 50% at 50% 20%, #16171a 0%, #0a0b0d 60%, #08090b 100%);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
}

/* Subtle grid */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.vc-top-line {
  height: 1px;
  background: var(--gold-dim);
  animation: lineGrow 2.2s cubic-bezier(0.16,1,0.3,1) 0.9s both;
}

.vc-main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
}

/* Radial glow */
.vc-glow {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: glowBreathe 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Pulse dot */
.vc-dot-wrap {
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-dot-outer {
  position: absolute;
  height: 14px; width: 14px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  animation: pulseDot 3s ease-in-out infinite;
}
.vc-dot-inner {
  height: 6px; width: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Hero */
.vc-hero {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.08;
  max-width: 720px;
  letter-spacing: -0.03em;
}
.vc-hero span { color: var(--gold); }

.vc-subhead {
  margin-top: 1.5rem;
  color: var(--fg-muted);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Divider */
.vc-divider {
  width: 40px; height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 3.5rem 0;
}

/* Overview */
.vc-overview {
  max-width: 560px;
  text-align: center;
}
.vc-overview p {
  color: var(--fg-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.vc-overview p:last-child { margin-bottom: 0; }

/* Status */
.vc-status {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.vc-status-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vc-status-line {
  height: 1px; width: 40px;
  background: var(--border);
}
.vc-status-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.vc-progress {
  width: 176px; height: 3px;
  border-radius: 99px;
  background: var(--bg-card);
  overflow: hidden;
}
.vc-progress-bar {
  height: 100%; width: 75%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-dim), rgba(201,168,76,0.8));
  animation: lineGrow 2.2s cubic-bezier(0.16,1,0.3,1) 0.9s both;
}

/* Contact */
.vc-contact {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.vc-contact-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.vc-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}
.vc-contact-links a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--fg-secondary);
  font-size: 0.875rem;
  transition: color 0.5s;
}
.vc-contact-links a:hover { color: var(--gold); }
.vc-contact-links a svg {
  width: 16px; height: 16px;
  color: var(--gold-dim);
  transition: color 0.5s;
}
.vc-contact-links a:hover svg { color: var(--gold); }

/* Footer */
.vc-footer {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
  text-align: center;
}
.vc-footer p {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(2); }
}
@keyframes lineGrow {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes glowBreathe {
  0%,100% { opacity: 0.18; }
  50% { opacity: 0.28; }
}

.fade-up { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both; }
.fade-up-d1 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.12s both; }
.fade-up-d2 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.fade-up-d3 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.fade-up-d4 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.58s both; }
.fade-up-d5 { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.72s both; }
