/* ================================================================
   vc-happyhour.css — Happy Hour Page styles
   ================================================================ */

.vc-hh-page {
    background: #111;
    min-height: 100vh;
}


/* ================================================================
   SHARED HERO — reusable across inner pages
   No negative margin-top (header sits above, hero below)
   ================================================================ */
.vc-page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 34rem;
    background: #0d0d0d center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vc-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.68) 100%
    );
    z-index: 0;
}

.vc-page-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 var(--side-pad);
}

.vc-page-hero__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

/* Days and time lines */
.vc-page-hero__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.vc-page-hero__meta-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9375rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

.vc-page-hero__meta-line--time {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.90);
}

/* Gold rule between meta and button */
.vc-page-hero__rule {
    width: 3rem;
    height: 1.5px;
    background: var(--c-gold);
    opacity: 0.70;
    margin: 0.625rem 0 0.375rem;
}

/* Shared page button */
.vc-page-btn {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold) !important;
    background: transparent;
    border: 1.5px solid var(--c-gold);
    padding: 0.75rem 2rem;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    margin-top: 0.5rem;
}

.vc-page-btn:hover {
    background: var(--c-gold);
    color: #111 !important;
}

.vc-page-btn:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}


/* ================================================================
   SPLIT SECTION — item list left, image right
   ================================================================ */
.vc-hh-split {
    background: #111;
    padding: 5rem var(--side-pad);
}

.vc-hh-split__inner {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 4rem;
    align-items: start;
}

/* Eyebrow */
.vc-hh-eyebrow {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.375rem;
}

/* Category title */
.vc-hh-split__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.625rem;
    line-height: 1.1;
}

.vc-hh-split__rule {
    width: 3.25rem;
    height: 2px;
    background: var(--c-gold);
    margin-bottom: 2rem;
    opacity: 0.85;
}

/* Items list */
.vc-hh-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vc-hh-list__item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vc-hh-list__item:first-child { padding-top: 0; }
.vc-hh-list__item:last-child  { border-bottom: none; }

/* Name + price on same row */
.vc-hh-list__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.vc-hh-list__name {
    font-family: 'Anton', sans-serif !important;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

.vc-hh-list__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.vc-hh-list__desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(200,188,168,0.78);
    line-height: 1.5;
    margin: 0;
}

/* Right column image */
.vc-hh-split__right {
    position: sticky;
    top: 7rem;
        border: 1px solid rgba(232, 160, 44, 0.18);
}

.vc-hh-split__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ================================================================
   FEATURE SECTION — cards on full-bleed background image
   ================================================================ */
.vc-hh-feature {
    position: relative;
    width: 100%;
    min-height: 35rem;
    background: #0d0d0d center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem var(--side-pad);
    overflow: hidden;
}

.vc-hh-feature__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 0;
}

.vc-hh-feature__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.vc-hh-feature__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.vc-hh-feature__rule {
    width: 3.25rem;
    height: 2px;
    background: var(--c-gold);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

/* Cards grid */
.vc-hh-feature__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.vc-hh-feature__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 1.25rem 1.5rem;
    min-width: 9rem;
    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(232,160,44,0.35);
    transition: border-color 0.25s ease;
}

.vc-hh-feature__card:hover {
    border-color: rgba(232,160,44,0.75);
}

.vc-hh-feature__card-name {
    font-family: 'Anton', sans-serif !important;
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: center;
}

.vc-hh-feature__card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-gold);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .vc-hh-split__inner {
        grid-template-columns: 1fr 38%;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vc-hh-split__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vc-hh-split__right { position: static; }

    .vc-hh-split__img { max-height: 20rem; object-fit: cover; }

    .vc-hh-feature__cards { gap: 0.75rem; }
    .vc-hh-feature__card  { min-width: 7.5rem; padding: 1rem 1.125rem; }

    .vc-page-hero__title  { letter-spacing: 0.03em; }
}

@media (max-width: 576px) {
    .vc-hh-split { padding-top: 3rem; padding-bottom: 3rem; }

    .vc-hh-list__name  { font-size: 0.8125rem; }
    .vc-hh-list__price { font-size: 1rem; }
    .vc-hh-list__desc  { font-size: 0.875rem; }

    .vc-hh-feature { padding-top: 3.5rem; padding-bottom: 3.5rem; }

    .vc-hh-feature__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.625rem;
        width: 100%;
    }

    .vc-hh-feature__card { min-width: unset; width: 100%; }
}