/* ===== GLOBAL ===== */
* {
  box-sizing: border-box;
}

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
}

/* ===== BANER ===== */
.banner img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* ===== HEADER ===== */
header {
  text-align: center;
  padding: 40px;
}

/* ===== H1 ===== */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* ===== OGŁOSZENIE ===== */
.ogloszenie {
  color: #c40000;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
  text-shadow: 0 6px 10px rgba(255,0,0,0.35);
}

/* ===== NAWIGACJA ===== */
nav {
  text-align: center;
  padding: 18px;
  background: #111;
  clear: both;
}

nav a {
  color: #d4af37;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
}

/* ===== SEKCJA ===== */
section {
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* ===== GALERIA ===== */
section .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

section .gallery a,
section .gallery div {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

section .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  transform-origin: 50% 50%;
}

section .gallery a:hover img,
section .gallery div:hover img {
  transform: scale(1.8);
}

/* ===== AKTUALNOŚCI ===== */
.aktualnosci-box {
  width: 20%;
  height: 5cm;
  float: left;
  margin: 20px 0 20px 20px;
  text-align: center;
}

.aktualnosci-box::after {
  content: "";
  display: block;
  clear: both;
}

.aktualnosci-tytul {
  color: #c40000;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-size: 14px;
}

.aktualnosci-box img {
  width: 100%;
  height: calc(5cm - 26px);
  object-fit: cover;
  border-radius: 8px;
}

/* ===== STOPKA ===== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #111;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(212,175,55,0.3);
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  margin: 0 auto;
}

.close-modal {
  margin-top: 20px;
  background: none;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* =====================================================
   ➕ DODANE: ZAPISY NA MASAŻ
   ===================================================== */

.zapisy-box {
  text-align: center;
  margin: 50px 0;
}

.zapisy-box a {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
  border: 2px solid #d4af37;
  padding: 18px 45px;
  display: inline-block;
  transition: all 0.3s ease;
}

.zapisy-box a:hover {
  background: #d4af37;
  color: #000;
}

/* =====================================================
   📞 TELEFON – IKONA PŁYWAJĄCA Z ANIMACJĄ
   ===================================================== */

.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: #d4af37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 10000;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* =========================
   📱 MOBILE
   ========================= */
@media (max-width: 768px) {

  header {
    padding: 20px 10px;
  }

  h1 {
    font-size: 32px;
  }

  .ogloszenie {
    font-size: 16px;
    padding: 0 12px;
  }

  nav a {
    display: block;
    margin: 10px auto;
  }

  section {
    padding: 20px 12px;
  }

  section .gallery {
    grid-template-columns: 1fr;
  }

  .aktualnosci-box {
    float: none;
    width: 90%;
    height: auto;
    margin: 20px auto;
  }

  .aktualnosci-box img {
    height: auto;
    max-height: 220px;
  }

  .modal-content {
    padding: 15px;
  }

  .zapisy-box a {
    font-size: 22px;
    padding: 14px 30px;
  }
}
/* ===== LIGHT BANER KONTAKT ===== */

.contact-banner {
  background: linear-gradient(90deg, #ffffff, #f5f5f5);
  padding: 25px 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.contact-content {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-content a {
  text-decoration: none;
  margin: 0 25px;
}

.contact-phone {
  color: #000;
}

.contact-ig {
  color: #b8860b;
}

.divider {
  color: #999;
}