/* /sitesby/css/aesthetics.css */

/* Reset & Base */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Orbitron', sans-serif;
  /* Lighter gradient for aesthetic vibe */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
}

/* Canvas Background: Liquid Chrome */
canvas#liquid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

/* Floating Frame Container */
.frame-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
canvas#frame-scene {
  width: 800px;
  height: 500px;
  max-width: 90%;
  max-height: 70%;
}

/* Header Dropdown Styling */
.hud-desktop-menu li { position: relative; }
.hud-desktop-menu .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  white-space: nowrap;
  z-index: 1001;
}
.hud-desktop-menu .dropdown:hover .dropdown-content {
  display: block;
}
.hud-desktop-menu .dropdown-content li a {
  display: block;
  padding: 6px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}
.hud-desktop-menu .dropdown-content li a:hover {
  background: rgba(0,0,0,0.05);
}

/* Footer layering */
footer.qpai-footer {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  canvas#frame-scene {
    width: 90%;
    height: auto;
  }
}
