/* ==========================================================================
   madebyyash — 100% Accurately Mapped Corkboard & Desk Cutout Workspace
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Outfit', sans-serif;
  --accent-red: #ae5350;
  --accent-gold: #f4ab34;
  --transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #0b0a0e;
  font-family: var(--font-body);
  user-select: none;
  -webkit-font-smoothing: antialiased;
}

/* Full Screen Interactive Canvas Container */
.full-desk-canvas {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #0b0a0e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 100% Full Viewport Cover Wrapper — Zero Black Bars */
.desk-artwork-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Native WebP Image Tag — Cover Fit for 100% Full Screen Fill & Ultra Sharp Resolution */
.desk-bg-img {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Continuous Floating & Swaying Keyframe Animations */
@keyframes floatBobbing1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatBobbing2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatSwaying {
  0% { transform: translateX(0px) translateY(0px); }
  50% { transform: translateX(4px) translateY(-5px); }
  100% { transform: translateX(0px) translateY(0px); }
}

@keyframes fishBubble {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-4px); }
  100% { transform: scale(1) translateY(0); }
}

/* ==========================================================================
   STANDALONE CUTOUT LAYERS & HOVER POP-OUT EFFECTS
   ========================================================================== */

.cutout-layer {
  position: absolute;
  cursor: pointer;
  z-index: 50;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.cutout-layer img {
  width: 100%;
  height: auto;
  display: block;
}

.cutout-layer:hover {
  transform: scale(1.24) translateY(-16px) rotate(0deg) !important;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(254, 240, 138, 0.6)) !important;
  z-index: 250 !important;
  animation-play-state: paused !important;
}

/* 1. Rotary Telephone Cutout */
.cutout-phone {
  bottom: 0.5%;
  left: 3.4%;
  width: 25.2vw;
  max-width: 485px;
  transform-origin: bottom left;
}

/* 2. Pinned Specs & Docs Cutout */
.cutout-pinned-docs {
  top: 39.5%;
  left: 14.2%;
  width: 12.5vw;
  max-width: 240px;
  animation: floatBobbing1 4s ease-in-out infinite 0.2s;
}

/* 3. Friends & Dice Photos Cutout */
.cutout-friends-dice {
  top: 57.5%;
  left: 26.2%;
  width: 19.8vw;
  max-width: 380px;
  animation: floatBobbing2 4.4s ease-in-out infinite 0.5s;
}

/* 4. Game Night Note & Frame Cutout */
.cutout-game-night {
  top: 10.5%;
  left: 51.5%;
  width: 13.8vw;
  max-width: 265px;
  animation: floatBobbing1 4.5s ease-in-out infinite;
}

/* 5. Need Battery Sticky Note Cutout */
.cutout-need-battery {
  top: 16.5%;
  left: 68.8%;
  width: 5.5vw;
  max-width: 105px;
  animation: floatBobbing2 3.8s ease-in-out infinite;
}

/* 6. Arcade Photo Polaroid Cutout */
.cutout-arcade-photo {
  top: 15.5%;
  left: 75.2%;
  width: 8.8vw;
  max-width: 170px;
  animation: floatBobbing1 4s ease-in-out infinite 0.3s;
}

/* 7. Couple Photo Polaroid Cutout */
.cutout-couple-photo {
  top: 46.5%;
  left: 76.5%;
  width: 9vw;
  max-width: 175px;
  animation: floatSwaying 4.2s ease-in-out infinite 0.5s;
}

/* 8. Dog Swatch Cutout */
.cutout-dog-palette {
  top: 47%;
  left: 62.5%;
  width: 9.8vw;
  max-width: 190px;
  animation: floatBobbing2 4s ease-in-out infinite 0.2s;
}

/* 9. About Note Cutout */
.cutout-about-note {
  top: 17%;
  left: 26.5%;
  width: 6.5vw;
  max-width: 125px;
  animation: floatBobbing2 3.5s ease-in-out infinite;
}

/* 10. Sketch Note Cutout */
.cutout-sketch-note {
  top: 31%;
  left: 27%;
  width: 7.2vw;
  max-width: 140px;
  animation: floatBobbing1 4.2s ease-in-out infinite 0.4s;
}

/* 11. Find Us On Sheet Cutout */
.cutout-find-us-on {
  top: 61%;
  left: 53.5%;
  width: 11.2vw;
  max-width: 215px;
  animation: floatSwaying 3.6s ease-in-out infinite 0.2s;
}

/* 12. Feed the Fish Sticky Note Cutout */
.cutout-feed-the-fish {
  top: 66%;
  left: 72.5%;
  width: 5vw;
  max-width: 95px;
  animation: floatBobbing2 3.9s ease-in-out infinite 0.6s;
}

/* 13. Fishbowl Object Cutout — Perfectly Aligned */
.cutout-fishbowl {
  bottom: 0.5%;
  left: 80.2%;
  width: 14.8vw;
  max-width: 285px;
  animation: fishBubble 4s ease-in-out infinite;
}

/* Center Poster Hotspot Overlay */
.desk-hotspot {
  position: absolute;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
  z-index: 20;
}

.desk-hotspot:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.15) rotate(0deg) !important;
  z-index: 90 !important;
}

.hotspot-center {
  top: 36%;
  left: 35%;
  width: 32%;
  height: 22%;
  animation: floatBobbing1 4s ease-in-out infinite;
}

.hotspot-asbl {
  top: 21.5%;
  left: 15.5%;
  width: 7.5%;
  height: 14%;
  animation: floatSwaying 4.2s ease-in-out infinite;
}

/* Interactive Pop-up Modal Backdrop */
.desk-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 9, 14, 0.85);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.desk-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.desk-modal-card {
  background: #1c1a24;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

.desk-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.desk-modal-close:hover {
  background: var(--accent-red);
}
