/* ═══════════════════════════════════════════════════════════════
   HABIBAYAN NETWORKING PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

.hb-net-hero {
  background:
    linear-gradient(135deg, rgba(22, 33, 62, 0.88), rgba(15, 52, 96, 0.85)),
    url('/images/weave2.1.png') center / cover no-repeat;
  background-color: var(--ocean);
  padding: 56px 40px;
  text-align: center;
  color: white;
}

.hb-net-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: #fff;
}

.hb-net-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 300;
  margin: 0;
  color: #fff;
}

.hb-net-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
}

.hb-net-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.hb-net-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hb-net-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hb-net-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.hb-net-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 10px 0;
}

.hb-net-card .hb-net-contact {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.hb-net-card a {
  color: var(--sunset);
  text-decoration: none;
  transition: color 0.2s;
}

.hb-net-card a:hover {
  color: var(--sunset-dark);
  text-decoration: underline;
}

.hb-net-cta {
  background: linear-gradient(135deg, var(--ocean), var(--sky));
  padding: 60px 40px;
  text-align: center;
  margin-top: 40px;
}

.hb-net-cta h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.hb-net-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-weight: 300;
}

.hb-net-cta a {
  display: inline-block;
  background: var(--sunset);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(232,98,42,0.3);
}

.hb-net-cta a:hover {
  background: var(--sunset-dark);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

@media (max-width: 600px) {
  .hb-net-hero h1 { font-size: 1.8rem; }
  .hb-net-grid { grid-template-columns: 1fr; }
  .hb-net-card { padding: 20px; }
  .hb-net-cta { padding: 40px 20px; }
  .hb-net-cta h3 { font-size: 1.4rem; }
}
