/*----------------------------------------------------------------------------------------*
  TempikLabs CSS Stylesheet - Mobile Styles
  Created by: Bobby H.
  Contact: admin@tempiklabs.com
  Created: 11/11/2025

  Description: Core CSS styles for TempikLabs Website defining mobile overrides for layout
               and navigation styles.

  Change Log:
  Version 1.0.0 - 11/11/2025
                > Initial creation of stylesheet.
  

*-----------------------------------------------------------------------------------------*/

/* Disclaimer:  Mobile CSS is currently under development and may not cover all elements. 
   Please refer to layout.css and styles.css for complete styling information.  Currently,
   as of 11/24/2025, it is recommende to use desktop for best experience.
*/

/* ──────────────── Mobile Layout Overrides ──────────────── */
.mobile-nav-bar {
  display: none;
}

@media (max-width: 768px) {
  body{
    overflow-x: hidden;
    width: 0;
    height: 0;
    border: 0px;
  }
  .nav-bar {
    display: none;
  }
.header {
  margin-bottom: 1.5rem; /* or 0.25rem for a tighter gap */
}
.main {
  position: absolute;
  flex-grow: 1;
  min-height: 100vh;
  width: 100vw;
  bottom: 3vh;
  padding: 0;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 1rem));
  overflow-y: auto;
  overflow-x: hidden;
}

  .main img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

.mobile-nav-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 0 rem 1rem env(safe-area-inset-bottom, 1rem);
  background-color: var(--color-surface);
  border-top: 1px solid var(--main-border);
  border-bottom: 1px solid var(--main-border);
  z-index: 5;
}

  .mobile-nav-bar .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 5vh;
    bottom: 0.3vh;
  }

  .mobile-nav-bar .nav-icon {
    width: 6vw;
    max-width: 100%;
    object-fit: contain;
  }
/* Not sure about this.  Labels seeme redudant since using branded icons 
  .mobile-nav-bar .nav-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-0.75rem);
    background-color: var(--color-bg);
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 1;
    z-index: 15;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    color: var(--color-text);
    pointer-events: none;
  }*/
}