/* =========================
   THEME (EDITÁ FÁCIL)
   ========================= */
:root {
    --bg-0: #0b0610;
    /* fondo base */
    --bg-1: #1a0b2a;
    /* violeta oscuro */
    --bg-2: #2a0f46;
    /* violeta */
    --accent-1: #a83cff;
    /* violeta brillante */
    --accent-2: #ff2aa3;
    /* magenta */
    --accent-3: #ff4fd8;
    /* magenta suave */
    --text: #ffffff;
    --text-75: rgba(255, 255, 255, .75);
    --text-50: rgba(255, 255, 255, .50);
    --radius: 1.25rem;
    --shadow: 0 18px 60px rgba(0, 0, 0, .35);
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, .25);
    --border: rgba(255, 255, 255, .12);
}

/* Base */
html,
body {
    height: 100%;
}

body.bg-app {
    color: var(--text);

    background:
        /* Haze grande para suavizar banding */
        radial-gradient(1400px 900px at 50% 30%, rgba(255, 255, 255, .035), transparent 70%),

        /* Acentos */
        radial-gradient(1000px 650px at 12% 10%, rgba(168, 60, 255, .20), transparent 66%),
        radial-gradient(1000px 700px at 88% 16%, rgba(255, 42, 163, .14), transparent 68%),
        radial-gradient(900px 650px at 60% 88%, rgba(0, 229, 255, .07), transparent 70%),

        /* Fondo base: transición larga con varios stops */
        linear-gradient(180deg,
            var(--bg-1) 0%,
            var(--bg-1) 22%,
            var(--bg-0) 55%,
            var(--bg-0) 100%);
}

body.bg-app {
    background-attachment: fixed;
}



a {
    text-decoration: none;
}

/* Navbar glass */
.nav-glass {
    background: rgba(20, 10, 32, .55);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .06);
}

.btn-app {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 14px 30px rgba(168, 60, 255, .25), 0 14px 40px rgba(255, 42, 163, .15);
}

.btn-app:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-app:active {
    transform: translateY(0);
}

/* Offcanvas dark */
.offcanvas-dark {
    background: linear-gradient(180deg, rgba(26, 11, 42, .98), rgba(11, 6, 16, .98));
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    padding: 5.5rem 0 3.5rem;
    overflow: hidden;
}

@media (max-width: 576px) {
    .hero {
        padding: 4.5rem 0 2.5rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .9;
    background:
        radial-gradient(700px 420px at 30% 20%, rgba(255, 255, 255, .14), transparent 60%),
        radial-gradient(900px 520px at 70% 30%, rgba(255, 255, 255, .10), transparent 62%),
        radial-gradient(700px 500px at 50% 90%, rgba(255, 42, 163, .18), transparent 65%),
        linear-gradient(135deg, rgba(168, 60, 255, .28), rgba(255, 42, 163, .18));
}

.text-gradient {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, .75), rgba(255, 255, 255, .95));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
}

.text-white-75 {
    color: var(--text-75) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

/* Mini cards */
.mini-card {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .9rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
}

.mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(168, 60, 255, .35), rgba(255, 42, 163, .25));
    border: 1px solid rgba(255, 255, 255, .12);
}

.mini-title {
    font-size: .85rem;
    color: var(--text-75);
}

.mini-sub {
    font-weight: 700;
}

/* Hero card */
.hero-card {
    border-radius: calc(var(--radius) + .25rem);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 1.25rem 1.25rem;
    box-shadow: var(--shadow);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .92);
    font-size: .8rem;
    white-space: nowrap;
}

.pill-light {
    background: rgba(255, 255, 255, .12);
}

.today-box {
    border-radius: var(--radius);
    padding: 1rem;
    background: linear-gradient(135deg, rgba(168, 60, 255, .18), rgba(255, 42, 163, .12));
    border: 1px solid rgba(255, 255, 255, .12);
}

/* Sections */
.section-pad {
    padding: 4.25rem 0;
}

.section-pad-sm {
    padding: 2.5rem 0;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .75rem;
    color: rgba(255, 255, 255, .72);
}

