﻿:root {
    --brand: #ff5a1f; /* warm orange */
    --brand-dark: #e34b14;
    --ink: #0f172a;
}

.text-brand {
    color: var(--brand) !important;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-focus-shadow-rgb: 255, 90, 31;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand);
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.15);
}

/* HERO */
.hero {
    border-radius: 20px;
    background: radial-gradient(1200px 700px at 10% 20%, rgba(255,90,31,0.35), transparent 60%), radial-gradient(900px 600px at 90% 30%, rgba(37,99,235,0.25), transparent 55%), linear-gradient(135deg, #0b1220, #111b2e);
}

.search-card {
    border-radius: 18px;
}

.chip-row {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scroll-snap-type: x mandatory;
}

    .chip-row::-webkit-scrollbar {
        height: 8px;
    }

.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #334155;
    text-decoration: none;
    font-size: .9rem;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

    .chip:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(2, 6, 23, 0.10);
        border-color: rgba(15, 23, 42, 0.18);
    }

.chip-lg {
    padding: .65rem .95rem;
    font-weight: 600;
}

.event-card {
    border-radius: 18px;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .event-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(2, 6, 23, 0.12) !important;
    }

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 90, 31, 0.12);
    color: var(--brand-dark);
    border: 1px solid rgba(255, 90, 31, 0.18);
    font-size: 1.1rem;
}

/* Organizer CTA */
.cta {
    position: relative;
    background: linear-gradient(135deg, #111827, #0b1220);
    border: 1px solid rgba(255,255,255,0.10);
}

.cta-glow {
    position: absolute;
    inset: -120px -120px auto auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,90,31,0.45), transparent 60%);
    filter: blur(2px);
    pointer-events: none;
}

