/*
Theme Name: DTLA Dog Walking Club
Theme URI: https://fitpalsla.com
Author: FitPals LA
Author URI: https://fitpalsla.com
Description: Coming soon landing page for DTLA's favorite dog community. Pack walks, training, socials & events. Train · Socialize · Connect.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dtla-dog-walking-club
Tags: coming-soon, landing-page, one-page, dark, custom-colors
*/

:root {
  --bg: #0B0D17;
  --bg-2: #13151F;
  --cream: #F5E6D3;
  --orange: #FF5E1A;
  --yellow: #FFD60A;
  --coral: #FF8A5C;
  --ink: #0B0D17;
  --line: rgba(245, 230, 211, 0.15);
}

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

html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* grainy noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.90 0 0 0 0 0.83 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* sunset gradient orb */
.orb {
  position: fixed;
  top: -20vw;
  right: -20vw;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--orange) 0%, var(--coral) 30%, transparent 65%);
  filter: blur(40px);
  opacity: 0.45;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8vw, 6vw) scale(1.12); }
}

/* ====== LAYOUT ====== */
.wrap {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 32px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ====== NAV ====== */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.nav-meta {
  display: flex;
  gap: 28px;
  opacity: 0.7;
}

.nav-meta span::before {
  content: "◉";
  margin-right: 6px;
  color: var(--yellow);
}

/* ====== HERO ====== */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  padding: 48px 0 24px;
  position: relative;
}

.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 36px;
  width: fit-content;
  background: rgba(245, 230, 211, 0.03);
}

.tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 10px;
  transform: translateY(-1px);
  box-shadow: 0 0 8px var(--yellow);
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 14vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
}

h1 .stack {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

h1 .stack:nth-child(1) { animation-delay: 0.1s; }
h1 .stack:nth-child(2) { animation-delay: 0.25s; }
h1 .stack:nth-child(3) { animation-delay: 0.4s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
  font-size: 0.85em;
}

h1 .soon {
  color: var(--bg);
  -webkit-text-stroke: 2px var(--cream);
}

.tagline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.8vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

.tagline em {
  color: var(--orange);
  font-style: normal;
  font-family: 'Fraunces', serif;
  font-size: 1.6em;
  font-weight: 300;
  line-height: 0.5;
}

/* ====== BOTTOM GRID ====== */
.grid-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.cell h3 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}

.cell p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  color: var(--cream);
}

/* ====== COUNTDOWN ====== */
.countdown {
  display: flex;
  gap: 12px;
}

.cd-unit {
  flex: 1;
  text-align: left;
}

.cd-num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.cd-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  opacity: 0.5;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ====== EMAIL FORM ====== */
form.signup-form {
  display: flex;
  border: 1px solid var(--cream);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  align-items: center;
  background: rgba(245, 230, 211, 0.04);
  transition: all 0.3s ease;
}

form.signup-form:focus-within {
  border-color: var(--orange);
  background: rgba(255, 94, 26, 0.08);
}

form.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  padding: 8px 0;
}

form.signup-form input::placeholder {
  color: rgba(245, 230, 211, 0.4);
  letter-spacing: 0.08em;
}

form.signup-form button {
  background: var(--orange);
  color: var(--ink);
  border: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

form.signup-form button:hover {
  background: var(--yellow);
  transform: translateX(-2px);
}

.form-note {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 10px;
}

.success-msg {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-msg.show { opacity: 1; }

/* ====== MARQUEE ====== */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
  margin-top: 48px;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-track span {
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--orange);
  font-size: 24px;
}

.marquee-track .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== SKYLINE ====== */
.skyline {
  position: absolute;
  bottom: 180px;
  right: 0;
  width: 45%;
  max-width: 580px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ====== PAW TRAIL ====== */
.paws {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.paw {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  color: var(--orange);
  opacity: 0;
  animation: walk 16s linear infinite;
}

@keyframes walk {
  0%   { left: -5%; opacity: 0; transform: rotate(-10deg); }
  5%   { opacity: 0.7; }
  95%  { opacity: 0.7; }
  100% { left: 105%; opacity: 0; transform: rotate(-10deg); }
}

.paw:nth-child(1) { animation-delay: 0s;   bottom: 18px; }
.paw:nth-child(2) { animation-delay: 1s;   bottom: 30px; }
.paw:nth-child(3) { animation-delay: 2s;   bottom: 18px; }
.paw:nth-child(4) { animation-delay: 3s;   bottom: 30px; }
.paw:nth-child(5) { animation-delay: 8s;   bottom: 18px; color: var(--yellow); }
.paw:nth-child(6) { animation-delay: 9s;   bottom: 30px; color: var(--yellow); }

/* ====== FOOTER ====== */
.site-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.socials a:hover { color: var(--orange); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .wrap { padding: 20px; }
  .nav-meta { display: none; }
  .grid-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .skyline { display: none; }
  .marquee-track { font-size: 24px; gap: 32px; }
  .cd-num { font-size: 42px; }
  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
