:root {
  --brand: #10b4b4;
  --dark: #222;
  --light: #f8f9fa;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: white;
  transition: box-shadow .3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.navbar-brand img {
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.nav-link {
  font-weight: 500;
}
.nav-link:hover,
.nav-link.active {
  color: var(--brand) !important;
}

/* Buttons */
.btn-teal {
  background: var(--brand);
  color: #fff;
  border: none;
  transition: 0.3s;
}
.btn-teal:hover {
  background: #0e9999;
  color: #fff;
}
.btn-outline-teal {
  color: var(--brand);
  border: 1px solid var(--brand);
  transition: 0.3s;
}
.btn-outline-teal:hover {
  background: var(--brand);
  color: #fff;
}

/* Hero Carousel */
.carousel-item img {
  height: 400px;
  object-fit: cover;
}

/* Info bar (Uwaga!) */
.info-bar {
  background-color: rgba(16,180,180,0.15);
  color: var(--dark);
  padding: 5px 0;
  overflow: hidden;
  position: relative;
}
.info-bar .scroll {
  white-space: nowrap;
  display: inline-block;
  animation: scrollText 18s linear infinite;
}
@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Headings */
h2 {
  color: var(--dark);
}

/* Cards 3D */
.card-3d {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-3d:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Table Cennik */
.table-wrapper {
  justify-content: center;
  text-align: center;
}
table {
  width: auto;
  margin: 0 auto;
}
.table td, .table th {
  padding: 12px 18px;
}
.table .badge {
  font-size: 1rem;
  background: var(--brand);
  color: #fff;
}
.table tr:hover {
  background: rgba(16,180,180,0.06);
}

/* Kontakt */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--light);
  color: #555;
}

/* Responsywność */
@media (max-width: 992px) {
  .navbar-brand span {
    font-size: 0.9rem;
  }
  .carousel-item img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .info-bar .scroll {
    animation-duration: 25s;
  }
  .map-container {
    height: 300px;
  }
}

/* --- Przycisk hamburger (ciemny, widoczny na jasnym tle) --- */
.navbar-toggler {
  border: none;
  background: none;
  outline: none;
}

.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23222' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34,34,34,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:hover .navbar-toggler-icon {
  opacity: 0.7;
}

/* --- Pływający przycisk "Zadzwoń" --- */
.call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--brand);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 2000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.call-btn:hover {
  transform: scale(1.08);
  background-color: #0e9999;
  color: #fff;
}
@media (max-width: 576px) {
  .call-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* --- Wyróżnienie "w jednym miejscu w jeden dzień" --- */
.highlight-badge {
  background-color: #fff6c2;
  color: #222;
  font-weight: 600;
  font-size: 1.05em;
  border-radius: 6px;
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.highlight-badge i {
  color: #e6b800;
  font-size: 1.1em;
}
/* --- Efekt 3D i animacja dla kart Aktualności --- */
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.blog-card img {
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.03);
}


