
/* Base & background */
body {
  margin: 0;
  font-family: 'Share Tech Mono', monospace;
  background-image: url('dtmf1.gif');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #000;
}


/* Camera animation */
@keyframes fall {
  0%   { transform: translateY(-50px) rotate(0); opacity: 1; }
  100% { transform: translateY(300px) rotate(360deg); opacity: 0; }
}
.camera {
  position: absolute;
  top: -50px;
  font-size: 1.2em;
  animation: fall 5s ease-in infinite;
  pointer-events: none;
}
.camera1 { left: 10%; animation-delay: 0s; }
.camera2 { left: 30%; animation-delay: 1s; }
.camera3 { left: 50%; animation-delay: 2s; }
.camera4 { left: 70%; animation-delay: 3s; }
.camera5 { left: 90%; animation-delay: 4s; }

/* Container with nav & content */
.site-header {
  background-color: rgba(173, 216, 230, 0.75); /* robin’s egg blue with translucency */
  padding: 20px;
  text-align: center;
  
}
.site-header nav a {
  font-family: 'Share Tech Mono', monospace;
  color: #00334d;
  font-size: 1.1em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 0 12px;
  padding: 4px 8px;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  text-shadow: 0 0 3px #add8e6;
}
.site-header nav a:hover {
  color: #fff;
  background-color: #00334d;
  box-shadow: 0 0 8px #00ffffaa, inset 0 0 5px #00ffff55;
  text-shadow: 0 0 6px #00ffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(173, 216, 230, 0.75);
  padding: 7px;
  text-align: center;
  backdrop-filter: blur(5px); /* Optional: looks polished */
}


/* Page layout */

.scrap-container {
  width: 672px;              
  max-width: 95vw;           
  margin: 100px auto 20px;
  padding: 8px;
  border: 2px dashed yellow;
  height: calc(100vh - 44px);
  overflow-y: auto;
  box-sizing: border-box;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0;
  max-width: 672px;         
  margin: 0 auto;
}



@keyframes sway {
  0%   { transform: translateX(0) rotate(0); }
  100% { transform: translateX(10px) rotate(2deg); }
}


/* Photo wiggle */
.figs-img {
  width: 200px;
  transition: transform 0.3s;
  
}
.figs-img:hover {
  transform: rotate(-10deg) translateY(-5px);
}

/* Photo wiggle */
.figs-img,
.ozzy-img,
.nature-img {
  width: 280px;
  max-width: 100%;
  transition: transform 0.3s;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: block;
}

.photo {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}

.photo::before,
.photo::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 25px;
  background-image: url('washi1.png');
  background-size: cover;
  transform: rotate(-10deg);
  z-index: 2;
}

.photo::before {
  top: -12px;
  left: -10px;
}

.photo::after {
  top: -12px;
  right: -10px;
  transform: rotate(10deg);
}

.photo:hover {
  transform: rotate(-10deg) translateY(-5px);
}



/* Flicker Keyframes */

.flicker-temp {
  animation: flicker 0.25s ease-in-out;
}

@keyframes flicker {
  0% { opacity: 0.3; }
  30% { opacity: 1; }
  50% { opacity: 0.6; }
  70% { opacity: 1; }
  100% { opacity: 0.9; }
}

@media (max-width: 600px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }

  .site-header nav a {
    display: block;
    margin: 8px 0;
  }
}

img {
  max-width: 100%;
  height: auto;
}
html, body {
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 600px) {
  .photo {
    width: 90%;
    margin-bottom: 16px;
  }

  .figs-img,
  .ozzy-img,
  .nature-img {
    width: 100%;
  }

  .scrap-container {
    width: 95vw;
    height: auto; /* allow height to grow with content */
    margin: 100px auto 20px;
  }
}

