html {
  scroll-behavior: smooth;
}
.room-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);

  border-radius: 16px;
  padding: 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  gap: 16px;

  transition: all 0.3s ease-out;
}

.room-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);

  transform: scale(1.03);

  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.room-card i {
  width: 24px;
  height: 24px;
  color: rgb(96, 165, 250); /* Tailwind blue-400 */
}

.room-card h4 {
  color: white;
  font-size: 14px;
}

.room-card p {
  font-size: 12px;
  color: rgb(156, 163, 175); /* Tailwind gray-400 */
}

/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  z-index: 999;

  position: fixed;
}

/* CONTAINER */
.nav-container {
  position: relative;
  max-width: 1200px;
  margin: auto;

  height: 70px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;

  border-radius: 10px;

  background: linear-gradient(to bottom right, #3b82f6, #9333ea);

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

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text h1 {
  font-size: 18px;
}

.logo-text p {
  font-size: 11px;
  color: #888;
}

/* DESKTOP MENU */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;

  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.nav-links a:hover {
  color: white;
}

/* BUTTON */
.create-btn {
  padding: 8px 14px;

  border-radius: 9px;
  border: none;

  background: linear-gradient(to right, #2563eb, #9333ea);
  color: white;

  cursor: pointer;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.hamburger svg {
  width: 26px;
  height: 26px;
}

/* MOBILE MENU */
.mobile-menu {
  position: absolute; /* 🔥 KEY FIX */
  top: 56px; /* match navbar height */
  left: 0;
  right: 0;

  background: rgba(0, 0, 0, 0.95);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  padding: 18px 0;

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: all 0.25s ease;
}

.mobile-menu a {
  text-decoration: none;
  color: #ccc;
  font-size: 16px;
  font-weight: 600;
}

.mobile-menu a:hover {
  color: white;
}

.mobile-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* RESPONSIVE LOGIC 🔥 */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
