html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

/* Custom Navbar Brand Styles */
.custom-navbar-brand {
  text-decoration: none !important;
  color: #7c3aed !important; /* Purple to match logo */
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
}
/* Enhanced MakeMyLogoNow Brand Styles */
.custom-navbar-logo {
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  filter: none;
}
.brand-text {
  background: linear-gradient(90deg, #000000 0%, #7c3aed 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.7rem;
  margin-left: 0.5em;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  letter-spacing: -0.5px;
}

@media (max-width: 576px) {
  .custom-navbar-logo {
    width: 28px;
    height: 28px;
  }
  .brand-text {
    font-size: 1.4rem;
    margin-left: 0.4em;
  }
}

.custom-navbar-brand:hover, .custom-navbar-brand:focus {
  color: #5b21b6 !important;
  text-decoration: none;
}

/* Screen Reader Only - Hidden visually but available to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Modern Breadcrumb Styles */
.breadcrumb-section {
  padding: 1rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumb-link {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #94a3b8;
  font-weight: 300;
}

.breadcrumb-current {
  color: #475569;
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    font-size: 0.8rem;
    gap: 0.375rem;
  }
}