
/*
Theme Name: BottleUp Coming Soon (Customizable + CSV Only)
Theme URI: https://bottleup.app/
Author: BottleUp
Author URI: https://bottleup.app/
Description: Coming Soon theme with Customizer controls and built-in CSV-based waitlist capture via admin-ajax.php (no third-party services).
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bottleup-coming-soon
Tags: coming-soon, landing, responsive, custom-logo, custom-background, customizer
*/

:root {
  --bg: #0c0c12;
  --text: #f5f5fa;
  --muted: #b7b7c9;
  --accent: #9b5cff;
  --accent-2: #ff3b6b;
  --radius: 16px;
  --glow: 0 0 16px rgba(155,92,255,.6), 0 0 30px rgba(255,59,107,.4);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Heiti TC', 'Avenir', 'Helvetica', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* Full-page nightlife background that does not interfere with text */
.bg { position: fixed; inset: 0; z-index: -2; }
.bg::before { content: ""; position: absolute; inset: 0; background: var(--bg-image, url('https://images.unsplash.com/photo-1518609571773-39b7d303a86b?q=80&w=2000&auto=format&fit=crop')) center/cover no-repeat; filter: brightness(.6) contrast(1.05) saturate(1.1); }
.bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.65)); }

.wrap { display: grid; place-items: center; padding: 24px; min-height: 100vh; }

.card { text-align: center; max-width: 760px; width: 100%; padding: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; font-weight: 800; letter-spacing: .4px; }
.brand__logo { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: var(--glow); }
.brand__text { font-size: 18px; }

.title { font-size: clamp(56px, 12vw, 110px); line-height: .95; margin: 6px 0 10px; text-transform: uppercase; }
.sweep { font-size: clamp(18px, 2.8vw, 24px); margin: 8px 0 18px; max-width: 900px; color: #f4f4ff; font-weight: 700; }
.subhelp { font-size: 14px; color: var(--muted); margin-top: 8px; }

.actions { display: grid; gap: 12px; place-items: center; }

.btn { appearance: none; border: 0; cursor: pointer; font-weight: 800; letter-spacing: .2px; font-size: 18px; padding: 16px 24px; border-radius: 999px; transition: transform .08s ease, box-shadow .2s ease, background .2s ease; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: var(--glow); }
.btn-primary:hover { box-shadow: 0 0 20px rgba(155,92,255,.75), 0 0 40px rgba(255,59,107,.45); }

/* Modal */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.6); z-index: 10; padding: 20px; }
.modal__card { width: 100%; max-width: 640px; background: rgba(20,20,32,.78); border: 1px solid rgba(255,255,255,.12); border-radius: calc(var(--radius) + 4px); box-shadow: 0 10px 30px rgba(0,0,0,.45); padding: 24px; backdrop-filter: blur(6px); }
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.modal__title { font-size: 22px; margin: 0; }
.modal__close { background: transparent; border: 0; color: var(--muted); font-size: 22px; cursor: pointer; }

.form { display: grid; gap: 12px; margin-top: 8px; }
.input { width: 100%; padding: 14px 16px; border-radius: 12px; background: #0f0f18; color: var(--text); border: 1px solid rgba(255,255,255,.14); outline: none; font-size: 16px; }
.input:focus { border-color: rgba(155,92,255,.7); box-shadow: 0 0 0 4px rgba(155,92,255,.15); }
.submit { justify-self: start; }

.legal { margin-top: 8px; font-size: 12px; color: var(--muted); }
