/* Custom Palette */
:root {
  --kyanos-red: #5F2E31;
  --kyanos-light: #fdfcfc;
  --text-main: #1a1a1a;
  --text-muted: #555;
}

/* Typography & Layout */
h2 {
  color: var(--kyanos-red);
  font-weight: 700;
  margin-top: 2rem;
}

#hero-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Button Styling */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  font-weight: 500;
  margin: 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--kyanos-red);
  color: white !important;
}

.btn-secondary {
  border: 1px solid var(--kyanos-red);
  color: var(--kyanos-red) !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(95, 46, 49, 0.3);
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-top: 3px solid var(--kyanos-red);
  border-radius: 0 0 8px 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top-width: 6px;
}

.card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--kyanos-red);
  margin-bottom: 0.5rem;
}

/* Call to Action Section */
.community-section {
  background: var(--kyanos-light);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #f0e6e6;
  margin-top: 4rem;
}

/* Social Links Overrides */
.about-links {
  justify-content: center !important;
  gap: 15px;
}

.about-link {
  border: 1px solid #ddd !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  color: var(--text-muted) !important;
}

.about-link:hover {
  background-color: var(--kyanos-red) !important;
  color: white !important;
  border-color: var(--kyanos-red) !important;
}