body {
  margin: 0;
  background: #0e0e0e;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

.flyer {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.flyer img {
  width: 100%;
  height: auto;
  display: block;
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  margin: 24px 0;
}


/* TOPBAR */
.topbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar__inner{
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
}
.brand{
  display: flex;
  align-items: center;
}

.brand img{
  height: 36px;      /* możesz zmienić: 32–42px */
  width: auto;
  display: block;
}

/* @media (max-width: 480px){
  .brand img{
    height: 30px;
  }
} */


.topbar__links{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar__links a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.topbar__links a:hover{
  background: rgba(255,255,255,.08);
}

.topbar__links .btn{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}

.topbar__links .phone{
  font-weight: 700;
  background: rgba(255,255,255,.06);
}

/* Żeby content nie kleił się do topbara na małych ekranach */
.page{
  padding-top: 14px; /* masz już 16px — możesz to zostawić, jeśli OK */
}

.contact{
  padding: 16px;
  color: #fff;
}

.contact h1{
  margin: 0 0 10px;
  font-size: 22px;
}

.contact__line{
  margin: 0 0 12px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.map{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.map iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact__link{
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-weight: 600;
}

.contact__link:hover{
  text-decoration: underline;
}

.banner{
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.banner img{
  width: 100%;
  height: auto;
  display: block;
}
.banner--full{
  margin: 0 -16px 20px;
  border-radius: 0;
}

/* CTA ZAMÓW TERAZ */
.btn-order{
  background: linear-gradient(135deg, #ffb300, #ff8c00);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: .3px;
  box-shadow:
    0 6px 16px rgba(255,140,0,.35),
    inset 0 -2px 0 rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.btn-order:hover{
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(255,140,0,.45),
    inset 0 -2px 0 rgba(0,0,0,.2);
}

.btn-order:active{
  transform: translateY(0);
  box-shadow:
    0 4px 10px rgba(255,140,0,.3),
    inset 0 2px 0 rgba(0,0,0,.25);
}

@media (max-width: 480px){
  .btn-order{
    font-size: 15px;
    padding: 12px 18px;
  }
}

/* TELEFON CTA */
.phone-cta{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.2);
}

.phone-cta__label{
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  line-height: 1;
}

.phone-cta__num{
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.phone-cta:hover{
  background: rgba(255,255,255,.1);
}

.phone-cta:active{
  transform: translateY(1px);
}

@media (max-width: 480px){
  .phone-cta{
    padding: 10px 16px;
  }

  .phone-cta__num{
    font-size: 20px;
  }
}

.news{
  padding: 16px;
  color: #fff;
}

.news h1{
  margin: 0 0 16px;
}

.news__item h2{
  margin: 0 0 6px;
  font-size: 18px;
}

.news__meta{
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}

.news__item p{
  font-size: 14px;
  color: rgba(255,255,255,.9);
}

.news__item ul{
  margin: 10px 0 14px 18px;
  font-size: 14px;
}

.news__link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #ffb300;
}

.news__link:hover{
  text-decoration: underline;
}

/* GALERIA W AKTUALNOŚCIACH */
.news__gallery{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.news__gallery img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.5);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.news__gallery img:hover{
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.7);
}