/* ========================================================= */
/* MOBILE BOTTOM BAR STYLES */
/* ========================================================= */

* {
    box-sizing: border-box;
}

.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #7a8351;
    display: none;
    /* Hidden by default, shown via media query */
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bar-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-item {
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-icon-img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Make it white */
}

.bar-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
}

.bar-cta {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.bar-book-btn {
    background: #fbf7ef;
    color: #6b3c2a;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Georgia", serif;
    transition: transform 0.2s ease;
}

.bar-book-btn:active {
    transform: scale(0.95);
}

/* MOBILE MEDIA QUERY */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }

    /* Add padding to the bottom of the body so content isn't hidden */
    body {
        padding-bottom: 70px !important;
    }
}