/* Brutalist Photo Blast Section */
.photo-blast {
  background-color: #000;
  padding: 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.photo-blast-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 100px);
  gap: 0;
  position: relative;
}

/* Asymmetric brutalist layout - each photo has unique placement */
.photo-blast-item {
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  transition: none; /* No smooth transitions - instant change */
}

.photo-blast-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(60%) contrast(1.2);
  transition: filter 0.2s step-end;
}

.photo-blast-item:hover img {
  filter: grayscale(0%) contrast(1.3);
  transform: scale(1.05);
}

/* Specific brutal grid placements - asymmetric chaos */
.photo-blast-item:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  z-index: 2;
}

.photo-blast-item:nth-child(2) {
  grid-column: 4 / 9;
  grid-row: 1 / 4;
  z-index: 3;
  border-width: 5px;
}

.photo-blast-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
  z-index: 1;
}

.photo-blast-item:nth-child(4) {
  grid-column: 9 / 13;
  grid-row: 2 / 5;
  z-index: 4;
  border-color: var(--accent-color);
  border-width: 5px;
}

.photo-blast-item:nth-child(5) {
  grid-column: 1 / 5;
  grid-row: 3 / 5;
  z-index: 1;
}

.photo-blast-item:nth-child(6) {
  grid-column: 5 / 9;
  grid-row: 4 / 7;
  z-index: 5;
  border-width: 8px;
  border-color: var(--accent-color);
}

.photo-blast-item:nth-child(7) {
  grid-column: 1 / 4;
  grid-row: 5 / 7;
  z-index: 2;
}

.photo-blast-item:nth-child(8) {
  grid-column: 9 / 13;
  grid-row: 5 / 8;
  z-index: 3;
}

.photo-blast-item:nth-child(9) {
  grid-column: 4 / 7;
  grid-row: 7 / 9;
  z-index: 1;
  border-color: #fff;
}

.photo-blast-item:nth-child(10) {
  grid-column: 7 / 10;
  grid-row: 7 / 9;
  z-index: 2;
}

.photo-blast-item:nth-child(11) {
  grid-column: 1 / 4;
  grid-row: 7 / 9;
  z-index: 4;
}

.photo-blast-item:nth-child(12) {
  grid-column: 10 / 13;
  grid-row: 8 / 9;
  z-index: 1;
}

/* Overlay text - brutalist typography */
.photo-blast-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  mix-blend-mode: difference;
}

.photo-blast-overlay h2 {
  font-size: 8rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-shadow: 3px 3px 0 #000, -3px -3px 0 #000;
  margin: 0;
  border: none;
}

.photo-blast-overlay .subtitle {
  font-size: 1.5rem;
  color: var(--accent-color);
  background: #000;
  padding: 0.5rem 2rem;
  display: inline-block;
  margin-top: 1rem;
  border: 3px solid var(--accent-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .photo-blast-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(12, 80px);
  }

  .photo-blast-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
  .photo-blast-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 4; }
  .photo-blast-item:nth-child(3) { grid-column: 1 / 3; grid-row: 3 / 5; }
  .photo-blast-item:nth-child(4) { grid-column: 3 / 7; grid-row: 4 / 7; border-width: 5px; }
  .photo-blast-item:nth-child(5) { grid-column: 1 / 4; grid-row: 5 / 7; }
  .photo-blast-item:nth-child(6) { grid-column: 4 / 7; grid-row: 7 / 10; border-width: 5px; }
  .photo-blast-item:nth-child(7) { grid-column: 1 / 3; grid-row: 7 / 9; }
  .photo-blast-item:nth-child(8) { grid-column: 3 / 5; grid-row: 9 / 11; }
  .photo-blast-item:nth-child(9) { grid-column: 5 / 7; grid-row: 10 / 12; }
  .photo-blast-item:nth-child(10) { grid-column: 1 / 4; grid-row: 9 / 11; }
  .photo-blast-item:nth-child(11) { grid-column: 1 / 4; grid-row: 11 / 13; }
  .photo-blast-item:nth-child(12) { grid-column: 4 / 7; grid-row: 12 / 13; }

  .photo-blast-overlay h2 {
    font-size: 3rem;
  }

  .photo-blast-overlay .subtitle {
    font-size: 1rem;
  }
}