.section-title {
    font-weight: 800;
    margin: .25rem 0 .5rem;
}

.section-sub {
    color: var(--text-75);
    max-width: 56ch;
}

.section-soft {
    background: #f2f3f7;
    color: #0f0f14;
}

.section-soft .section-title {
    color: #0f0f14;
}

.section-soft .text-dark-75 {
    color: rgba(15, 15, 20, .78);
}

/* Accordion dark */
.accordion-dark .accordion-item {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-dark .accordion-button {
    background: rgba(255, 255, 255, .04);
    color: #fff;
    box-shadow: none;
}

.accordion-dark .accordion-button:focus {
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.accordion-dark .accordion-button::after {
    filter: invert(1);
    opacity: .85;
}

.accordion-dark .accordion-body {
    background: rgba(255, 255, 255, .03);
}

/* Chips */
.chip {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

/* Cards in soft sections */
.info-card {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(15, 15, 20, .10);
}

.info-ic {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(168, 60, 255, .18), rgba(255, 42, 163, .14));
    border: 1px solid rgba(15, 15, 20, .10);
    color: #0f0f14;
}

.photo-card {
    position: relative;
    border-radius: calc(var(--radius) + .25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
}

.photo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .60));
    color: #fff;
}

/* Glass cards (white section) */
.glass-card {
    padding: 1rem 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.glass-ic {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: .55rem;
    background: linear-gradient(135deg, rgba(168, 60, 255, .35), rgba(255, 42, 163, .25));
    border: 1px solid rgba(255, 255, 255, .12);
}

/* Map card */
.map-card {
    border-radius: calc(var(--radius) + .25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
}

/* Dark cards */
.card-dark {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.card-dark .card-body {
    color: #fff;
}

/* CTA */
.cta-card {
    border-radius: calc(var(--radius) + .25rem);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(168, 60, 255, .92), rgba(255, 42, 163, .86));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
}

/* Footer */
.footer {
    background: rgba(10, 6, 16, .92);
    border-top: 1px solid rgba(255, 255, 255, .10);
}

/* Small polish */
.btn,
.accordion-button {
    transition: transform .15s ease, filter .15s ease;
}

.artist-img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    flex: 0 0 auto;
}

@media (min-width: 576px) {
    .artist-img {
        width: 64px;
        height: 64px;
    }
}


/* Chips como botones */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .85);
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: .9rem;
    line-height: 1;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .35);
}

.chip.is-active {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* Fix: que los chips no queden "icon-only" y el texto no se salga */
.chip {
    width: auto !important;
    min-width: max-content;
    flex: 0 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* por si en mobile hay nombres largos */
    justify-content: flex-start;
}

/* si algún CSS te dejó los filtros centrados/angostos, esto los corrige */
.chip-filter {
    width: auto !important;
}

/* mejora visual del icono */
.chip i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* contenedor de chips: gap real + wrap ok */
.gastro-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    /* mejor que gap-5 (3rem) */
    align-items: center;
}

/* Input search */
.input-search {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, .12);
}

.input-search .form-control::placeholder {
    color: rgba(255, 255, 255, .45);
}

.input-search .form-control:focus {
    box-shadow: none;
}

/* Badge destacado */
.badge-featured {
    background: rgba(255, 215, 0, .16);
    border: 1px solid rgba(255, 215, 0, .35);
    color: rgba(255, 255, 255, .92);
}

/* Card destacado: borde + glow */
.featured-card {
    position: relative;
    border: 3px solid rgba(255, 215, 0, .35);
    box-shadow:
        0 0 0 1px rgba(255, 215, 0, .12) inset,
        0 12px 35px rgba(0, 0, 0, .35),
        0 0 28px rgba(255, 215, 0, .12);
}

/* Ribbon */
.featured-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: .35rem .6rem;
    border-radius: 999px;
    font-size: .78rem;
    background: rgba(255, 215, 0, .18);
    border: 1px solid rgba(255, 215, 0, .35);
    color: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
}

/* Pequeño “halo” superior */
.is-featured .card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(600px 140px at 20% 0%, rgba(255, 215, 0, .18), transparent 55%);
    opacity: .85;
}