/* xity.bar — Dark Mode Neon Nightlife */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Base */
body {
    background: #0A0A0A;
    color: #E8E8E8;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
}

/* Section Headings */
.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #E8E8E8;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.section-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #FF6B35;
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

/* ==========================================
   HERO ZONE (Entrance)
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: #0A0A0A;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.08), transparent 50%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(255, 51, 102, 0.04), transparent 60%);
    pointer-events: none;
}
.hero-inner {
    max-width: 560px;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 6rem;
    color: #FF6B35;
    text-shadow: 0 0 10px #FF6B35, 0 0 20px #FF6B35, 0 0 40px #FF6B35;
    animation: flicker 4s ease-in-out infinite;
    margin-bottom: 0.25rem;
    letter-spacing: 0.15em;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    88% { opacity: 1; }
    89% { opacity: 0.85; }
    90% { opacity: 1; }
    92% { opacity: 0.9; }
    93% { opacity: 1; }
    95% { opacity: 0.8; }
    96% { opacity: 1; }
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #FF6B35;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
    margin-bottom: 2rem;
}
.search-bar {
    margin-bottom: 1.25rem;
}
.search-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #161616;
    border: 1px solid #222222;
    color: #E8E8E8;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input::placeholder {
    color: #777777;
}
.search-input:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.15);
}
.quick-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.filter-pill {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    padding: 0.3rem 0.8rem;
    border: 1px solid #222222;
    border-radius: 999px;
    color: #777777;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
}
.filter-pill:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}
.filter-pill.active {
    border-color: #FF6B35;
    color: #FF6B35;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

/* ==========================================
   DISCOVERY: Venue Cards (Masonry)
   ========================================== */
.venues {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.venue-masonry {
    column-count: 2;
    column-gap: 1.25rem;
}
.venue-card {
    background: #161616;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    break-inside: avoid;
    border: 1px solid #222222;
    border-radius: 4px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.venue-card:hover {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}
.venue-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #E8E8E8;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 6px rgba(255, 107, 53, 0.15);
}
.venue-hood {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #777777;
    display: block;
    margin-bottom: 0.6rem;
}
.vibe-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}
.vibe {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    transition: box-shadow 0.2s ease;
}
.vibe.orange {
    border: 1px solid #FF6B35;
    color: #FF6B35;
}
.vibe.pink {
    border: 1px solid #FF3366;
    color: #FF3366;
}
.vibe.mint {
    border: 1px solid #00D4AA;
    color: #00D4AA;
}
.vibe:hover {
    box-shadow: 0 0 6px currentColor;
}
.venue-desc {
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}
.venue-rating {
    font-size: 0.85rem;
    color: #FF6B35;
}
.rating-num {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #777777;
    margin-left: 0.3rem;
}

/* ==========================================
   EXPLORE: Neighborhood Heat Map
   ========================================== */
.neighborhoods {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}
.heatmap-container {
    position: relative;
}
.heatmap-svg {
    width: 100%;
    height: auto;
    display: block;
}
.hood-zone {
    fill: #FF6B35;
    stroke: #222222;
    stroke-width: 1;
    cursor: pointer;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.hood-zone:hover {
    filter: brightness(1.3);
}
.hood-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    fill: #E8E8E8;
    text-anchor: middle;
    pointer-events: none;
}
.heatmap-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.legend-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #777777;
}
.legend-bar {
    width: 120px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.15), #FF6B35);
}
.hood-tooltip {
    position: absolute;
    display: none;
    background: #161616;
    border: 1px solid #FF6B35;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #FF6B35;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

/* ==========================================
   EXPLORE: Cocktail Menu Browser
   ========================================== */
.cocktails {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}
.cocktail-search {
    margin-bottom: 1.25rem;
}
.cocktail-input {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #161616;
    border: 1px solid #222222;
    color: #E8E8E8;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cocktail-input::placeholder {
    color: #777777;
}
.cocktail-input:focus {
    outline: none;
    border-color: #FF3366;
    box-shadow: 0 0 12px rgba(255, 51, 102, 0.15);
}
.cocktail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cocktail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #161616;
    border: 1px solid #222222;
    border-bottom: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.cocktail-item:first-child {
    border-radius: 4px 4px 0 0;
}
.cocktail-item:last-child {
    border-bottom: 1px solid #222222;
    border-radius: 0 0 4px 4px;
}
.cocktail-item:hover {
    background: #1a1a1a;
    border-color: rgba(255, 51, 102, 0.3);
}
.cocktail-item:hover + .cocktail-item {
    border-top-color: rgba(255, 51, 102, 0.3);
}
.cocktail-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}
.cocktail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.cocktail-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #E8E8E8;
}
.cocktail-ingredients {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #777777;
}
.cocktail-venue {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #FF3366;
    white-space: nowrap;
}
.cocktail-item.hidden {
    display: none;
}

/* ==========================================
   EVENTS: Tonight & This Weekend
   ========================================== */
.events {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}
.event-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.event-tab {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #777777;
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    user-select: none;
}
.event-tab:hover {
    color: #E8E8E8;
}
.event-tab.active {
    color: #00D4AA;
    border-bottom-color: #00D4AA;
}
.event-list {
    background: #161616;
    border: 1px solid #222222;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
}
.event-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #222222;
    transition: opacity 0.3s ease;
}
.event-row:last-child {
    border-bottom: none;
}
.event-venue {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #FF6B35;
    min-width: 9rem;
}
.event-name {
    flex: 1;
    font-size: 0.85rem;
    color: #E8E8E8;
}
.event-time {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #00D4AA;
}

/* ==========================================
   SOCIAL: Check-in Feed
   ========================================== */
.social {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}
.checkin-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.checkin-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #222222;
}
.checkin-item:last-child {
    border-bottom: none;
}
.checkin-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #222222;
    border: 1px solid #FF6B35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #FF6B35;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(255, 107, 53, 0.15);
}
.checkin-content {
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.5;
}
.checkin-user {
    color: #E8E8E8;
    font-weight: 400;
}
.checkin-place {
    color: #FF6B35;
    font-weight: 400;
}
.checkin-time {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #777777;
    margin-top: 2px;
}

/* ==========================================
   SUBMIT VENUE FORM
   ========================================== */
.submit-venue {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}
.venue-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #161616;
    border: 1px solid #222222;
    color: #E8E8E8;
    border-radius: 4px;
    transition: border-color 0.2s ease;
    resize: vertical;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: #777777;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FF6B35;
}
.form-submit {
    padding: 0.7rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0A0A0A;
    background: #FF6B35;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}
.form-submit:hover {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
    background: #ff7e4d;
}

/* ==========================================
   FOOTER: Last Call
   ========================================== */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #222222;
    margin-top: 2rem;
}
.footer-inner {
    max-width: 500px;
    margin: 0 auto;
}
.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FF6B35;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
    margin-bottom: 1rem;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #FF6B35;
    border-radius: 50%;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}
.social-icon:hover {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.08);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}
.flink {
    font-size: 0.8rem;
    color: #777777;
    text-decoration: none;
    transition: color 0.2s ease;
}
.flink:hover {
    color: #FF6B35;
}
.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #777777;
}

/* ==========================================
   FADE-IN ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 1100px) {
    .venue-masonry {
        column-count: 3;
    }
}
@media (max-width: 640px) {
    .venue-masonry {
        column-count: 1;
    }
    .hero-title {
        font-size: 4rem;
    }
    .event-row {
        flex-wrap: wrap;
    }
    .event-venue {
        min-width: auto;
        width: 100%;
    }
}
