/* ===============================
   MOBILE CSS – v1.8 (RESPONSYWNY)
   =============================== */
/* ver. 1.8 */

:root {
  --kolor-jasny: #bf6637;
  --kolor-ciemniejszy: #9f5630;
  --kolor-szary: #1c201f;
  --kolor-ciemny: #2d2321;
}

/* ---------- Reset bazowy ---------- */

.body_mobile * {
  box-sizing: border-box;
}

.body_mobile img {
  display: block;
  max-width: 100%;
  height: auto;
}

.body_mobile {
  -webkit-text-size-adjust: 100%;
}

/* ---------- BODY ---------- */

.body_mobile {
  background-color: var(--kolor-szary);
  display: flex;
  justify-content: center;
}

/* ---------- GŁÓWNY KONTENER ---------- */

.body_mobile .mobile_container {
  font-family: "Calibri", sans-serif;
  font-size: 1rem;          /* KLUCZ: brak zoomu */
  color: white;

  width: 100%;
  max-width: none;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- SEKCJE ---------- */

.body_mobile .item {
  width: 100%;
  padding: 1.5rem 0;
}

.body_mobile .mnaglowek {
  padding-bottom: 2rem;
}

/* ---------- NAGŁÓWKI / GRAFIKI SEKCJI ---------- */


.body_mobile .img-rozdzial {
  width: clamp(10rem, 35vw, 14rem);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

/* ---------- SZNURKI (FB / YT / IG) ---------- */

.body_mobile .msznurki {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 90%;
  margin: 1.5rem auto;
}

.body_mobile .msznurek {
  flex: 1;
  display: flex;
  justify-content: center;
}

.body_mobile .msznurek img {
  height: clamp(3.5rem, 12vw, 5rem);
  width: auto;
}

/* ---------- MUZYKA (loga streamingów) ---------- */

.body_mobile .loga_wiersze {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;

  width: 90%;
  margin: 1.5rem auto;
}

.body_mobile .mlogo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.body_mobile .mlogo img {
  height: clamp(2.5rem, 10vw, 3.5rem);
  width: auto;

}

/* ---------- KONCERTY ---------- */

.body_mobile .mkoncerty {
  width: 90%;
  margin: 1.5rem auto;
  height: clamp(28rem, 65vh, 42rem);
}

.body_mobile .mkoncerty iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transform-origin: top center;
}

/* ---------- AKORDY ---------- */

.body_mobile .makordy {
  width: 60%;
  margin: 1.5rem auto;
}

/* ---------- KONTAKT ---------- */

.body_mobile .kontakt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body_mobile .memail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body_mobile .img-memail {
  width: 80%;
  margin-top: 1.5rem;
}

.body_mobile .subskrypcja {
  width: 80%;
  margin-top: 1.5rem;
}

/* ---------- ODSTĘPY ---------- */

.body_mobile .przerwa {
  height: 1.5rem;
}

/* ---------- STOPKA ---------- */

.body_mobile .mstopka {
  padding-top: 2rem;
}

/* ---------- LAYOUT SWITCH ---------- */

.body_mobile #layout-desktop,
.body_mobile #layout-mobile {
  display: none;
}

.body_mobile #layout-mobile {
  display: block;
}

.body_desktop #layout-desktop {
  display: block;
}

.body_mobile .przerwa {
  height: 3rem;
}

/* odstęp przed i po paskach – mobile */
.body_mobile .pasek {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}