/* Global box-sizing fix */
* {
  box-sizing: border-box;
}

/* Base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header section */
.header {
  text-align: center;
  padding: 0px;
}

/* Gallery container */
.strip.strip-gallery {
  background-color: #0e0e10;
}

/* Flexbox layout for photo grid */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0;
}

/* Individual image column */
.column {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 5px;
}

/* Image styling */
.column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  vertical-align: middle;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.column img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* Responsive layout */
@media (max-width: 800px) {
  .column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.full-width-image {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Caption */
.img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-container:hover img {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-container:hover .caption {
  opacity: 1;
}

