/* ============================================
   SCENES LIST PAGE
   ============================================ */

/* Page Header */
.scenes-header {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 40px;
  background: var(--white);
  text-align: center;
}

.scenes-header__tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scenes-header__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
}

.scenes-header__desc {
  font-size: 16px;
  color: var(--secondary);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* Grid */
.scenes-grid {
  padding: 0 0 80px;
}

.scenes-grid .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Scene Card (large) */
.scene-item {
  position: relative;
  overflow: hidden;
  background: var(--card-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scene-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.scene-item__img {
  height: 360px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.scene-item__img .img-placeholder {
  position: absolute;
  inset: 0;
}

.scene-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scene-item:hover .scene-item__img img {
  transform: scale(1.05);
}

.scene-item__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scene-item__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.scene-item__desc {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.6;
}

.scene-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.scene-item__tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--light-gray);
  color: var(--secondary);
  border-radius: 2px;
}

.scene-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.scene-item__cta:hover {
  gap: 10px;
}

/* Bottom CTA */
.scenes-cta {
  background: var(--dark-bg);
  text-align: center;
  padding: 60px 0;
}

.scenes-cta__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.scenes-cta__desc {
  font-size: 15px;
  color: var(--tertiary);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.scenes-cta .btn {
  margin-top: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .scenes-header__title {
    font-size: 30px;
  }

  .scenes-grid .container {
    grid-template-columns: 1fr;
  }

  .scene-item__img {
    height: 240px;
  }

  .scene-item__body {
    padding: 24px;
  }

  .scene-item__title {
    font-size: 22px;
  }
}
