/* =============================================
   ARTICLES PAGE — articles.html
   Extends furniture.css, no overrides
   ============================================= */

/* Short header — no full-bleed hero needed */
.articles-header {
  height: 40vh;
  min-height: 280px;
  background: url("images/bedroom.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.articles-header .hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.articles-header .hero-content h1 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  text-transform: none;
  margin-bottom: 8px;
}

.articles-header .hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
}

/* Filter bar */
.articles-filter-section {
  padding: 55px 5% 0;
  max-width: 1200px;
  margin: 0 auto;
}

.articles-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.articles-filter-bar .filter-btn {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.articles-filter-bar .filter-btn:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.articles-filter-bar .filter-btn.active {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
  transform: translateY(-1px);
}
/* Articles grid section */
.articles-section {
  padding: 50px 8% 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.articles-grid {
  margin-top: 0;
}

/* Load more button */
.articles-load-more {
  text-align: center;
  margin-top: 60px;
}

.articles-load-more .btn-gold {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 45px;
}

@media (max-width: 768px) {
  .articles-filter-section {
    padding: 40px 20px 0;
  }
  .articles-section {
    padding: 40px 20px 60px;
  }
  .articles-header {
    height: 35vh;
  }
}
