/* ===== Home hero ===== */
.home-hero {
    position: relative;
    text-align: center;
    padding: 40px 20px 32px;
    background:
        radial-gradient(ellipse at top, rgba(196, 162, 85, 0.15), transparent 60%),
        #000000;
    border: 1px solid rgba(196, 162, 85, 0.25);
    border-radius: 8px;
    margin-bottom: 32px;
    overflow: hidden;
}

.home-hero-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 4px;
}

.home-eyebrow {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c4a255;
    padding: 4px 14px;
    border: 1px solid rgba(196, 162, 85, 0.5);
    border-radius: 50px;
    margin-bottom: 16px;
}

.home-title {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 54px;
    color: #f5f5f5;
    margin: 0 0 14px;
    line-height: 1;
    letter-spacing: 2px;
}

.home-subtitle {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 680px;
    margin: 0 auto 22px;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s ease;
    border: 1px solid transparent;
}

.home-btn-primary {
    background: #c4a255;
    color: #0d0d0d;
    border-color: #c4a255;
}

.home-btn-primary:hover,
.home-btn-primary:focus {
    background: #d8b868;
    color: #0d0d0d;
    text-decoration: none;
    transform: translateY(-1px);
}

.home-btn-ghost {
    background: transparent;
    color: #f5f5f5;
    border-color: rgba(245, 245, 245, 0.3);
}

.home-btn-ghost:hover,
.home-btn-ghost:focus {
    background: rgba(196, 162, 85, 0.12);
    color: #c4a255;
    border-color: #c4a255;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ===== Section framework ===== */
.home-section {
    margin: 0 0 56px;
    scroll-margin-top: 20px;
}

.home-section-header {
    text-align: center;
    margin-bottom: 28px;
}

.home-section-icon {
    font-size: 28px;
    color: #c4a255;
    margin-bottom: 10px;
    display: block;
}

.home-section-header h2 {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 42px;
    color: #f5f5f5;
    margin: 0 0 14px;
    letter-spacing: 2px;
}

.home-section-rule {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c4a255, transparent);
    margin: 0 auto 10px;
}

.home-section-sub {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

/* ===== Tap list ===== */
.taplist-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.taplist-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.taplist-meta i {
    color: #c4a255;
}

.taplist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.tap-card {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 14px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #c4a255;
    border-radius: 6px;
    padding: 14px 16px;
    text-decoration: none;
    transition: all .25s ease;
    color: inherit;
    overflow: hidden;
}

.tap-card:hover,
.tap-card:focus {
    border-color: rgba(196, 162, 85, 0.4);
    border-left-color: #d8b868;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: inherit;
}

.tap-card.style-ipa { border-left-color: #c49a3d; }
.tap-card.style-stout { border-left-color: #5c3a1e; }
.tap-card.style-sour { border-left-color: #b86ea8; }
.tap-card.style-cider { border-left-color: #d35f4b; }
.tap-card.style-light { border-left-color: #e4c770; }
.tap-card.style-amber { border-left-color: #9e4d2c; }

.tap-card-number {
    flex: 0 0 34px;
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 28px;
    color: rgba(196, 162, 85, 0.45);
    text-align: center;
    align-self: center;
    line-height: 1;
    letter-spacing: 1px;
}

.tap-card-body {
    flex: 1;
    min-width: 0;
}

.tap-brewery {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4a255;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tap-name {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 20px;
    color: #f5f5f5;
    margin: 0 0 6px;
    letter-spacing: 1px;
    line-height: 1.15;
}

.tap-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #ffffff;
}

.tap-detail {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tap-detail i {
    color: #c4a255;
    font-size: 10px;
}

.tap-new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    background: #c4a255;
    color: #0d0d0d;
    border-radius: 50px;
}

.tap-new-badge-inline {
    position: static;
    display: inline-block;
    vertical-align: middle;
}

.taplist-empty {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #ffffff;
    padding: 30px;
    background: #000000;
    border: 1px dashed rgba(196, 162, 85, 0.25);
    border-radius: 6px;
}

/* ===== Two-column info section ===== */
.home-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

.info-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 22px;
}

.info-card h3 {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 24px;
    color: #f5f5f5;
    margin: 0 0 14px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #c4a255;
    font-size: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(196, 162, 85, 0.15);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li .day {
    font-weight: 600;
    color: #f5f5f5;
}

.info-card li .closed {
    color: #e57068;
    font-style: italic;
}

.info-card .weekly-content :is(h1,h2,h3,h4) {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    color: #f5f5f5;
    letter-spacing: 1px;
}

.info-card .weekly-content p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.info-card .weekly-content a {
    color: #c4a255;
}

/* ===== Events list ===== */
.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(196, 162, 85, 0.2);
    align-items: center;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    flex: 0 0 60px;
    text-align: center;
    background: rgba(196, 162, 85, 0.1);
    border: 1px solid rgba(196, 162, 85, 0.3);
    border-radius: 6px;
    padding: 8px 4px;
}

.event-date .mo {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c4a255;
}

.event-date .day {
    display: block;
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 26px;
    color: #f5f5f5;
    line-height: 1;
}

.event-body {
    flex: 1;
    min-width: 0;
}

.event-name {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 18px;
    color: #f5f5f5;
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.event-name a {
    color: #f5f5f5;
    text-decoration: none;
}

.event-name a:hover,
.event-name a:focus {
    color: #c4a255;
    text-decoration: none;
}

.event-time {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}

.event-badges {
    margin-top: 4px;
}

.event-badge {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    margin-right: 4px;
}

.event-badge-avail {
    background: rgba(100, 180, 100, 0.15);
    color: #7dc47d;
    border: 1px solid rgba(100, 180, 100, 0.35);
}

.event-badge-soldout {
    background: rgba(220, 80, 60, 0.15);
    color: #e57068;
    border: 1px solid rgba(220, 80, 60, 0.35);
}

/* ===== Social CTA ===== */
.home-social {
    text-align: center;
    padding: 32px 20px;
    background:
        radial-gradient(ellipse at center, rgba(196, 162, 85, 0.12), transparent 70%),
        #000000;
    border-top: 1px solid rgba(196, 162, 85, 0.25);
    border-bottom: 1px solid rgba(196, 162, 85, 0.25);
    border-radius: 8px;
}

.home-social h3 {
    font-family: 'dirty_headlineregular', 'Impact', sans-serif;
    font-size: 28px;
    color: #f5f5f5;
    margin: 0 0 16px;
    letter-spacing: 1.5px;
}

.home-social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.home-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(196, 162, 85, 0.12);
    border: 1px solid rgba(196, 162, 85, 0.35);
    color: #c4a255;
    font-size: 20px;
    text-decoration: none;
    transition: all .2s ease;
}

.home-social-icons a:hover,
.home-social-icons a:focus {
    background: #c4a255;
    color: #0d0d0d;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .home-title { font-size: 38px; }
    .home-section-header h2 { font-size: 30px; }
    .taplist-grid { grid-template-columns: 1fr; gap: 10px; }
    .tap-name { font-size: 18px; }
    .home-hero { padding: 28px 14px 22px; }
    .info-card { padding: 18px; }
}
