/* ===== PAGE STRUCTURE ===== */
.page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  color: #b80000;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  font-family: 'Poppins', Arial, sans-serif;
}

.page-subtitle {
  color: #555;
  text-align: center;
  font-size: 15px;
  margin-bottom: 40px;
}

/* ===== SECTION HEADINGS ===== */
.section-title {
  color: #b80000;
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 20px;
  border-left: 6px solid #b80000;
  padding-left: 12px;
  font-family: 'Poppins', Arial, sans-serif;
}

/* ===== ALBUM GRID ===== */
.album-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.album-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.album-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #b80000;
}

.album-card h3 a {
  color: inherit;
  text-decoration: none;
}

.album-card h3 a:hover {
  text-decoration: underline;
}

.album-card p {
  color: #666;
  margin-top: 6px;
  font-size: 14px;
}

/* ===== RESPONSIVE GRID ===== */

/* 🖥 Desktop: 4 per row */
@media (min-width: 1024px) {
  .album-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 💻 Tablets: 3 per row */
@media (max-width: 1023px) and (min-width: 769px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 📱 Mobile: exactly 2 per row */
@media (max-width: 768px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .album-card img {
    aspect-ratio: 1 / 1;
  }

  .album-card h3 {
    font-size: 15px;
  }

  .album-card p {
    font-size: 12px;
  }
}
