﻿/* ===========================================
   showcase.css — Universal Showcase System
   CLEANED / DECLUTTERED
   =========================================== */

/* -------------------------------------------
   BASE SHOWCASE (LIGHT DEFAULT)
------------------------------------------- */

.bh-showcase {
    background: #fff;
    color: #333;
    padding-top: 6px;
    padding-bottom: var(--section-spacing-tight);
    box-shadow: var(--shadow-med);
}

header + .bh-showcase,
.home-hero + .bh-showcase {
    margin-top: 40px;
}


/* -------------------------------------------
   DARK VARIANT (OPT-IN)
------------------------------------------- */

.bh-showcase--dark {
    background: linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.01)), radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 60%), #000;
    color: #fff;
    box-shadow: none;
    /* bottom spacing behaves normally */
    padding-bottom: 32px;
    /* prevents margin-collapse */
    border-top: 1px solid transparent;
}

/* Visible TOP spacing must live on first child */
.bh-showcase--dark > .container,
.bh-showcase--dark > .bh-showcase-wrapper {
    padding-top: 32px;
}

/* -------------------------------------------
   GRID
------------------------------------------- */

.bh-showcase-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 26px 20px;
}

.bh-showcase-wrapper.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bh-showcase-wrapper.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bh-showcase-wrapper.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.bh-showcase-wrapper.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.bh-showcase-wrapper.cols-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* -------------------------------------------
   BASE CARD
------------------------------------------- */

.bh-showcase-card {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 120px auto;
    gap: 16px;
    width: 100%;
}

.bh-showcase-card img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.bh-showcase-card h5 {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--bh-color);
    margin-bottom: 6px;
}

.bh-showcase-card p {
    font-size: 1.05rem;
    color: #444;
    margin: 0;
}

/* -------------------------------------------
   SECTION HEADERS
------------------------------------------- */

.section-header {
    text-align: center;
    margin: 32px auto 36px;
    max-width: 900px;
}

.section-header .section-subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--bh-color);
    margin: 0;
}

/* -------------------------------------------
   IMAGE LINKS (HOME)
------------------------------------------- */

.showcase--imagelinks .bh-showcase-card {
    grid-template-columns: 1fr;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase--imagelinks .bh-showcase-card img {
    width: 100%;
    height: 135px;
    border-radius: 0;
}

.showcase--imagelinks .details {
    padding: 10px 12px;
    text-align: center;
}

.showcase--imagelinks .bh-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(204,106,0,0.35);
}

/* -------------------------------------------
   COMMENTS
------------------------------------------- */

.showcase--comments .bh-showcase-card {
    grid-template-columns: 1fr;
    padding: 18px 20px;
}

.bh-comment-name {
    margin-top: 8px;
    font-style: italic;
    color: var(--bh-color-dark);
}

/* -------------------------------------------
   SPECIALS
------------------------------------------- */

.showcase--specials .bh-showcase-card {
    padding: 16px;
}

/* -------------------------------------------
   PATIO
------------------------------------------- */

.bh-showcase--patio .bh-showcase-card {
    grid-template-columns: 220px 1fr;
    gap: 24px;
}

.bh-showcase--patio .bh-showcase-card h4 {
    font-size: 1.0rem;
}

.bh-showcase--patio .bh-showcase-card img {
    width: 220px;
    height: 220px;
    border-radius: 10px;
}

/* -------------------------------------------
   CONTACT US
------------------------------------------- */

.bh-showcase--contactus .bh-showcase-card p,
.bh-showcase--contactus .bh-showcase-card a {
    font-size: 1.18rem;
    line-height: 1.6;
}

/* ===========================================
   FROM THE BAR — PORTRAIT DRINK CARDS
   =========================================== */

.showcase--drinks .bh-showcase-card {
    grid-template-columns: 1fr;
}

.showcase--drinks .bh-showcase-card img {
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.showcase--drinks .bh-showcase-card .details {
    grid-column: 1 / -1;
}

/* -------------------------------------------
   DARK SHOWCASE INTERNAL CLEANUP
------------------------------------------- */

.bh-showcase--dark .row,
.bh-showcase--dark > .container > .row {
    margin-top: 0;
    margin-bottom: 0;
}

.bh-showcase--dark .imghover {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.bh-showcase--dark .imghover img {
    display: block;
}

/* Space between stacked showcases */
.bh-showcase + .bh-showcase {
    margin-top: 28px;
}

/* -------------------------------------------
   RESPONSIVE TWEAKS
------------------------------------------- */

@media (max-width: 900px) {
    .bh-showcase-wrapper.cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .bh-showcase-wrapper.cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ----------- CMS Styles ----------*/
.bh-showcase-empty {
    text-align: center;
    padding: 40px 20px;
}

    .bh-showcase-empty h5 {
        color: var(--bh-color);
        margin-bottom: 8px;
    }

    .bh-showcase-empty p {
        opacity: 0.85;
    }

/* Vertical (CMS-driven) cards */
.bh-showcase-card--vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

    .bh-showcase-card--vertical img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 6px;
    }

    .bh-showcase-card--vertical img {
        aspect-ratio: 4 / 3;
    }

.bh-showcase-wrapper {
    align-items: stretch;
}
.bh-showcase--patio {
    box-shadow: none !important;
}
.bh-showcase--content {
    box-shadow: none;
}







