/* ═══════════════════════════════════════════════════
   Hero Header Three · Liverpool Bars
   All classes prefixed .hh3__ / .hh3- to avoid collisions
   ═══════════════════════════════════════════════════ */

.hh3 {
    --hh3-bg: #111111;
    --hh3-orange: #d2591f;
    --hh3-orange-lt: #ff7b3d;
    --hh3-amber: #ff9a3c;
    --hh3-lime: #ddf247;
    --hh3-glass: rgba(255, 255, 255, 0.07);
    --hh3-glass-border: rgba(255, 255, 255, 0.13);
    --hh3-radius: 20px;
    --hh3-ease: cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--hh3-bg);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

/* Top animated gradient line */
.hh3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--hh3-orange) 0%,
        var(--hh3-orange-lt) 30%,
        var(--hh3-lime) 55%,
        var(--hh3-orange-lt) 75%,
        var(--hh3-orange) 100%);
    background-size: 200% 100%;
    animation: hh3-line-scroll 4s linear infinite;
    z-index: 10;
}

@keyframes hh3-line-scroll {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Ambient blobs */
.hh3__blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hh3__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
    animation: hh3-blob-drift 10s ease-in-out infinite;
}

.hh3__blob--1 { width: 550px; height: 550px; background: radial-gradient(circle, var(--hh3-orange), transparent 70%); top: -180px; left: -80px; animation-delay: 0s; }
.hh3__blob--2 { width: 420px; height: 420px; background: radial-gradient(circle, var(--hh3-orange-lt), transparent 70%); bottom: -80px; right: 35%; animation-delay: -4s; }
.hh3__blob--3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--hh3-lime), transparent 70%); top: 40%; right: 8%; animation-delay: -7s; opacity: 0.18; }

@keyframes hh3-blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(24px, -36px) scale(1.06); }
    66%       { transform: translate(-18px, 24px) scale(0.94); }
}

/* Split grid */
.hh3__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58fr 42fr;
    min-height: 100vh;
    max-height: 920px;
    align-items: stretch;
}

/* Left panel */
.hh3__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 100px 56px 80px 80px;
}

.hh3__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(210, 89, 31, 0.15);
    border: 1px solid rgba(210, 89, 31, 0.35);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--hh3-orange-lt);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    animation: hh3-fadein-up 0.7s 0.0s ease both;
}

.hh3__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hh3-orange-lt);
    box-shadow: 0 0 8px var(--hh3-orange-lt);
    animation: hh3-pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hh3__headline {
    margin: 0;
    font-size: clamp(36px, 4.5vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.02em;
    animation: hh3-fadein-up 0.7s 0.1s ease both;
}

.hh3__headline-grad {
    display: block;
    background: linear-gradient(130deg, var(--hh3-orange-lt) 0%, var(--hh3-amber) 40%, var(--hh3-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: hh3-fadein-up 0.7s 0.1s ease both, hh3-grad-shift 6s ease-in-out infinite 1s;
}

@keyframes hh3-grad-shift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.hh3__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    animation: hh3-fadein-up 0.7s 0.2s ease both;
}

.hh3__text p { margin: 0; }

/* Search bar */
.hh3__search-outer { animation: hh3-fadein-up 0.7s 0.3s ease both; max-width: 520px; }

.hh3__search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    padding: 6px 6px 6px 22px;
    backdrop-filter: blur(16px);
    transition: border-color 0.3s var(--hh3-ease), box-shadow 0.3s var(--hh3-ease);
}

.hh3__search:focus-within {
    border-color: var(--hh3-orange);
    box-shadow: 0 0 0 4px rgba(210, 89, 31, 0.2), 0 0 50px rgba(210, 89, 31, 0.12);
}

.hh3__search-icon  { color: rgba(255, 255, 255, 0.4); font-size: 18px; flex-shrink: 0; }
.hh3__search-input { flex: 1; background: none; border: none; outline: none; color: #fff; font-size: 15px; padding: 11px 0; min-width: 0; }
.hh3__search-input::placeholder { color: rgba(255, 255, 255, 0.38); }

.hh3__search-btn {
    background: linear-gradient(135deg, var(--hh3-orange) 0%, var(--hh3-orange-lt) 100%);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.03em;
    transition: transform 0.2s var(--hh3-ease), box-shadow 0.2s var(--hh3-ease);
}

.hh3__search-btn:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(210, 89, 31, 0.55); }

/* Category pills */
.hh3__cats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    animation: hh3-fadein-up 0.7s 0.4s ease both;
}

