@import url('styles.css');

/* GALLERY HERO */
.gallery-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero-overlay {
  background: rgba(58, 47, 40, 0.45); /* warm brown overlay */
  position: absolute;
  inset: 0;
}

.gallery-hero-content {
  position: relative;
  text-align: center;
  color: white;
}

/* GRID */
.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #E6DCCF; /* soft beige border */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05); /* warm soft shadow */
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 47, 40, 0.85); /* warm deep brown overlay */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25); /* warm soft shadow */
}
