/* Global Styles */
body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: #2c2c99;
  color: white;
}

/* Window Bar */
.window-bar {
  background: #7d3fb0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 4px solid #000;
}

/* Window Buttons */
.window-buttons {
  display: flex;
  gap: 6px;
}

.window-buttons div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #e74c3c; }
.yellow { background: #f1c40f; }
.green { background: #2ecc71; }

/* Navigation */
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 12px;
}

.nav-links div {
  padding: 5px 10px;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}

.nav-links div:hover {
  color: yellow;
  background-color: #4a2974;
}


.title-wrapper {
  text-align: center;
  margin-top: 50px;
}


/* Container */
.container {
  text-align: center;
  padding: 40px 20px;
  background: #3498db;
  border: 10px solid #000;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 10px 0 #000;
}

.container-2 {
text-align: center;
  padding: 40px 20px;
  background: #FE7743;
  border: 10px solid #000;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 10px 0 #000;
}

/* Title */
.title {
  font-size: 40px;
  color: yellow;
  text-shadow: 4px 4px 0 #c0392b;
  margin-bottom: 40px;
  text-align: center;
}

.title-photo (
  text-align: center;
 font-size: 40px;
  color: yellow;
  text-shadow: 4px 4px 0 #c0392b;
  margin-bottom: 40px;
)


.title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

/* Menu Buttons */
.menu button {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  margin: 15px 0;
  padding: 12px 24px;
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.1s ease-in-out;
  background: transparent;
  text-shadow: 2px 2px 0 #000;
}

.menu a.secondary {
  display: inline-block;
  text-decoration: none;
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  margin: 15px 0;
  padding: 12px 24px;
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.1s ease-in-out;
  background: transparent;
  text-shadow: 2px 2px 0 #000;
}

.menu a.secondary:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 #000;
  background-color: #f44336;
}

.menu a.secondary.selected {
  background: #e74c3c;
  color: white;
  text-shadow: none;
}

.menu a.secondary.selected:hover {
  background: #e74c3c;
  box-shadow: 2px 2px 0 #000;
}

/* Hover Effect */
.menu button:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 #000;
  background-color: #f44336;
}

/* Selected Button */
.menu button.selected {
  background: #e74c3c;
  color: white;
  text-shadow: none;
}

.menu button.selected:hover {
  background: #e74c3c;
  box-shadow: 2px 2px 0 #000;
}

/* Slideshow */


.slideshow {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #222;
  border-radius: 8px;
}

.slides img {
  width: 100%;
  display: none;
  border-radius: 8px;
}

.slides img.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.7);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  user-select: none;
}

.prev:hover, .next:hover {
  background-color: rgba(255,255,255,0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

  /* Photo */
.reel-container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 50px;
}

.film-reel {
  background: #222;
  border-left: 10px dashed #666;
  border-right: 10px dashed #666;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.frame {
  width: 300px;
  height: 200px;
  background: #000;
  border: 6px solid #ccc;
  box-shadow: 0 0 10px #000;
  padding: 5px;
  position: relative;
}

.frame::before,
.frame::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #000;
  border: 2px solid #ccc;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.frame::before {
  left: -25px;
}
.frame::after {
  right: -25px;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}


.frame {
  position: relative;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 8px;
}

.image-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: white;
}

.image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-link:hover img {
  transform: scale(1.05);
  opacity: 75%;
}

.overlay-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10; /* Ensure it's above the image */
  pointer-events: none; /* So it doesn't interfere with clicking */
}

.image-link:hover .overlay-title {
  opacity: 1;
}

/* Graphic Design Gallery */
.arcade-museum-gallery {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  background: repeating-linear-gradient(
    45deg,
    #111,
    #111 20px,
    #151515 20px,
    #151515 40px
  );
  padding: 50px 20px;
  border-top: 4px double #0ff;
  border-bottom: 4px double #f0f;
  scroll-snap-type: x mandatory;
}

.gallery-scroll {
  display: flex;
  gap: 50px;
  padding-bottom: 10px;
}

.gallery-frame {
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: #000;
  padding: 12px;
  border: 4px solid #0ff;
  border-radius: 12px;
  box-shadow: 0 0 20px #0ff, inset 0 0 10px #00f;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #f0f, inset 0 0 15px #f0f;
}

.gallery-frame img {
  height: 200px;
  display: block;
  margin: 0 auto;
  border: 2px solid #222;
}

.gallery-caption {
  margin-top: 10px;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #0ff;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 6px 10px;
  border-top: 2px solid #f0f;
  border-bottom: 2px solid #f0f;
  box-shadow: 0 0 5px #f0f;
}

