/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f6f2;
    color: #2c2c2c;
}

.hero-section {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('/images/cafe/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0 30px;
} */
/* yyyy */
body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #3e2723;
}

.navbar-brand,
.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #d7ccc8 !important;
}

.hero {
    min-height: 90vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 55px;
    font-weight: bold;
}

.hero p {
    font-size: 19px;
}

.btn-coffee {
    background-color: #6d4c41;
    color: white;
    border: none;
}

.btn-coffee:hover {
    background-color: #4e342e;
    color: white;
}

.section-title {
    color: #3e2723;
    font-weight: bold;
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #efebe9;
    color: #5d4037;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #6d4c41;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.cta {
    background-color: #3e2723;
    color: white;
}

footer {
    background-color: #211512;
    color: #ddd;
}

/* ================= DENAH MEJA ================= */

.table-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}

.table-card.is-locked {
    cursor: default;
}

.table-card.is-locked:hover {
    transform: none;
    box-shadow: none !important;
}

.table-card.status-tersedia {
    background-color: #eceff1;
    border-color: #90a4ae;
}

.table-card.status-proses_pembayaran {
    background-color: #e3f2fd;
    border-color: #1e88e5;
}

.table-card.status-dipesan {
    background-color: #e8f5e9;
    border-color: #43a047;
}

.table-card.status-tidak_aktif {
    background-color: #fff8e1;
    border-color: #fdd835;
}

.table-status-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-top: 8px;
}

.table-card.status-tersedia .table-status-badge {
    background-color: #cfd8dc;
    color: #37474f;
}

.table-card.status-proses_pembayaran .table-status-badge {
    background-color: #1e88e5;
    color: #fff;
}

.table-card.status-dipesan .table-status-badge {
    background-color: #43a047;
    color: #fff;
}

.table-card.status-tidak_aktif .table-status-badge {
    background-color: #fdd835;
    color: #5d4037;
}

.status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.status-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.status-dot.tersedia {
    background-color: #cfd8dc;
}

.status-dot.proses_pembayaran {
    background-color: #1e88e5;
}

.status-dot.dipesan {
    background-color: #43a047;
}

.status-dot.tidak_aktif {
    background-color: #fdd835;
}


/* ================= DETAIL MEJA ================= */

.table-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.table-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
}


.table-info-item i {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f1e7dc;
    color: #8b5e3c;

    border-radius: 8px;
}


.table-info-item strong {
    color: #333;
}