
/* Mobile Menu + Footer Contrast Fix */

/* Light mode footer text visibility */
html:not([data-theme="dark"]) footer,
body.light footer {
  color: #29453d !important;
}

html:not([data-theme="dark"]) footer p,
html:not([data-theme="dark"]) footer a,
html:not([data-theme="dark"]) footer span,
html:not([data-theme="dark"]) footer li,
body.light footer p,
body.light footer a,
body.light footer span,
body.light footer li {
  color: #4e655e !important;
}

/* Remove school name visually */
.school-name,
.footer-school,
.school-label {
  display: none !important;
}

/* Mobile drawer cleanup */
@media (max-width: 768px) {

  .mobile-menu i,
  .mobile-drawer i,
  .mobile-menu .icon,
  .mobile-drawer .icon,
  .mobile-menu svg,
  .mobile-drawer svg {
    display: none !important;
  }

  .mobile-menu,
  .mobile-drawer {
    backdrop-filter: blur(14px);
    border-radius: 28px !important;
  }

  .mobile-menu a,
  .mobile-drawer a {
    font-size: 1.08rem !important;
    font-weight: 700 !important;
    color: #14251f !important;
  }

  /* improve selected text contrast */
  .mobile-menu .muted,
  .mobile-drawer .muted,
  .mobile-menu .text-muted,
  .mobile-drawer .text-muted {
    color: #526861 !important;
  }
}


/* iOS Safari AI Assistant Zoom Fix */
.ai-assistant input,
.ai-assistant textarea,
.ai-chat-input,
.ai-assistant-panel textarea,
.ai-widget-panel textarea {
  font-size: 16px !important;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ai-assistant-panel,
  .ai-chat-panel,
  .ai-widget-panel {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    left: 12px !important;
    right: auto !important;
    transform: none !important;
    overflow-x: hidden !important;
  }

  .ai-assistant-panel * {
    max-width: 100%;
    box-sizing: border-box;
  }
}
