/*
Theme Name: GeneratePress Child
Template: generatepress
Author: Niraj Mandal
Version: 1.0
Description: GeneratePress Child Theme for customizations.
*/

/* ==========================
   Breadcrumbs Styling
========================== */
.gp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 15px;
  margin: 0 0 16px 0;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}

.gp-breadcrumbs a {
  text-decoration: none;
  color: #2563eb;
  transition: color 0.3s ease;
}

.gp-breadcrumbs a:hover {
  color: #1e40af;
}

/* Breadcrumb divider */
.gp-breadcrumbs span,
.gp-breadcrumbs a + a:before {
  content: "›";
  margin: 0 6px;
  color: #9ca3af;
}

/* ==========================
   Footer Widgets Styling
========================== */
.footer-widgets .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-widgets .widget ul li {
  margin: 0;
  display: inline-block;
}

.footer-widgets .widget ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-widgets .widget ul li a:hover {
  text-decoration: underline;
}

/* ==========================
   Headings Styling
========================== */
h2 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* ==========================
   Responsive Adjustments
========================== */
@media (max-width: 680px) {
  .gp-breadcrumbs {
    font-size: 14px;
  }

  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
}
