/* ============================================================
   Horsforth Town Team — public styles
   Companion to common.css (shared styles, header, footer, nav)
   All classes prefixed htt- per spec.
   ============================================================ */

/* ── Body ────────────────────────────────────────────────── */

:root { --hll-cream: #F8F6F1; }

.htt-body {
    background: var(--hll-cream);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Hero ────────────────────────────────────────────────── */

.htt-hero {
    background: linear-gradient(150deg, var(--hll-green) 0%, #2D5A3D 100%);
}

/* ── Text clamping utilities ─────────────────────────────── */

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Retailer detail page ────────────────────────────────── */

.htt-retailer__hero-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 1.5rem;
}

.htt-retailer__hero-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--hll-green);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.htt-retailer__hero-img-initial {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
}

/* ── Social platform pill colours ────────────────────────── */

.htt-social-pill--instagram { background: #E1306C; }
.htt-social-pill--facebook  { background: #1877F2; }
.htt-social-pill--twitter   { background: #1DA1F2; }

.htt-gallery__thumb {
    height: 220px;
}

.htt-lightbox__overlay {
    background: rgba(0, 0, 0, 0.85);
}
