/* mobile.css
   Load with: media="(max-width: 768px)"
   This file should contain ONLY mobile overrides.
*/


/* ---- TOP BAR (mobile) ---- */
.topbar-inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;   
  align-items: center;
  justify-content: center;
  }


/* ---- TITLE IMAGE (mobile) ---- */
.topbar-title-image {
  height: 100%;
  max-height: 70px;
  width: auto;
}
/* match desktop padding to prevent clipping on mobile too */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #f0f0f0;
  z-index: 1000;
}


/* SUBNAV (mobile hamburger) */
.subnav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 48px;
  background: #f0f0f0;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  box-sizing: border-box;
}

.subnav-toggle {
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.subnav-list {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 58px 12px 10px; /* 48px menu bar + a little space */
  list-style: none;
  background: #f0f0f0;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  box-sizing: border-box;
  z-index: 901;
}

.subnav.is-open .subnav-list {
  display: block;
}

.subnav-list li {
  padding: 10px 0;
}

.subnav a {
  display: block;
  font-size: 16px;
  color: #222;
  text-decoration: none;
}



/* ---- PAGE BASE ---- */
body {
  margin: 0;
  padding-top: 110px;
}

.intro-content h1 {
  font-size: 1.8rem;
}

.intro-content p {
  font-size: 1rem;
  padding: 0 10px;
}




/* SERVICES (mobile) */
.services-grid {
  grid-template-columns: 1fr;
}


/* ---- PAGE CONTENT (mobile) ---- */
.page {
  padding: 14px 12px 34px;
}

.section {
  padding: 16px;
  border-radius: 14px;
}

.section-title {
  font-size: 20px;
}

.services-grid {
  grid-template-columns: 1fr;
}

.service-list li {
  gap: 10px;
}
/* PRODUCTS (mobile) */
.product-grid{
  grid-template-columns: 1fr;
}

/* YouTube Shorts: slightly tighter spacing on mobile */
.yt-short {
  margin: 6px 0 14px;
}

.yt-short-frame {
  width: 180px;
}