/* Custom site styles extracted from styles.css */

/* Add your .footer, .mobile-bottom-bar, and other custom rules here. */

@media (max-width: 767.98px) {
  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 56px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
  }
  .mobile-bottom-bar .nav-item {
    flex: 1;
    text-align: center;
    color: #222;
    font-size: 1.1rem;
    padding: 8px 0;
    text-decoration: none;
  }
  .mobile-bottom-bar .nav-item.active {
    color: #007bff;
    font-weight: bold;
  }
  nav:has(a[href='/']:not(.bottom-bar-item)) {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none !important;
  }
}

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+Tamil:400,500&display=swap');

html, body, * {
  font-family: 'Noto Sans Tamil', Arial, sans-serif !important;
} 