/* Pengaturan Dasar & Font */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #fdf6f6; /* Latar belakang pink sangat muda */
    color: #4f4f4f;
    margin: 0;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 1200px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 48px;
}

header h1 {
    font-size: 2.5rem;
    color: #e57373; /* Merah muda tua */
    margin-bottom: 8px;
    font-weight: 800;
}

header p {
    font-size: 1.1rem;
    color: #757575;
}

/* Judul Section */
section h2 {
    font-size: 1.8rem;
    color: #ffb74d; /* Oranye pastel */
    border-bottom: 3px dashed #ffcc80;
    padding-bottom: 8px;
    margin-bottom: 24px;
    font-weight: 700;
}

/* Grid untuk Kartu Ruangan */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Styling Kartu Ruangan */
.room-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.room-icon {
    font-size: 4rem; /* Ukuran ikon hewan (emoji) */
    line-height: 1;
    margin-bottom: 16px;
}

.room-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5c6bc0; /* Biru indigo muda */
    margin-bottom: 20px;
}

/* Tombol */
.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn {
    font-family: 'Nunito', sans-serif;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #81c784; /* Hijau muda */
    color: white;
}

.btn-primary:hover {
    background-color: #66bb6a;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #555;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Styling Khusus untuk Kartu VIP */
.room-card.vip {
    background: linear-gradient(135deg, #fffde7 0%, #fff3e0 100%); /* Gradien kuning muda */
    border: 2px solid #ffd54f; /* Border emas */
}

/* Pita VIP */
.room-card.vip::before {
    content: 'VIP';
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #ffd54f; /* Emas */
    color: #6d4c41; /* Coklat tua */
    padding: 6px 12px;
    border-radius: 0 0 0 12px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
}

.room-card.vip .room-name {
    color: #c88719;
}

header {
    text-align: center;
    margin-bottom: 48px;
}

header h1 {
    font-size: 2.5rem;
    color: #e57373; /* Merah muda tua */
    margin-bottom: 8px;
    font-weight: 800;
}

header p {
    font-size: 1.1rem;
    color: #757575;
    margin-bottom: 24px; /* Tambah margin bawah */
}


/* 👇 BLOK KODE BARU UNTUK FITUR CARI 👇 */
.search-container {
    margin: 0 auto;
    max-width: 500px;
}

#searchInput {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #ffcc80; /* Border oranye pastel */
    border-radius: 28px; /* Membuatnya sangat bulat */
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

#searchInput:focus {
    border-color: #ffb74d;
    box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.3);
}

.not-found-message {
    display: none; /* Sembunyikan secara default */
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #9e9e9e;
    padding: 40px 20px;
}
/* 👆 BATAS AKHIR BLOK KODE BARU 👆 */


/* ... (sisa kode CSS lainnya tetap sama) ... */