.hh3__cats-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255, 255, 255, 0.4); }

.hh3__cat-pill {
    padding: 7px 15px;
    border-radius: 100px;
    background: var(--hh3-glass);
    border: 1px solid var(--hh3-glass-border);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background 0.25s var(--hh3-ease), border-color 0.25s var(--hh3-ease), color 0.25s var(--hh3-ease), transform 0.2s var(--hh3-ease);
}

.hh3__cat-pill:hover { background: rgba(210, 89, 31, 0.25); border-color: var(--hh3-orange); color: #fff; transform: translateY(-2px); }

/* Stats strip */
.hh3__stats { display: flex; align-items: center; gap: 18px; animation: hh3-fadein-up 0.7s 0.5s ease both; }

.hh3__stat { display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.6); font-size: 14px; font-weight: 500; }
.hh3__stat i      { color: var(--hh3-orange-lt); font-size: 15px; }
.hh3__stat strong { color: #fff; font-weight: 700; }
.hh3__stat-sep    { color: rgba(255, 255, 255, 0.18); font-size: 18px; }

/* Right panel */
.hh3__right { position: relative; overflow: hidden; }

.hh3__right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--hh3-bg) 0%, transparent 22%),
        linear-gradient(to top, var(--hh3-bg) 0%, transparent 28%);
    z-index: 2;
    pointer-events: none;
}

.hh3__hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.hh3__img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1a0a00 0%, #2d1206 45%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.18);
}

.hh3__img-placeholder i    { font-size: 64px; }
.hh3__img-placeholder span { font-size: 14px; font-weight: 500; }

/* Floating stat badges */
.hh3__float {
    position: absolute;
    right: 20px;
    z-index: 3;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left-width: 3px;
    border-left-style: solid;
    border-radius: 14px;
    padding: 13px 18px 13px 16px;
    color: #fff;
    min-width: 190px;
    max-width: 230px;
    animation: hh3-badge-bob 5s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hh3__float-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px; line-height: 1; }

.hh3__float-value { font-size: 16px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; line-height: 1.2; }
.hh3__float-value i { font-size: 15px; flex-shrink: 0; }

.hh3__live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hh3-lime);
    box-shadow: 0 0 8px var(--hh3-lime);
    flex-shrink: 0;
    animation: hh3-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes hh3-badge-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@media (max-height: 600px) { .hh3__float:nth-child(n+5) { display: none; } }

/* Promoted venues section */
.hh3__promoted {
    position: relative;
    z-index: 1;
    padding: 40px 80px 60px;
    border-top: 1px solid rgba(210, 89, 31, 0.18);
    background: linear-gradient(to bottom, rgba(210, 89, 31, 0.05), transparent 60%);
}

.hh3__promoted-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }

.hh3__promoted-title { font-size: 20px; font-weight: 800; color: #fff; margin: 0; display: flex; align-items: center; gap: 12px; }

.hh3__promoted-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hh3-orange), var(--hh3-orange-lt));
    font-size: 18px;
}

