/* ===================== CREATIVE PAGE SPECIFIC ===================== */

/* Hero Section */
.creative-hero {
  text-align: center;
  margin: 60px 0 40px 0;
}

.creative-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.creative-hero p {
  font-size: 1rem;
  color: #cfcfcf;
}

/* Creative Grid Layout */
.creative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.creative-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.creative-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.creative-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.creative-card p {
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 15px;
}

.creative-card a.secondary-btn {
  text-decoration: none;
  color: #fff;
  background: #555;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.creative-card a.secondary-btn:hover {
  background: #777;
}

/* Back Home Button */
.back-home {
  text-align: center;
  margin-bottom: 80px;
}

.back-home a.primary-btn {
  text-decoration: none;
  color: #fff;
  background: #222;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.back-home a.primary-btn:hover {
  background: #444;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .creative-card {
    padding: 20px;
  }

  .creative-hero h1 {
    font-size: 2rem;
  }
}