/* ═══════════════════════════════════════════════════════
   NowOnly - Public Website Styles
   ═══════════════════════════════════════════════════════ */

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --dark: #1a1a2e;
    --gray: #6c757d;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

/* ── Brand Colors ─────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom   { background-color: var(--primary) !important; }

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.badge.bg-primary-custom {
    background-color: var(--primary) !important;
}

/* ── Hero Section ─────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    color: #fff;
    padding: 5rem 0 4rem;
}

/* ── How It Works Steps ───────────────────────────────── */
.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff5f0;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ── Promotion Cards ──────────────────────────────────── */
.promo-card {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ── LIVE Badge ───────────────────────────────────────── */
.badge-live {
    background-color: #dc3545;
    color: #fff;
    animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
    0%   { opacity: 1; }
    50%  { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ── Urgency Bar ──────────────────────────────────────── */
.urgency-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}
.urgency-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #dc3545);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar-brand {
    font-size: 1.5rem;
}

/* ── Cards ────────────────────────────────────────────── */
.card {
    border-radius: 12px;
}

/* ── Footer ───────────────────────────────────────────── */
footer a:hover {
    color: var(--primary) !important;
}
