/*
Theme Name: Bag Reminder Landing
Theme URI: https://example.com/
Author: You
Description: A lightweight landing theme for Bag Reminder (Home, Signup, Thank You).
Version: 1.0.0
License: GPLv2 or later
Text Domain: bag-reminder
*/

/* ---------- Design tokens ---------- */
:root{
  --bg: #07090b;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 40px rgba(0,0,0,0.55);
  --accent: #66d36e;
  --accent2: #41b85a;
  --radius: 22px;
  --radius2: 16px;
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(900px 500px at 30% 0%, rgba(102,211,110,0.18), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(56,132,255,0.12), transparent 60%),
              var(--bg);
}

a{ color: inherit; }
img{ max-width: 100%; height: auto; }

.page{ min-height: 100vh; }

/* ---------- Top bar ---------- */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 22px 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 260px;
  text-decoration: none;
}
.brandLogo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 6px;
}
.brandName{
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brandTag{
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.navLink{
  text-decoration:none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.navLink:hover{ color: var(--text); }
/* WordPress menu */
.navList{ list-style:none; margin:0; padding:0; display:flex; gap:14px; align-items:center; }
.navList li{ margin:0; padding:0; }
.navList a{ text-decoration:none; color: var(--muted); font-weight:600; font-size:14px; }
.navList a:hover{ color: var(--text); }

/* Custom logo output */
.brandLogoWrap .custom-logo-link{ display:inline-flex; align-items:center; }
.brandLogoWrap img{ width:44px; height:44px; object-fit:contain; border-radius:12px; background: rgba(255,255,255,0.06); border:1px solid var(--border); padding:6px; }


.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 44px;
}

/* ---------- Hero ---------- */
.hero{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:center;
  margin-top: 18px;
}

.heroCopy{ padding: 10px 0; }

.headline{
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  margin: 0 0 14px;
  font-weight: 900;
}
.accent{ color: var(--accent); }

.subhead{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
}

.badges{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.storeBadge{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
  min-width: 165px;
}
.badgeSmall{
  font-size: 11px;
  color: var(--muted2);
}
.badgeBig{
  font-size: 18px;
  font-weight: 800;
}

.featurePills{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.heroArt{
  display:flex;
  justify-content:center;
  align-items:center;
}
.heroCard{
  width: min(420px, 100%);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
}
.heroImage{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 18px;
}

/* ---------- CTA ---------- */
.cta{
  margin-top: 22px;
  display:flex;
  justify-content:center;
}
.ctaCard{
  width: 100%;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}
.ctaTitle{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
}
.ctaText{
  margin: 0 0 16px;
  color: var(--muted);
}
.ctaForm{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.input{
  flex: 1 1 260px;
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  outline: none;
}
.input::placeholder{ color: rgba(255,255,255,0.45); }
.input:focus{
  border-color: rgba(102,211,110,0.45);
  box-shadow: 0 0 0 4px rgba(102,211,110,0.14);
}

.btn{
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor:pointer;
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btnPrimary{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-color: rgba(0,0,0,0.35);
  color: #0b120c;
}
.btnGhost{
  background: rgba(255,255,255,0.06);
}

.btnFull{ width: 100%; }

.finePrint{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted2);
}

/* ---------- Footer ---------- */
.footer{
  margin-top: 28px;
  padding: 18px 2px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  color: var(--muted2);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footerLinks{ display:flex; gap: 12px; }
.footerLink{ text-decoration:none; color: var(--muted2); }
.footerLink:hover{ color: var(--text); }

/* ---------- Signup layout ---------- */
.panel{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: start;
}
.panelCard{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}
.panelTitle{
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 950;
}
.panelText{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.form{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.label{
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}
.formHint{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted2);
}
.formHint a{
  color: var(--text);
  font-weight: 900;
  text-decoration:none;
}

.panelSide{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.sideCard{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  gap: 14px;
  align-items:center;
}
.sideImage{
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--border);
  padding: 8px;
}
.sideTitle{
  font-weight: 950;
  margin-bottom: 6px;
}
.sideList{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Thank you ---------- */
.thanks{
  margin-top: 10px;
  display:flex;
  justify-content:center;
}
.thanksCard{
  width: 100%;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.thanksImage{
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 26px;
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--border);
  padding: 10px;
  margin-bottom: 12px;
}
.thanksTitle{
  margin: 0 0 8px;
  font-size: 38px;
  font-weight: 950;
}
.thanksText{
  margin: 0 0 14px;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.6;
}
.thanksActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
  margin-top: 16px;
}

/* ---------- WordPress content defaults ---------- */
.entry-content{ color: var(--text); }
.entry-content p{ color: var(--muted); line-height: 1.6; }
.entry-content h1, .entry-content h2, .entry-content h3{ color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .panel{ grid-template-columns: 1fr; }
  .navLink{ display:none; }
}
/* ===== Ad Sales Page ===== */
.salesHero{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
  margin-top: 12px;
}

.salesCopy{
  padding-top: 6px;
}

.salesStats{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}

.stat{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 150px;
}
.statNum{
  font-weight: 950;
  font-size: 20px;
}
.statLabel{
  color: var(--muted2);
  font-size: 12px;
  margin-top: 2px;
}

.salesActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Ad slot base */
.adSlot{
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.adLabel{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 10px;
}

.adTitle{
  font-size: 28px;
  font-weight: 950;
  color: var(--accent);
  margin-bottom: 10px;
}

.adBody{
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.adMeta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.adPill{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.80);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.28);
  padding: 8px 10px;
  border-radius: 999px;
}

.adList{
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.inventory{
  margin-top: 22px;
}

.sectionTitle{
  font-size: 26px;
  font-weight: 950;
  margin: 0 0 8px;
}

.sectionSub{
  margin: 0 0 14px;
  color: var(--muted);
}

.inventoryGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.adStrip{
  margin-top: 18px;
}

@media (max-width: 900px){
  .salesHero{ grid-template-columns: 1fr; }
  .inventoryGrid{ grid-template-columns: 1fr; }
}
/* ===== Mock Layout Homepage ===== */
.mockGrid{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
  margin-top: 8px;
}

/* Top centered "Buy this space" */
.adTopLabel{
  grid-column: 1 / -1;
  display:flex;
  justify-content:center;
  margin: 8px 0 2px;
}
.adTopPill{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(102,211,110,0.14);
  border: 1px solid rgba(102,211,110,0.25);
  color: var(--accent);
  font-weight: 950;
}

/* Left column */
.mockLeft{
  padding-top: 6px;
}

/* Left big ad panel */
.adPanelLarge{
  margin-top: 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.22);
  box-shadow: var(--shadow);
  padding: 18px;
  min-height: 260px;
}

.adPanelHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.adPanelTag{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(102,211,110,0.14);
  border: 1px solid rgba(102,211,110,0.25);
  color: var(--accent);
  font-weight: 950;
  white-space: nowrap;
}

.adPanelTitle{
  color: rgba(255,255,255,0.80);
  font-weight: 900;
}

.adListMock{
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
  color: rgba(102,211,110,0.90);
  font-weight: 850;
  line-height: 1.8;
  font-size: 20px;
}

/* Right column phone card */
.mockRight{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}

.phoneCard{
  width: min(520px, 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.phoneHeader{
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}

.phoneTitle{
  color: var(--accent);
  font-weight: 950;
  font-size: 22px;
}

/* Sponsored overlay inside the phone mock */
.phoneSponsor{
  position: absolute;
  top: 78px;
  left: 18px;
  right: 18px;
  display:flex;
  justify-content:center;
  pointer-events:none;
}

.phoneSponsorInner{
  width: 88%;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.25);
  padding: 16px 10px;
  text-align:center;
}

.phoneSponsorTag{
  font-size: 22px;
  font-weight: 950;
  color: var(--accent);
}

.phoneImage{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 18px;
}

/* Bottom "Buy this space" label */
.adBottomLabel{
  color: var(--accent);
  font-weight: 950;
  font-size: 22px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px){
  .mockGrid{ grid-template-columns: 1fr; }
  .phoneSponsor{ top: 70px; }
}
