/*
Theme Name: My Bootstrap Theme
Theme URI: http://example.com
Author: Girish Iyer
Version: 1.0
*/
/* Primary navbar */
.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 1rem;
}
/* --- Navbar alignment fix --- */
.navbar-nav {
  margin-left: auto !important;
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card-img-top {
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
/* Primary navbar link colors */
nav.navbar.bg-light .navbar-nav .nav-link {
  color: #212529;               /* dark gray text */
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Hover + focus effect */
nav.navbar.bg-light .navbar-nav .nav-link:hover,
nav.navbar.bg-light .navbar-nav .nav-link:focus {
  color: #0d6efd;               /* Bootstrap blue hover */
  /*border-bottom: 2px solid #0d6efd;*/
}

/* Active (current page) link */
nav.navbar.bg-light .navbar-nav .nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
}
/* Slightly gray background for the primary navbar */
nav.navbar.bg-light {
  background-color: #f8f9fa !important; /* Bootstrap’s light gray */
  border-bottom: 1px solid #dee2e6;
}
/* Secondary navbar background and style */
#secondaryNavbar {
  background-color: #ffffff !important;   /* pure white background */
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1020;
  position: relative;
}

/* Secondary menu links */
#secondaryNavbar .navbar-nav .nav-link {
  color: #212529;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

#secondaryNavbar .navbar-nav .nav-link:hover,
#secondaryNavbar .navbar-nav .nav-link:focus {
  color: #0d6efd;
}

/* Force pure white background for secondary navbar */
nav#secondaryNavbar,
nav.navbar.navbar-light.bg-light.border-top {
  background-color: #ffffff !important;
}

/* Optional: remove Bootstrap’s subtle border and replace with your own if needed */
nav.navbar.border-top {
  border-top: 1px solid #dee2e6 !important; /* soft gray divider */
}

/* Optional: adjust padding and shadow for clean look */
nav.navbar.navbar-light.bg-light {
  box-shadow: none;
  margin: 0;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.post-meta{
    display: none;
}

/* Body */
body, p, li {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #222; /* dark but soft, less harsh than pure black */
    background-color: #ffffff; /* content area white */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    color: #111; /* slightly darker than body */
}

/* Sidebar links */
#left-sidebar a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #007bff; /* blue for links */
}

/* Code blocks */
code, pre {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    background-color: #f5f5f5;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Buttons */
.btn, .post-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

footer {
    background-color: #343541; /* ChatGPT dark gray */
    color: #ececf1;
    padding: 40px 20px;
    text-align: left;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-widget {
    flex: 1 1 250px;
    min-width: 250px;
}

.footer-widget-title {
    color: #10a37f; /* ChatGPT green */
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ececf1;
    text-decoration: none;
}

.footer-widget a:hover {
    color: #10a37f;
}
/* Footer overall */
footer {
    background-color: #343541; /* ChatGPT dark gray */
    color: #ececf1;
    padding: 40px 20px;
}

/* Layout for widget area */
.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Widget box styling */
.footer-widget {
    flex: 1 1 250px;
    min-width: 250px;
}

/* Footer Titles */
.footer-widget-title {
    color: #10a37f;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Remove white background and default padding from nav menu */
.footer-widget ul,
.footer-widget li {
    list-style: none;
    margin: 0;
    padding: 0;
    background: none;
}

/* Make footer menu horizontal */
.footer-widget ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Footer menu links */
.footer-widget a {
    color: #ececf1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #10a37f;
}

/* Fix white block issue (for block editor output) */
.footer-widget .wp-block-navigation,
.footer-widget .wp-block-navigation__container {
    background: transparent !important;
}
/* Typography */
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #282A35;
  background-color: #fdfdfd;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #000;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}

a {
  color: #04AA6D;
  text-decoration: none;
}
a:hover {
  color: #059862;
  text-decoration: underline;
}

code, pre {
  font-family: Consolas, "Courier New", monospace;
  background-color: #f1f1f1;
  padding: 2px 4px;
  border-radius: 4px;
}

