/* ============================================
   MySocialGroove — Custom Theme
   ============================================ */

/* -- Google Font families applied -- */
h1, h2, h3, h4, h5, h6, .navbar-brand span {
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #f7f7f7;
}

/* -- Navbar -- */
.navbar-custom {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  transition: color 0.2s;
}
.navbar-custom .nav-link:hover {
  color: #fff !important;
}

/* -- Branded accent (replaces bg-info on headers) -- */
.bg-brand {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%) !important;
}

/* -- Venue cards -- */
.venue-card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.venue-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* -- Category cards -- */
.card-category {
  margin-bottom: 20px;
}

/* -- Progress bars for polls -- */
.progress-bar.bg-brand {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%) !important;
}
