/* public/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0b0f19 0%, #1a2235 100%);
    color: #e2e8f0;
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* --- STYLING DENAH (LAYOUT) --- */
.denah-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #30363d;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Grid Pembungkus Room */
.room-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 kolom */
    gap: 15px;
}

/* Spesifik baris atas (Room 01-04) agar mepet kanan sesuai gambar */
.row-vip {
    grid-column: 2 / 6; /* Mulai dari kolom 2 agar kolom 1 kosong untuk meja admin */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

/* Dinding Pembatas Visual */
.divider-wall {
    grid-column: span 5;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 15px 0;
    position: relative;
}
.divider-wall::after {
    content: "DINDING PEMBATAS";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    background: #0b0f19;
    padding: 0 10px;
    color: #555;
}

/* Styling Kotak Ruangan */
.room-box {
    aspect-ratio: 4 / 3;
    border: 2px solid #00a8ff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 168, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.room-box:hover {
    background: rgba(0, 168, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
    transform: scale(1.05);
}

.room-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
}

.room-ps-label {
    font-size: 0.6rem;
    color: #00a8ff;
    text-transform: uppercase;
    font-weight: bold;
}

/* Penanda Meja Admin & Pintu */
.meja-admin {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border: 1px dashed #555;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #555;
}

.pintu-masuk {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #00439C;
    color: white;
    padding: 5px 20px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}