/* Page-specific enhancements for cuckold-chat.html while respecting the site's base theme */

/* Hero banner */
.hero-banner {
  position: relative;
  background: url('images/cuckolddating500.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}
.hero-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.hero-content p {
  max-width: 800px;
  margin: 0 auto 18px;
}
.cta-btn {
  display: inline-block;
  background: #ff3b6e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s ease;
}
.cta-btn:hover { background: #e33261; }

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .image-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .image-grid { grid-template-columns: 1fr; }
}
.image-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.image-card .caption {
  padding: 10px 12px;
  font-size: .95rem;
  color: #555;
}

/* Section title spacing harmony */
.section-title h2 { margin-bottom: 6px; }
.section-title p { color: #666; }