/* ============================================================
   MOBILNA WROTKARNIA – style.css
   ============================================================ */

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #1a1025;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(80px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ── SCROLL REVEAL ── */
.sr-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION SLIDE-IN ── */
.section-slide-pending {
  will-change: transform, opacity;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-slide-pending.slide-from-left {
  opacity: 0;
  transform: translateX(-40px);
}

.section-slide-pending.slide-from-right {
  opacity: 0;
  transform: translateX(40px);
}

.section-slide-pending.slide-from-bottom {
  opacity: 0;
  transform: translateY(60px);
}

.section-slide-pending.slide-scale-up {
  opacity: 0;
  transform: scale(0.95) translateY(40px);
}

.section-slide-pending.section-slide-in {
  opacity: 1;
  transform: none;
}

.child-slide-pending {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.child-fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .section-slide-pending,
  .child-slide-pending {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Zapobiega poziomemu overflow (slide-from-right animations, rm-photos itp.) */
main {
  overflow-x: hidden;
  max-width: 100%;
}

/* ================================================================
   NAVBAR
   ================================================================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#main-header.scrolled {
  background: #3db6e9;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 130px;
  background: transparent;
  transition: height 0.4s ease;
}

#main-header.scrolled .top-bar {
  height: 90px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.top-bar-right {
  gap: 16px;
}

.top-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.logo--icon img {
  height: 110px;
  width: auto;
  transition: height 0.4s ease;
  animation: slideInLeft 0.8s ease forwards;
}

.logo--text img {
  height: 80px;
  width: auto;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
  transition: opacity 0.3s ease, height 0.4s ease;
}

.logo--fu img {
  height: 76px;
  width: auto;
  transition: height 0.4s ease;
  animation: slideInRight 0.8s ease forwards;
}

#main-header.scrolled .logo--icon img {
  height: 70px;
}

#main-header.scrolled .logo--fu img {
  height: 62px;
}

/* Scrolled: hide text logo, show inline nav */
.top-bar-scrolled-nav {
  display: none;
}

#main-header.scrolled .logo--text {
  display: none;
}

#main-header.scrolled .top-bar-scrolled-nav {
  display: block;
}

.top-bar-scrolled-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.top-bar-scrolled-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}

.top-bar-scrolled-nav a:hover {
  background: rgba(0, 0, 0, 0.10);
}

/* Bottom navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px 0 10px;
  background: transparent;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 60px;
  overflow: hidden;
}

#main-header.scrolled .navbar {
  opacity: 0;
  max-height: 0;
  padding: 0;
  pointer-events: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 7px 16px;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* ================================================================
   HERO DIVIDER
   ================================================================ */
.hero-divider {
  height: 7px;
  background: linear-gradient(90deg, #3db6e9 0%, #7c4fa0 50%, #3db6e9 100%);
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 80px 40px;
  overflow: hidden;
  background: #1a1025;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.62) 40%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: fadeUp 1s ease both;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #3db6e9;
}

.btn {
  display: inline-block;
  background: #3db6e9;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  background: #2aa3d8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61, 182, 233, 0.45);
}

/* ================================================================
   RUCH / MUZYKA / ZABAWA
   ================================================================ */
#ruch-muzyka {
  position: relative;
  width: 100%;
  height: clamp(540px, 60vw, 760px);
  overflow: hidden;
}

.rm-center-photo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: clamp(280px, 40vw, 600px);
  height: 100%;
  z-index: 1;
  background: #2d1b45;
}

.rm-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rm-center-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 16, 37, 0.65) 75%, rgba(26, 16, 37, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.rm-photo {
  position: absolute;
  overflow: hidden;
  z-index: 6;
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.18);
}

.rm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.rm-photo:hover img {
  transform: scale(1.06);
}

.rm-photo--tl {
  left: 0;
  top: 0;
  width: 17%;
  height: 52%;
  transform: rotate(-1.5deg);
  transform-origin: top left;
}

.rm-photo--bl {
  left: 0;
  bottom: 0;
  width: 30%;
  height: 46%;
  transform: rotate(1deg);
  transform-origin: bottom left;
}

.rm-photo--tr {
  right: 0;
  top: 0;
  width: 30%;
  height: 48%;
  transform: rotate(1.5deg);
  transform-origin: top right;
}

.rm-photo--br {
  right: 0;
  bottom: 0;
  width: 18%;
  height: 56%;
  transform: rotate(-1deg);
  transform-origin: bottom right;
}

