/* ============================================================
   RP NEXUS — HOME PAGE CSS
   ============================================================ */

/* ── Why Grid Items ───────────────────────────────────────── */
.why-grid {
  margin-top: var(--sp-4);
}

.why-item {
  padding: var(--sp-6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  transition:
    border-color var(--t-smooth),
    background var(--t-smooth);
}

.why-item:hover {
  border-color: var(--color-gold-border);
  background: rgba(214, 152, 6, 0.04);
}

.why-item__icon {
  width: 50px;
  height: 50px;
  background: rgba(214, 152, 6, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
  transition: background var(--t-smooth);
}

.why-item:hover .why-item__icon {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

.why-item__title {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--color-porcelain);
  margin-bottom: var(--sp-2);
}

.why-item__desc {
  font-size: var(--fs-sm);
  color: rgba(245, 243, 239, 0.55);
  line-height: var(--lh-relaxed);
}

/* ── Gallery Strip ────────────────────────────────────────── */
.home-gallery {
  overflow: hidden;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 300px;
}

.gallery-strip__item {
  overflow: hidden;
  position: relative;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.gallery-strip__item:hover img {
  transform: scale(1.06);
}

@media (max-width: 1024px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 240px;
  }
  .gallery-strip__item:nth-child(4),
  .gallery-strip__item:nth-child(5) {
    display: none;
  }
}

@media (max-width: 600px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
  }
  .gallery-strip__item:nth-child(3) {
    display: none;
  }
}
