.bh-calendar-container {
    --bh-primary-color: #144c34;
    --bh-gold-color: #d4af37;
    --bh-dark-color: #1a1a1a;
    font-family: 'Times New Roman', Georgia, serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-sizing: border-box;
}

/* Header styling */
.bh-header {
    text-align: center;
    margin-bottom: 40px;
}
.bh-header-logo {
    font-size: 3rem;
    margin-bottom: 10px;
}
.bh-logo-container {
    max-width: 180px;
    margin: 0 auto 15px auto;
}
.bh-header-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}
.bh-main-title {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin: 0;
    color: var(--bh-primary-color);
}
.bh-sub-title {
    font-style: italic;
    font-size: 2rem;
    color: var(--bh-gold-color);
    margin-bottom: 10px;
}
.bh-header-desc {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto;
    max-width: 600px;
}

/* Featured Event Banner styling */
.bh-featured-banner {
    background-color: var(--bh-primary-color);
    color: #fff;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
}
.bh-featured-img-col {
    width: 40%;
    position: relative;
    min-height: 250px;
}
.bh-featured-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bh-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--bh-gold-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 12px;
    letter-spacing: 1px;
}
.bh-featured-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bh-feat-sub {
    color: var(--bh-gold-color);
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.bh-feat-title {
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}
.bh-feat-date {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
}
.bh-feat-desc {
    margin: 0 0 25px 0;
    line-height: 1.6;
    color: #eaeaea;
}
.bh-feat-btn {
    align-self: flex-start;
    background-color: var(--bh-gold-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 28px;
    border-radius: 4px;
    transition: opacity 0.2s;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.bh-feat-btn:hover {
    opacity: 0.9;
}

/* This Week Section */
.bh-this-week-section {
    margin-bottom: 50px;
}
.bh-this-week-header {
    border-bottom: 2px solid #ddd;
    margin-bottom: 25px;
    padding-bottom: 10px;
}
.bh-this-week-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--bh-primary-color);
    letter-spacing: 1px;
}
.bh-carousel-outer {
    position: relative;
    display: flex;
    align-items: center;
}
.bh-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}
.bh-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
}
.bh-carousel-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.bh-card-img-wrap {
    height: 180px;
    position: relative;
}
.bh-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bh-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.bh-card-img-placeholder i {
    font-size: 3rem;
}
.bh-card-img-placeholder svg {
    width: 3rem;
    height: 3rem;
}
.bh-card-body {
    padding: 20px;
}
.bh-card-title {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: var(--bh-primary-color);
}
.bh-card-date {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}
.bh-card-time {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}
.bh-card-extra {
    font-size: 0.9rem;
    color: var(--bh-gold-color);
    font-weight: bold;
}
.bh-carousel-control {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 10;
}
.bh-carousel-control.prev { left: -20px; }
.bh-carousel-control.next { right: -20px; }

/* Filter Section */
.bh-filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.bh-tag-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.bh-tag-btn:hover, .bh-tag-btn.active {
    background-color: var(--bh-primary-color);
    color: #fff;
    border-color: var(--bh-primary-color);
}

/* Month Switcher styling */
.bh-month-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--bh-primary-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.bh-month-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: var(--bh-primary-color);
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 1px;
}
.bh-current-month-display {
    margin: 0;
    font-size: 2.2rem;
    color: var(--bh-primary-color);
    letter-spacing: 2px;
}

/* Events List Row Grid */
.bh-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.bh-event-row {
    background: #fff;
    border-radius: 6px;
    padding: 15px 25px;
    display: grid;
    grid-template-columns: 60px 100px 1fr 180px auto;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
    transition: all 0.2s ease;
}
.bh-event-row.hidden {
    display: none;
}
.bh-row-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.bh-row-icon i {
    font-size: 1.5rem;
}
.bh-row-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}
.bh-row-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}
.bh-day-name {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
}
.bh-day-num {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--bh-primary-color);
    line-height: 1;
    margin: 4px 0;
}
.bh-month-name {
    font-size: 0.75rem;
    font-weight: bold;
    color: #555;
}
.bh-row-title {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    color: var(--bh-primary-color);
}
.bh-row-desc {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}
.bh-row-time {
    font-size: 1rem;
    color: #444;
}
.bh-row-extra {
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--bh-gold-color);
    margin-top: 5px;
}
.bh-row-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
}
.bh-book-btn {
    background-color: var(--bh-primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--bh-primary-color);
    transition: background-color 0.2s;
    white-space: nowrap;
    display: inline-block;
}
.bh-book-btn:hover {
    background-color: #0b2b1e;
}

/* Responsiveness and Mobile Fixes */
@media (max-width: 1024px) {
    .bh-event-row {
        grid-template-columns: 60px 80px 1fr 140px auto;
        gap: 15px;
        padding: 15px;
    }
}
@media (max-width: 991px) {
    .bh-event-row {
        grid-template-columns: 60px 80px 1fr 120px;
    }
    .bh-row-actions {
        grid-column: 1 / -1;
        justify-content: center;
        border-top: 1px solid #eee;
        padding-top: 12px;
        margin-top: 5px;
    }
    .bh-carousel-card {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .bh-calendar-container {
        padding: 15px;
    }
    .bh-main-title {
        font-size: 2.2rem;
    }
    .bh-sub-title {
        font-size: 1.5rem;
    }
    .bh-featured-banner {
        flex-direction: column;
    }
    .bh-featured-img-col, .bh-featured-content {
        width: 100%;
        padding: 20px;
    }
    .bh-featured-img-col {
        min-height: 200px;
    }
    .bh-event-row {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }
    .bh-row-date {
        border-right: none;
        padding-right: 0;
        align-items: flex-start;
    }
    .bh-row-info {
        grid-column: 2 / -1;
    }
    .bh-row-time {
        grid-column: 2 / -1;
    }
    .bh-row-actions {
        grid-column: 1 / -1;
    }
    .bh-carousel-card {
        flex: 0 0 100%;
    }
}
@media (max-width: 480px) {
    .bh-event-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bh-row-icon {
        margin: 0 auto;
    }
    .bh-row-date {
        align-items: center;
    }
    .bh-row-info, .bh-row-time {
        grid-column: 1;
    }
}
