/* =========================================================
   CYRTIX ACADEMY — RESOURCES PAGE
   Clean • Educational • Trust Building
========================================================= */

.resources-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0f1a, #0e1526);
  padding: 4rem 0;
  text-align: center;
}

.resources-title {
  padding-top: 4rem;
  font-size: 2.6rem;
  color: #e5e7eb;
}

.resources-subtitle {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: #9ca3af;
}

/* Sections */
.resources-section {
  padding: 4rem 0;
}

.resources-dark {
  background: #0b1020;
}


.resources-gradient {
  background: linear-gradient(135deg, #0a171a, #0e1026);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #e5e7eb;
}

.section-subtitle {
  text-align: center;
  color: #9ca3af;
  margin-top: 0.6rem;
}

/* Resource Grid */
.resources-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.resource-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(0,224,255,0.15);
}

.resource-card h3 {
  color: #00e0ff;
  margin-bottom: 0.6rem;
}

.resource-card p {
  color: #cbd5f5;
  margin-bottom: 0.8rem;
}

.resource-card ul {
  padding-left: 1.2rem;
  color: #9ca3af;
}

/* Free Resources */
.free-resources {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.free-resource {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.free-resource h4 {
  color: #00e0ff;
  margin-bottom: 0.4rem;
}

.free-resource p {
  color: #9ca3af;
}

/* CTA */
.resources-cta {
  background: linear-gradient(135deg, #111827, #0a0f1a);
  text-align: center;
  padding: 4rem 0;
}

.resources-cta h2 {
  color: #e5e7eb;
  font-size: 2rem;
}

.resources-cta p {
  color: #9ca3af;
  margin: 1rem 0 2rem;
}

/* Buttons */
.btn-primary {
  background: #00e0ff;
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
