/* assets/css/curtains-gallery.css */

/* Hero */
.fcg-hero {
  padding: 110px 0 25px;
  background: #eeeae2;
}
.fcg-hero h1 {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #2c2d84;
  font-size: 56px;
  line-height: 1.08;
}
.fcg-hero p {
  margin: 0;
  color: #4D4C4B;
  font-size: 16px;
  line-height: 1.7;
}

/* Section */
.fcg-section {
  padding: 36px 0 70px;
  background: #ffffff;
}

/* Grid */
.fcg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Item */
.fcg-item {
  background: #f6f1ea;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.fcg-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.fcg-item:hover img {
  transform: scale(1.03);
}

/* Load More Button */
.fcg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(44, 45, 132, 0.35);
  background: #fff;
  color: #2c2d84;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
.fcg-btn:hover {
  background: rgba(44, 45, 132, 0.06);
}

@media (max-width: 992px) {
  .fcg-hero h1 { font-size: 44px; }
  .fcg-grid { grid-template-columns: repeat(2, 1fr); }
  .fcg-item img { height: 240px; }
}

@media (max-width: 576px) {
  .fcg-hero { padding: 36px 0 20px; }
  .fcg-hero h1 { font-size: 34px; }
  .fcg-grid { grid-template-columns: 1fr; }
  .fcg-item img { height: 230px; }
}