.hh3__promoted-pill {
    background: rgba(210, 89, 31, 0.15);
    border: 1px solid rgba(210, 89, 31, 0.35);
    color: var(--hh3-orange-lt);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* Swiper */
.hh3__swiper-outer { position: relative; }
.swiper-hh3 { overflow: visible !important; }
.swiper-hh3 .swiper-wrapper { align-items: stretch; }

.hh3__nav { position: absolute; top: -56px; right: 0; display: flex; gap: 10px; }

.hh3__nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--hh3-glass);
    border: 1px solid var(--hh3-glass-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s var(--hh3-ease), border-color 0.2s var(--hh3-ease);
    font-size: 18px;
    line-height: 1;
}

.hh3__nav-btn:hover { background: rgba(210, 89, 31, 0.35); border-color: var(--hh3-orange); }

/* Venue card */
.hh3-card {
    background: var(--hh3-glass);
    border: 1px solid var(--hh3-glass-border);
    border-radius: var(--hh3-radius);
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--hh3-ease), box-shadow 0.3s var(--hh3-ease), border-color 0.3s var(--hh3-ease);
    display: flex;
    flex-direction: column;
}

.hh3-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(210, 89, 31, 0.45); border-color: rgba(210, 89, 31, 0.5); }

.hh3-card__img { position: relative; height: 190px; overflow: hidden; flex-shrink: 0; }
.hh3-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--hh3-ease); }
.hh3-card:hover .hh3-card__img img { transform: scale(1.1); }

.hh3-card__img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #1a0a00, #2a1005); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.18); font-size: 44px; }

.hh3-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 7, 26, 0.85) 0%, transparent 55%); }

.hh3-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--hh3-orange), var(--hh3-orange-lt));
    color: #fff;
}

.hh3-card__visit {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s var(--hh3-ease), transform 0.25s var(--hh3-ease);
}

.hh3-card:hover .hh3-card__visit { opacity: 1; transform: translateY(0); }

.hh3-card__body { padding: 16px 18px 20px; flex: 1; }

.hh3-card__name { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hh3-card__name a       { color: inherit; text-decoration: none; transition: color 0.2s; }
.hh3-card__name a:hover { color: var(--hh3-orange-lt); }

.hh3-card__meta { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.5); font-size: 13px; flex-wrap: wrap; }
.hh3-card__meta i { color: var(--hh3-orange-lt); }

/* Empty state */
.hh3__empty { padding: 60px 24px; text-align: center; color: rgba(255, 255, 255, 0.4); width: 100%; }
.hh3__empty h3 { font-size: 18px; color: rgba(255, 255, 255, 0.6); margin: 0 0 8px; }
.hh3__empty a  { color: var(--hh3-orange-lt); text-decoration: none; }

/* Animations */
@keyframes hh3-fadein-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hh3-pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 1100px) {
    .hh3__left     { padding: 80px 40px 70px 56px; }
    .hh3__promoted { padding: 40px 56px 50px; }
}

@media (max-width: 900px) {
    .hh3__grid { grid-template-columns: 1fr; min-height: auto; max-height: none; }
    .hh3__left  { order: 1; padding: 50px 32px 60px; }
    .hh3__right { order: 2; height: 440px; }
    .hh3__right::before { background: linear-gradient(to top, var(--hh3-bg) 0%, transparent 30%); }
    .hh3__float { right: 12px; min-width: 160px; max-width: 200px; padding: 10px 14px 10px 13px; }
    .hh3__float:nth-child(n+5) { display: none; }
    .hh3__promoted { padding: 36px 32px 48px; }
}

@media (max-width: 600px) {
    .hh3__left     { padding: 40px 20px 48px; gap: 20px; }
    .hh3__stats    { flex-wrap: wrap; gap: 12px; }
    .hh3__stat-sep { display: none; }
    .hh3__promoted { padding: 28px 20px 40px; }
    .hh3__search   { padding: 5px 5px 5px 16px; }
    .hh3__search-btn    { padding: 10px 20px; font-size: 13px; }
    .hh3__float         { min-width: 140px; max-width: 175px; padding: 9px 12px 9px 11px; }
    .hh3__float:nth-child(n+5) { display: none; }
    .hh3__float-value   { font-size: 14px; }
}
