:root{
  --bg:#efe6db;
  --max:1440px;
  --nav-top:4.3vw;
  --nav-height:3.6vw;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{background:var(--bg);color:#111}
.wrapper{width:min(var(--max),100%);margin:0 auto;position:relative}
.wrapper img.full{display:block;width:100%;height:auto;border:0}
.hotspots{position:absolute; inset:0; z-index:5}
.navband{position:absolute; left:0; width:100%; top:var(--nav-top); height:var(--nav-height);}
.navlink{position:absolute; display:block; height:100%; cursor:pointer; text-indent:-9999px; overflow:hidden;}
.nav-omnie{left:0; width:25%}
.nav-oferta{left:25%; width:25%}
.nav-galeria{left:50%; width:25%}
.nav-kontakt{left:75%; width:25%}

/* ===== Style dla logo "Home" ===== */
.home-logo-link {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 10000;
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(239, 230, 219, 0.5);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, top 0.3s, left 0.3s;
}
.home-logo-link:hover {
  transform: scale(1.1);
}
.home-logo-link img {
  width: 100%;
  height: auto;
}

/* ===== SEKCJA RESPONSYWNA (DLA TELEFONÓW I TABLETÓW) ===== */
@media (max-width: 768px) {
  .home-logo-link {
    width: 60px;
    height: 60px;
    top: 15px;
    left: 15px;
    padding: 8px;
  }
  :root {
    --nav-top: 10vw;
    --nav-height: 8vw;
  }
}

/* ===== SEKCJA DLA BANERA COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.95);
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner-text {
  margin: 0;
  text-align: center;
  font-size: 14px;
}
.cookie-banner-text a {
  color: #fff;
  text-decoration: underline;
}
.cookie-banner-button {
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  background-color: #efe6db;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== SEKCJA DLA STOPKI ===== */
.site-footer {
  background-color: #e3d9cf; /* Kolor lekko ciemniejszy niż tło */
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #5c554e; /* Ciemniejszy, stonowany tekst */
  border-top: 1px solid #dcd1c5; /* Delikatna linia oddzielająca */
}
.site-footer a {
  color: #333; /* Kolor linku taki jak nagłówki */
  font-weight: 600;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}