@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600&family=Roboto:wght@400;500&display=swap');

.cbm-layout-wrapper {
    width: 100%;
    max-width: 1200px; /* আগে ৯০০ পিক্সেল ছিল, ডানে-বামের খালি জায়গা কমাতে বাড়ানো হলো */
    margin: 0 auto;
    padding: 40px 20px; /* ডানে ও বামে প্যাডিং কম করে দেওয়া হয়েছে */
    background-color: #e8e4dc;
    font-family: 'Roboto', Arial, sans-serif;
    color: #111111;
    line-height: 1.5;
    box-sizing: border-box;
}

.cbm-lang-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.cbm-lang-btn {
    background: transparent;
    color: #111;
    border: 1px solid #111;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.cbm-lang-btn.active {
    background: #111;
    color: #fff;
}

.cbm-menu-header {
    margin-bottom: 35px;
    border-bottom: 1px solid #c8c4bc;
    padding-bottom: 20px;
}

.cbm-menu-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #000;
}

.cbm-menu-description {
    font-size: 0.95rem;
    color: #222;
    margin: 0;
}

.cbm-day-block {
    margin-bottom: 35px;
}

/* Date Heading Style */
.cbm-date-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Small Date-wise Image Style */
.cbm-day-image {
    display: block;
    max-width: 120px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 12px;
    margin-top: 5px;
}

/* Menu Items Style */
.cbm-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cbm-item-list li {
    font-size: 1.05rem;
    color: #111111;
    padding: 2px 0;
    font-weight: 400;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================== */
@media screen and (max-width: 768px) {
    .cbm-layout-wrapper {
        padding: 20px 15px; /* মোবাইলে ডানে-বামে প্যাডিং আরও কম থাকবে */
    }

    .cbm-menu-title {
        font-size: 1.75rem;
    }

    .cbm-date-heading {
        font-size: 1.25rem;
    }

    .cbm-item-list li {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .cbm-lang-bar {
        justify-content: center; /* মোবাইলে বাটনগুলো মাঝে থাকবে */
    }
}