/* Colour overrides — replace red with warm copper #1a5c52 */
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
    background-color: #1a5c52 !important;
}

.button.primary:hover, .button.primary:focus {
    background-color: #124340 !important;
}

.facebook svg,
.facebook svg path,
.facebook svg * {
    fill: #8b5e3c !important;
}

/* Events Section */
.events-section {
    padding: 2.5rem 0;
    background-color: #0a3a28;
}

.events-heading {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 720px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    align-items: center;
    background: #185c3a;
    border-left: 4px solid #8b5e3c;
    border-radius: 4px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.event-card:hover {
    background: #246040;
}

.event-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3rem;
    margin-right: 1.25rem;
    color: #fff;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a0c8b0;
}

.event-card-body {
    flex: 1;
}

.event-card-title {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.2rem;
}

.event-card-desc {
    color: #a0c8b0;
    font-size: 0.875rem;
    margin: 0;
}

.event-card-arrow {
    color: #a0c8b0;
    font-size: 1.5rem;
    margin-left: 1rem;
}

/* Event Modal */
.event-modal {
    border-radius: 6px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    background: #fff;
}

.event-modal .close-button {
    font-size: 1.8rem;
    color: #0a3a28;
    top: 1rem;
    right: 1rem;
}

.event-modal-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8b5e3c;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.event-modal-title {
    color: #1a1a1a;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #1a1a1a;
}

.event-modal-body {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.event-modal-body p {
    margin-bottom: 0.75rem;
}

/* Menu Modal */
.menu-modal {
    border-radius: 6px;
    padding: 2rem;
    max-width: 560px;
    width: 90%;
    background: #fff;
}

.menu-modal .close-button {
    font-size: 1.8rem;
    color: #0a3a28;
    top: 1rem;
    right: 1rem;
}

.menu-modal-title {
    color: #1a1a1a;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #1a1a1a;
}

.menu-modal-category {
    margin-bottom: 1.25rem;
}

.menu-modal-category-title {
    color: #185c3a;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e0e0e0;
}

.menu-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.35rem 0;
    border-bottom: 1px dotted #e8e8e8;
}

.menu-modal-item-name {
    color: #333;
    font-size: 0.95rem;
}

.menu-modal-item-price {
    color: #0a3a28;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-modal-pdf {
    margin-top: 1.5rem;
    text-align: center;
}

.menu-modal-pdf .button.secondary {
    border-color: #0a3a28;
    background: #0a3a28;
    color: #f5f0e8;
}

.menu-modal-pdf .button.secondary:hover {
    background: #185c3a;
    color: #fff;
}

/* Mobile welcome section - centre align */
@media screen and (max-width: 639px) {
    .welcome .venue-details > li {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .welcome .venue-details > li .icon {
        margin-bottom: 0.25rem;
    }
}

/* Mobile opening times - centre align */
@media screen and (max-width: 639px) {
    .welcome .opening-times-mob {
        margin-top: 1.5rem;
    }
    .welcome .opening-times-mob .opening-times-btn > span {
        display: block;
        padding: 0;
        text-align: center;
    }
    .welcome .opening-times-mob .icon {
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .welcome .opening-times-mob .text {
        text-align: center;
    }
}
