/* ===================== Global Gothic Vibes ===================== */
body {
    font-family: 'Cinzel Decorative', serif;
    margin: 0;
    background-color: #000;
    color: #f2d3d3;
    text-align: center; /* keep page title centered */
}

/* ===================== Page Title ===================== */
.page-title {
    font-size: 3rem;
    margin: 20px 0;
}

/* ===================== Back Home Button ===================== */
.back-home {
  display: flex;
  justify-content: flex-start; /* left-aligned */
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 20px;
}

.back-home a {
  text-decoration: none;
  color: #f4c2c2  !important; /* forces correct color */
  background-color: rgba(0, 0, 0, 0.65);
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: bold;
  font-size: clamp(1rem, 1vw, 1.2rem);
  transition: all 0.3s ease;
}

.back-home a:hover {
  background-color: #f4c2c2;
  color: #000 !important;
  box-shadow: 0 0 10px #f4c2c2;
}

/* ===================== Gallery Layout ===================== */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
    gap: 25px;
    padding: 20px;
}

/* Responsive tweaks */
@media (max-width: 1000px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr; /* 1 per row on phones */
  }
}

/* ===================== Art Card ===================== */
.art-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Images show their true monstrous form */
.art-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===================== Description Overlay ===================== */
.art-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 12px;
    color: #fff;
    text-align: left;
    box-sizing: border-box;
}

.art-overlay h2 {
    margin: 0;
    font-size: 1.1rem;
}

.art-overlay p {
    margin: 4px 0 0;
    font-size: 0.9rem;
}