.rm-text-overlay {
  position: absolute;
  bottom: clamp(24px, 5%, 56px);
  left: 65%;
  transform: translateX(-20%);
  z-index: 5;
  text-align: left;
  line-height: 1;
  pointer-events: none;
  animation: fadeUp 0.7s 0.25s ease both;
}

.rm-text-overlay .word-ruch {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 6rem);
  color: #7c4fa0;
  display: block;
  letter-spacing: -1px;
}

.rm-text-overlay .word-muzyka {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  color: #1a1025;
  display: block;
  letter-spacing: 3px;
  margin-top: -4px;
}

.rm-text-overlay .word-zabawa {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.6vw, 1.2rem);
  color: #555;
  display: block;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 6px;
}

.rm-galeria-btn {
  display: inline-block;
  margin-top: 16px;
  background: #3db6e9;
  color: #1a1025;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 50px;
  pointer-events: all;
  box-shadow: 0 4px 16px rgba(61, 182, 233, 0.40);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.rm-galeria-btn:hover {
  background: #7c4fa0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 79, 160, 0.35);
}

.rm-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #3db6e9;
  color: #1a1025;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(61, 182, 233, 0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.rm-nav-btn:hover {
  background: #7c4fa0;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(124, 79, 160, 0.40);
}

.rm-nav-btn--prev {
  left: 16px;
}

.rm-nav-btn--next {
  right: 16px;
}

#rm-img-center,
#rm-img-tl,
#rm-img-bl,
#rm-img-tr,
#rm-img-br {
  transition: opacity 0.45s ease;
}

#rm-img-center.rm-fading,
#rm-img-tl.rm-fading,
#rm-img-bl.rm-fading,
#rm-img-tr.rm-fading,
#rm-img-br.rm-fading {
  opacity: 0;
}

.rm-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.rm-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(61, 182, 233, 0.35);
  border: 2px solid #3db6e9;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.rm-dot--active {
  background: #3db6e9;
  transform: scale(1.25);
}

/* ================================================================
   JAK TO DZIAŁA
   ================================================================ */
#jak-to-dziala {
  padding: 80px 40px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 170px;
}

.jtd-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0;
  color: #7c4fa0;
  display: block;
  margin-bottom: 6px;
}

.jtd-sub {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1a1025;
  display: block;
  margin-bottom: 60px;
}

.jtd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.jtd-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.jtd-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}

.jtd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jtd-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a1a2e;
  margin: 0;
}

.jtd-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jtd-card ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #444;
  padding-left: 22px;
  position: relative;
}

.jtd-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #7c4fa0;
  font-size: 0.85rem;
}

/* ================================================================
   FORMAT / OFERTA
   ================================================================ */
#format {
  background: #f9f6ff;
  padding: 100px 80px;
  text-align: center;
  scroll-margin-top: 170px;
}

.fmt-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  color: #7c4fa0;
  line-height: 1.1;
  display: block;
}

.fmt-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1a1025;
  display: block;
  margin-bottom: 60px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.format-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.format-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(124, 79, 160, 0.18);
}

.format-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8dff5 0%, #c9eaea 100%);
}

.format-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.format-card:hover .format-card-img img {
  transform: scale(1.05);
}

.format-card-img .fc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.70), transparent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.format-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.format-card-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.72;
  flex: 1;
}

.format-full-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #3db6e9;
  color: #fff;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 6px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(61, 182, 233, 0.35);
  box-sizing: border-box;
}

.format-full-btn:hover {
  background: #2aa3d8;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(61, 182, 233, 0.5);
}

/* ================================================================
   DLA KOGO
   ================================================================ */
#oferta {
  background: #fff;
  padding: 100px 80px;
  text-align: center;
  scroll-margin-top: 170px;
}

.oferta-heading-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: #7c4fa0;
  display: block;
  margin-bottom: 6px;
}

.oferta-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1a1025;
  display: block;
  margin-bottom: 56px;
}

.oferta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.oferta-card--simple {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.oferta-card--simple:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(124, 79, 160, 0.18);
}

.oferta-card--simple img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.oferta-card--simple:hover img {
  transform: scale(1.04);
}

.oferta-card--simple h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  margin: 16px 14px 18px;
  color: #1a1025;
  line-height: 1.35;
}

/* ================================================================
   CO ZAPEWNIAMY
   ================================================================ */
#co-zapewniamy {
  background: #fff;
  scroll-margin-top: 170px;
}

.cz-hero-wrap {
  position: relative;
  display: block;
}

.cz-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px 50px;
  box-sizing: border-box;
}

.cz-hero-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.0rem, 4.5rem, 7rem);
  color: #f6ffcd;
  line-height: 1.25;
  margin: 0;
}

