
/* RESET I BLOKADA PRZESUWANIA */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0c0c0c;
  color: #eee;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  text-align: center;
}
.hero {
  background: url('images/logo2.png') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}
#hero-slider { position: relative; overflow: hidden; }
#hero-slider .slide img {
  width: 100%; height: auto;
  display: block;
}
#hero-slider .overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
#hero-slider .overlay h1 {
  font-size: 2.5rem; margin-bottom: 1rem;
}
#hero-slider .overlay .btn {
  background: #b18e43;
  padding: .8rem 1.5rem;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
#map { width: 100%; height: 400px; margin-top: 3rem; }
#googleMap { width: 100%; height: 100%; }
#hero { width: 100%; height: 400px; margin-top: 3rem; }

.logo {
  width: 100%;
  margin-bottom: 20px;
}
h1 {
  color: white;
  font-size: 2.5em;
}
.cta {
  margin-top: 20px;
  display: inline-block;
  background: #d4af37;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
section.gray {
  background: #1a1a1a;
}
.oferta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.oferta img {
  width: 60px;
  margin-bottom: 10px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}
.gallery img {
  width: 100%;
  border-radius: 4px;
}
form {
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
input, textarea {
  padding: 10px;
  background: #111;
  color: white;
  border: 1px solid #444;
  border-radius: 4px;
}
button {
  background: #d4af37;
  color: black;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 30px;
  background: #000;
  color: #999;
}
.menu {
  background-color: #0b0b0b;
  color: #d4af37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-logo {
  font-size: 1.1rem;
  font-weight: bold;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}

.menu-list li a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-list li a:hover {
  color: #ffffff;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #d4af37;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-list {
    display: none;
    flex-direction: column;
    background-color: #0b0b0b;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    padding: 1rem;
    z-index: 999;
    text-align: center;
  }

  #menu-toggle:checked + .menu-icon + .menu-list {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
