/* ============================
   mobile.css — wersja mobilna
   Działa tylko <720px
============================= */

body {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* NAV — hamburger menu */
.nav-toggle {
  display: block !important;
}

.main-nav {
  position: fixed !important;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #0a0a0a;
  transform: translateX(100%);
  padding: 28px;
  z-index: 9999;
  transition: transform .25s ease;
  overflow-y: auto;
}

.main-nav.open {
  transform: translateX(0);
}

.main-nav .nav-list {
  flex-direction: column;
  gap: 18px;
}

/* HERO */
.hero {
  grid-template-columns: 1fr !important;
  text-align: center;
  padding: 36px 0 !important;
}

.hero-right {
  text-align: center;
}

.hero-image {
  max-width: 300px;
  margin: 0 auto;
}

/* FEATURE LIST */
.feature-list li {
  white-space: normal;
  text-align: center;
}

/* ABOUT */
.about-flex {
  flex-direction: column !important;
  text-align: center;
  gap: 24px !important;
}

.stats-wrapper {
  flex-direction: column !important;
  gap: 16px;
}

/* MENU */
.menu-cards {
  grid-template-columns: 1fr !important;
}

/* GALLERY */
.gallery {
  grid-template-columns: 1fr !important;
}

.gallery img {
  height: 220px !important;
}

/* KONTAKT */
.kontakt-grid {
  grid-template-columns: 1fr !important;
}

.map-wrapper {
  height: 340px !important;
}

/* FOOTER */
.footer-inner {
  grid-template-columns: 1fr !important;
  text-align: center;
  gap: 18px;
}

.footer-actions,
.socials {
  justify-content: center !important;
}

.phone-link {
  padding: 6px 10px !important;
  font-size: 14px !important;
  gap: 6px !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: inline-flex;
  align-items: center;
}

.phone-link span {
  font-size: 14px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Optymalny układ w nagłówku */
.header-actions {
  gap: 6px !important;
  align-items: center;
}

.brand-title {
  font-size: 20px !important;
}

.btn.large { padding: 12px 16px !important; }
.card img { height: 180px !important; object-position: center; }

.gallery img, .card img { transition-duration: .28s !important; }