.cz-hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: linear-gradient(135deg, #2d1b45 0%, #1a5f5f 100%);
}

.cz-content {
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cz-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #7c4fa0;
}

.cz-col h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1025;
  margin-bottom: 20px;
  text-align: left;
}

.cz-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cz-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: #333;
  line-height: 1.55;
}

.cz-list li::before {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
  content: '•';
}

/* ================================================================
   O NAS
   ================================================================ */
#o-nas {
  background: #fff;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  scroll-margin-top: 170px;
}

#o-nas h2 {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-align: left !important;
  margin-bottom: 4px;
  display: block !important;
  color: #7c4fa0 !important;
}

.o-nas-image {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 20px;
  overflow: visible;
  background: linear-gradient(135deg, #e8dff5 0%, #c9eaea 100%);
}

.o-nas-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 16px 50px rgba(124, 79, 160, 0.14);
  transition: opacity 0.4s ease;
  display: block;
}

.o-nas-image img.ona-fading {
  opacity: 0;
}

.ona-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #3db6e9;
  color: #1a1025;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(61, 182, 233, 0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  line-height: 1;
  padding: 0;
}

.ona-nav-btn:hover {
  background: #7c4fa0;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.ona-nav-btn--prev {
  left: 16px;
}

.ona-nav-btn--next {
  right: 16px;
}

.ona-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 10;
}

.ona-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.ona-dot--active {
  background: #fff;
  transform: scale(1.25);
}

.o-nas-text .ona-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: #7c4fa0;
  margin-bottom: 18px;
}

.o-nas-text p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

.ona-flowup-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1025;
  margin: 8px 0 14px;
}

.ona-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ona-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.55;
}

.ona-list li::before {
  content: '•';
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ================================================================
   KONTAKT
   ================================================================ */
#kontakt {
  background: #fff;
  padding: 100px 80px;
  text-align: center;
  scroll-margin-top: 170px;
}

#kontakt .kt-over {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1a1025;
  margin-bottom: 30px;
  display: block;
}

#kontakt .kt-big {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.2;
  background: linear-gradient(90deg, #7c4fa0 0%, #f7836a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 50px;
  padding-bottom: 0.15em;
}

.btn-contact-cta {
  display: inline-block;
  background: transparent;
  color: #3db6e9;
  border: 2px solid #3db6e9;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 50px;
  transition: all 0.25s;
  margin-bottom: 56px;
}

.btn-contact-cta:hover {
  background: #3db6e9;
  color: #1a1025;
}

.kt-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.kt-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kt-person {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kt-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c4fa0, #3db6e9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  overflow: hidden;
  flex-shrink: 0;
}

.kt-avatar img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
}

.kt-person-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1025;
  display: block;
}

.kt-person-role {
  color: #888;
  font-size: 0.85rem;
}

.kt-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.kt-details a,
.kt-details span {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1025;
  transition: color 0.2s;
}

.kt-details a:hover {
  color: #3db6e9;
}

.kt-instagram-widget {
  min-height: 300px;
}

.kt-instagram-widget iframe {
  width: 100%;
  border: none;
  overflow: hidden;
  border-radius: 12px;
}

/* ================================================================
   PHOTO ROW LIGHTBOX
   ================================================================ */
#prl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

#prl-lightbox.active {
  display: flex;
}

.prl-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 92vh;
}

#prl-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.prl-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.prl-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.prl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.prl-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.prl-prev {
  left: -58px;
}

.prl-next {
  right: -58px;
}

.prl-counter {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #3db6e9;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.footer-social {
  margin-bottom: 8px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  margin: 0 12px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

/* ================================================================
   HAMBURGER BUTTON
   ================================================================ */
.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  flex-shrink: 0;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   MOBILE NAV OVERLAY
   ================================================================ */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 37, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1099;
}

#mobile-nav-overlay.is-open {
  display: flex;
}

#mobile-nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

#mobile-nav-overlay ul li a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

#mobile-nav-overlay ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #3db6e9;
}

#mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

#mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   RESPONSIVE — 768px tablet + mobile
   ================================================================ */
