/*
Theme Name: Veld Drift Coming Soon
Theme URI: https://velddrift-fishing.com
Author: Veld Drift Fishing
Description: Premium WordPress coming soon theme for Veld Drift Fishing.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: veld-drift-coming-soon
*/

:root {
  --vd-bg: #071011;
  --vd-panel: rgba(6, 13, 14, 0.76);
  --vd-cream: #f4efe6;
  --vd-muted: #c3bbae;
  --vd-gold: #b58a4a;
  --vd-copper: #c46f34;
  --vd-line: rgba(181, 138, 74, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--vd-cream);
  background: var(--vd-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
button, input { font: inherit; }

.vd-page {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(3, 8, 9, .35) 0%, rgba(3, 8, 9, .58) 54%, rgba(3, 8, 9, .96) 100%),
    url('assets/images/coming-soon-bg.png') center 20% / cover no-repeat;
}
.vd-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 48% 24%, transparent 0 24%, rgba(3, 8, 9, .12) 50%, rgba(3, 8, 9, .8) 100%);
}

.vd-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.vd-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.vd-brand { display: inline-flex; align-items: center; text-decoration: none; }
.vd-brand img { display: block; width: min(360px, 48vw); height: auto; max-height: 100px; object-fit: contain; }
.vd-brand-fallback { line-height: 1; }
.vd-brand-fallback strong { display: block; font-family: Georgia, serif; font-size: clamp(1.65rem, 4vw, 3.2rem); letter-spacing: .06em; text-transform: uppercase; }
.vd-brand-fallback span { display: block; margin-top: 8px; color: var(--vd-gold); letter-spacing: .38em; text-transform: uppercase; font-size: .72rem; }
.vd-mini-link { color: var(--vd-muted); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.vd-mini-link:hover, .vd-mini-link:focus { color: #fff; }

.vd-main {
  min-height: calc(100svh - 149px);
  display: grid;
  align-items: end;
  padding: clamp(60px, 9vw, 130px) 0 38px;
}
.vd-content { max-width: 760px; padding: 32px 0; }
.vd-kicker { margin: 0 0 14px; color: var(--vd-copper); font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
h1 { margin: 0; max-width: 12ch; font-family: "Arial Narrow", Impact, sans-serif; font-size: clamp(4rem, 11vw, 9.5rem); line-height: .82; letter-spacing: .01em; text-transform: uppercase; }
.vd-tagline { margin: 24px 0 0; font-size: clamp(1.15rem, 2.4vw, 1.75rem); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.vd-copy { max-width: 610px; margin: 18px 0 0; color: #e0d9cf; font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.7; }

.vd-form-wrap { margin-top: 34px; max-width: 690px; }
.vd-form-label { display: block; margin-bottom: 10px; color: var(--vd-gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.vd-form { display: grid; grid-template-columns: 1fr auto; background: rgba(3, 9, 10, .82); border: 1px solid var(--vd-line); }
.vd-form input[type="email"] { min-width: 0; border: 0; outline: 0; padding: 18px 20px; color: #fff; background: transparent; }
.vd-form input::placeholder { color: #a9a39a; }
.vd-form button { border: 0; padding: 18px 28px; color: #0a0d0d; background: linear-gradient(135deg, #d0ad6b, #a97a3f); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.vd-form button:hover, .vd-form button:focus { filter: brightness(1.08); }
.vd-message { margin: 12px 0 0; color: #e6d5b2; }

.vd-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 44px; border-top: 1px solid var(--vd-line); border-bottom: 1px solid var(--vd-line); background: var(--vd-panel); backdrop-filter: blur(10px); }
.vd-benefit { padding: 20px; border-right: 1px solid var(--vd-line); }
.vd-benefit:last-child { border-right: 0; }
.vd-benefit strong { display: block; color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.vd-benefit span { display: block; margin-top: 6px; color: var(--vd-muted); font-size: .9rem; }

.vd-footer { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 24px 0; color: #9e988f; font-size: .86rem; border-top: 1px solid rgba(255,255,255,.1); }
.vd-socials { display: flex; gap: 18px; }
.vd-socials a { text-decoration: none; color: #d7c6a7; }
.vd-socials a:hover, .vd-socials a:focus { color: #fff; }

@media (max-width: 800px) {
  .vd-page { background-position: 62% top; }
  .vd-topbar { align-items: flex-start; }
  .vd-mini-link { display: none; }
  .vd-main { align-items: end; padding-top: 150px; }
  .vd-content { padding-top: 110px; }
  .vd-form { grid-template-columns: 1fr; }
  .vd-form button { width: 100%; }
  .vd-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vd-benefit:nth-child(2) { border-right: 0; }
  .vd-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--vd-line); }
  .vd-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .vd-shell { width: min(100% - 24px, 1180px); }
  .vd-main { padding-top: 120px; }
  h1 { font-size: clamp(3.6rem, 20vw, 5.3rem); }
  .vd-benefits { grid-template-columns: 1fr; }
  .vd-benefit, .vd-benefit:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--vd-line); }
  .vd-benefit:last-child { border-bottom: 0; }
}
