/* =========================
   DEAD MEDIA MARKET STYLE
   ========================= */

body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #000000;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Subtle CRT flicker animation */
@keyframes flicker {
  0%   { opacity: 0.97; }
  50%  { opacity: 1; }
  100% { opacity: 0.98; }
}
.nowrap {
  white-space: nowrap;
}
/* Responsive image */
img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Retro link styling */
a {
  color: #ff0000;
  text-decoration: none;
  border-bottom: 2px solid #ff0000;
  transition: all 0.2s ease;
}

a:hover {
  color: #000;
  background-color: #ff0000;
}

/* =========================
   HEADER STYLING
   ========================= */

.site-header {
  width: 100%;
  border-bottom: 1px solid #000;
  padding: 15px 20px;
  box-sizing: border-box;
  animation: flicker 3s infinite; /* subtle flicker on header */
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;   /* stack logo + nav */
  align-items: center;      /* center horizontally */
  gap: 15px;
}

.logo a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
  border-bottom: 2px solid #ff0000;
}

/* =========================
   PAGE CONTENT
   ========================= */

.page-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.page-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* Desktop-only full screen centering for body (optional hero effect) */
@media (min-width: 768px) {
  body.homepage {   /* apply only on homepage if desired */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
.archive-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.archive-card {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #000;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.archive-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.archive-card h2 {
  margin: 10px 0 5px 0;
  font-size: 1.1rem;
}

.archive-card p {
  margin: 0 0 10px 0;
}

.archive-card .btn {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.archive-card .btn:hover {
  background-color: #000;
}
.vendor-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.vendor-card {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #000;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vendor-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.vendor-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.vendor-card h2 {
  margin: 10px 0 5px 0;
  font-size: 1.1rem;
}

.vendor-card p {
  margin: 0 0 10px 0;
}

.vendor-card .btn {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.vendor-card .btn:hover {
  background-color: #000;
}
.email-signup {
  margin-top: 100px;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.signup-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 2px solid #000;
  padding: 40px 30px;
  background: #fff;
}

.signup-inner h3 {
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.signup-inner p {
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.8;
}

.signup-inner iframe {
  border: none;
}
.signup-inner {
  box-shadow: 4px 4px 0 #000;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Optional: adjusts image size, ensure it's not 100% for centering to work */
}
/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 40px auto;
}

/* Remove all link styling inside gallery */
.gallery a,
.gallery a:visited,
.gallery a:hover,
.gallery a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  color: inherit !important;
  background: none !important;
}

/* Images inside gallery */
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  vertical-align: middle;
  cursor: pointer; /* optional, shows they’re clickable */
  transition: none; /* remove global hover transitions */
}