/*
Theme Name: The Lure Shop - Holding
Theme URI: https://example.com/
Author: Sean
Description: Lightweight holding page theme for The Lure Shop.
Version: 1.0.0
Text Domain: the-lure-shop-holding
*/

:root{
  --bg:#0b0f12;
  --panel:#0f171d;
  --text:#e8eef2;
  --muted:#a7b5bf;
  --accent:#7dd3fc;
  --accent2:#34d399;
  --border:rgba(255,255,255,.10);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1040px;
}

.logo-wrap{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.site-logo{
  max-width:100%;
  max-height:100%;
  display:block;
}


*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(125,211,252,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(52,211,153,.12), transparent 55%),
    radial-gradient(1000px 700px at 50% 90%, rgba(125,211,252,.08), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:var(--max); margin:0 auto; padding:28px 18px}
.site-header{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:12px 0 22px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.logo{
  width:42px; height:42px; border-radius:12px;
  background:linear-gradient(135deg, rgba(125,211,252,.9), rgba(52,211,153,.85));
  box-shadow: var(--shadow);
}
.brand h1{font-size:18px; margin:0; letter-spacing:.2px}
.brand p{margin:0; font-size:12.5px; color:var(--muted)}

.header-links{display:flex; gap:14px; flex-wrap:wrap}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--border);
  border-radius:999px; color:var(--muted); background:rgba(255,255,255,.03);
}

.hero{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}

.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  border:1px solid var(--border);
  border-radius:999px;
  padding:7px 12px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
  font-size:13px;
}

.hero h2{
  margin:14px 0 10px 0;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-.6px;
}
@media (max-width: 520px){
  .hero h2{font-size:32px}
}

.lead{color:var(--muted); font-size:16px; margin:0 0 18px 0}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}
.btn.primary{
  background:linear-gradient(135deg, rgba(125,211,252,.25), rgba(52,211,153,.18));
  border-color:rgba(125,211,252,.28);
}
.btn:hover{filter:brightness(1.05); text-decoration:none}

.form{
  margin-top:10px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.input{
  flex:1 1 220px;
  min-width:220px;
  background:rgba(0,0,0,.25);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  color:var(--text);
}
.small{font-size:12.5px; color:var(--muted); margin-top:10px}

.grid-3{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){
  .grid-3{grid-template-columns:1fr}
}
.tile h3{margin:0 0 6px 0; font-size:16px}
.tile p{margin:0; color:var(--muted); font-size:14px}

.site-footer{
  margin-top:26px;
  padding:18px 0 10px 0;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
}

.social{display:flex; gap:12px; flex-wrap:wrap}
.social a{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.02);
  color:var(--muted);
}
.social a:hover{color:var(--text); text-decoration:none}