@media (max-width: 768px) {

  /* Header */
  .top-bar {
    padding: 0 16px;
    height: 68px !important;
  }

  #main-header.scrolled .top-bar {
    height: 68px !important;
  }

  /* Gradient na transparentnym headerze – hamburger zawsze widoczny */
  #main-header:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.40) 0%, transparent 100%);
  }

  .logo--icon img {
    height: 50px;
  }

  .logo--text img {
    height: 40px;
  }

  #main-header.scrolled .logo--icon img {
    height: 46px;
  }

  /* Ukryj logo FlowUp na mobile – hamburger zajmuje jego miejsce */
  .logo--fu {
    display: none;
  }

  /* Na mobile po scrollowaniu: pokaż logo tekstowe w środku */
  #main-header.scrolled .logo--text {
    display: flex;
  }

  .navbar {
    display: none !important;
  }

  #main-header.scrolled .top-bar-scrolled-nav {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  /* Hero */
  #hero {
    padding: 0 24px 40px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }

  /* ── RUCH MUZYKA ZABAWA: jedno duże zdjęcie, teksty na zdjęciu ── */
  #ruch-muzyka {
    height: 520px;
    background: #1a1025;
  }

  .rm-photo--tl,
  .rm-photo--bl,
  .rm-photo--tr,
  .rm-photo--br {
    display: none !important;
  }

  .rm-center-photo {
    width: 100%;
    left: 0;
    transform: none;
    height: 100%;
  }

  /* gradient od dołu żeby tekst był czytelny */
  .rm-center-fade {
    background: linear-gradient(to bottom,
        transparent 30%,
        rgba(26, 16, 37, 0.55) 65%,
        rgba(26, 16, 37, 0.92) 100%);
  }

  .rm-text-overlay {
    left: 20px;
    right: 20px;
    bottom: 52px;
    transform: none;
    text-align: left;
    width: auto;
    padding: 0;
    pointer-events: none;
  }

  .rm-text-overlay .word-ruch {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  }

  .rm-text-overlay .word-muzyka {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }

  .rm-text-overlay .word-zabawa {
    font-size: 0.68rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.80);
  }

  .rm-galeria-btn {
    pointer-events: all;
    margin-top: 14px;
  }

  .rm-nav-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
  }

  .rm-nav-btn--prev {
    left: 8px;
  }

  .rm-nav-btn--next {
    right: 8px;
  }

  .rm-dots {
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Jak to działa */
  #jak-to-dziala {
    padding: 80px 20px 60px;
  }

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

  /* Format section */
  #format {
    padding: 60px 20px;
  }

  .format-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Oferta */
  #oferta {
    padding: 60px 20px;
  }

  /* Single column on mobile — 2-col was too narrow/squished */
  .oferta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reduce massive letter-spacing on long uppercase labels to prevent overflow */
  .jtd-sub,
  .fmt-sub,
  .oferta-label,
  #kontakt .kt-over {
    letter-spacing: 2px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Co zapewniamy – niższy obrazek, czytelny napis */
  #co-zapewniamy .cz-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
  }

  .cz-hero-img {
    height: 200px;
  }

  .cz-hero-overlay {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%);
    padding: 0 20px;
    align-items: center;
    justify-content: center;
  }

  .cz-hero-text {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
  }

  /* O nas – zdjęcie na dole, po tekście */
  #o-nas {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 32px;
  }

  .o-nas-text {
    order: 1;
  }

  .o-nas-image {
    order: 2;
    height: 300px;
  }

  /* Kontakt – wycentrowany */
  #kontakt {
    padding: 60px 20px;
  }

  .kt-bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .kt-contact-info {
    align-items: center;
  }

  .kt-person {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .kt-details {
    align-items: center;
  }

  .kt-avatar {
    width: 140px;
    height: 140px;
  }

  .kt-avatar img {
    height: 140px;
  }

  /* Footer */
  footer {
    height: auto !important;
    padding: 24px 0;
  }

  /* Wyłącz translateX na mobile – compositing layer omija overflow:hidden
     i powoduje biały gap po prawej. Tylko opacity. */
  .section-slide-pending.slide-from-left,
  .section-slide-pending.slide-from-right,
  .section-slide-pending.slide-from-bottom,
  .section-slide-pending.slide-scale-up {
    transform: none !important;
  }
}

/* ================================================================
   RESPONSIVE — 480px small phone
   ================================================================ */
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  .top-bar {
    padding: 0 12px;
    height: 58px !important;
  }

  #main-header.scrolled .top-bar {
    height: 58px !important;
  }

  .logo--icon img {
    height: 40px;
  }

  #main-header.scrolled .logo--icon img {
    height: 36px;
  }

  .hamburger-btn {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

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

  /* Tighten letter-spacing even further on very small screens */
  .jtd-sub,
  .fmt-sub,
  .oferta-label,
  #kontakt .kt-over {
    letter-spacing: 1px;
  }

  .footer-social a {
    font-size: 1.2rem;
    margin: 0 10px;
  }
}