/* ============================================================================
   FONTS
   ============================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Science+Gothic:wght@100..900&display=swap");

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */

:root {
  --font-family: "Science Gothic", sans-serif;
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */

html, body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body {
  position: relative;
  background: #000;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 2rem 2rem;
}

/* ============================================================================
   COLORS CANVAS
   ============================================================================ */

.colors-container {
  width: calc(100vw - 20rem);
  height: 100vh;
  cursor: move;
}

/* ============================================================================
   LOGO
   ============================================================================ */

.logo {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: url("/assets/images/colors/colors.png") no-repeat center center;
  background-size: cover;
  z-index: 999;
  cursor: pointer;
  transition: all 0.2s ease;
}
.logo:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* ============================================================================
   TOOLTIP STYLES
   ============================================================================ */

.tippy-box[data-theme~=custom] {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
}
.tippy-box[data-theme~=custom] .tippy-content {
  padding: 0.5rem 0.75rem;
}

/* ============================================================================
   RESPONSIVE STYLES
   ============================================================================ */

/* Mobile Styles (800px and below) */
@media (max-width: 800px) {
  /* Adjust canvas size for mobile with bottom GUI panel */
  .colors-container {
    width: 100vw;
    height: 50vh;
  }
}
