
:root {
    --bg-color: #f2e8da;
    --text-color: #2e1a12;
    --line-color: #4a342a;
    --maps-color: #EA4335;
    --fb-color: #1877F2;
}

body {
    background-color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    color: var(--text-color);
}

.menu-container {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 500px; /* Giới hạn chiều rộng để đẹp trên mobile */
    padding: 25px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* Header cải tiến */
.header { text-align: center; margin-bottom: 30px; }

.brand-sub {
    font-size: 11.5px;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6; /* Tăng khoảng cách dòng để dễ đọc 2 hàng */
    font-weight: 500;
    display: block;
}

.brand-name { font-size: 38px; font-weight: 900; margin: 0; letter-spacing: 2px; }
.menu-title { font-family: cursive; font-style: italic; font-size: 48px; margin: -5px 0 15px 0; }

.hotline {
    font-weight: bold;
    font-size: 14px;
    border-top: 1px solid var(--text-color);
    display: inline-block;
    padding-top: 3px;
    margin-top: 5px;
}

/* Layout: Mặc định là 1 cột cho Mobile */
.menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section */
.section { margin-bottom: 15px; }
.section-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--line-color);
    margin-bottom: 12px;
    padding-bottom: 4px;
    background-color: rgba(0,0,0,0.03); /* Làm nổi bật tiêu đề vùng */
    padding-left: 5px;
}
.section-title span { margin-left: 8px; letter-spacing: 1px; }

/* Items */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
}
.item-name { max-width: 70%; }
.dots {
    flex-grow: 1;
    border-bottom: 1.5px dotted #a68d7a;
    margin: 0 8px;
}
.price {
    font-weight: 800;
    white-space: nowrap;
}

/* Footer */
.footer {
    margin-top: 30px;
    text-align: center;
    border-top: 2px solid var(--line-color);
    padding-top: 15px;
    font-size: 13px;
    font-weight: bold;
}
.footer div { margin-bottom: 5px; }

/* Tối ưu cho thiết bị rất nhỏ */
@media (max-width: 350px) {
    .brand-name { font-size: 26px; }
    .menu-item { font-size: 14px; }
}

/* Container chứa 3 nút trên 1 hàng */
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px; /* Khoảng cách nhỏ giữa các nút */
    margin-top: 15px;
    width: 100%;
    overflow: hidden; /* Tránh tràn ngang */
}

.contact-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: bold;
    font-size: 12px; /* Chữ nhỏ lại để vừa 1 hàng */
    padding: 8px 10px; /* Padding gọn lại */
    border-radius: 50px;
    transition: transform 0.2s;
    flex: 1; /* Chia đều chiều rộng cho 3 nút */
    white-space: nowrap; /* Không cho chữ xuống dòng */
    min-width: 0; /* Cho phép co giãn sâu */
}

.btn-phone { color: var(--text-color); border: 1.5px solid var(--line-color); }
.btn-facebook { background-color: var(--fb-color); color: white; border: 1.5px solid var(--fb-color); }
.btn-maps { background-color: var(--maps-color); color: white; border: 1.5px solid var(--maps-color); }

.contact-btn:active { transform: scale(0.95); }
.icon-svg { width: 14px; height: 14px; flex-shrink: 0; fill: currentColor; }

.btn-phone:active, .btn-facebook:active {
    transform: scale(0.95);
    opacity: 0.9;
}

.icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor; /* Tự động lấy màu theo màu chữ */
}
