html, body {
  overflow-x: hidden;
}
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}


body {
  font-family: Arial;
  color:white;
  background:#1a1a1a;
  padding-top:70px;

  display:flex;
  flex-direction:column;
  min-height:100vh;
}


header {
  position:fixed;
  top:0;
  width:100%;
  height:70px;
  background:#111;
  border-bottom:2px solid orange;
  z-index:1000;
}


.nav {
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
  padding:0 20px;
}

.logo {
  color:orange;
  font-weight:900;
  font-size:20px;
  cursor:pointer;
}

nav ul {
  display:flex;
  list-style:none;
  gap:25px;
  align-items:center;
}

nav a {
  display:flex;
  align-items:center;
  height:70px;
  color:white;
  text-decoration:none;
  font-weight:700;
  position:relative;
  padding:0 5px;
  transition:0.3s;
}

nav a::after {
  content:"";
  position:absolute;
  bottom:15px;
  left:0;
  width:0;
  height:2px;
  background:orange;
  transition:0.3s;
}

nav a:hover::after {
  width:100%;
}

nav a:hover {
  color:orange;
}

.dropdown {
  display:flex;
  align-items:center;
  height:70px;
}

.mega-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #181818;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 999;
}

.mega-item {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition:0.2s;
}

.mega-item:hover {
  background: orange;
  color: black;
  transform:translateY(-3px);
}

.slider {
  height:400px;
  width:95%;
  max-width:1100px;
  margin:30px auto;
  border-radius:12px;
  overflow:hidden;
  position:relative;
}

.slide {
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:0.5s;
}

.slide.active {
  opacity:1;
}

.overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
}

.content {
  position:absolute;
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
}

.prev,
.next {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  background:#000;
  color:white;
  border:none;
  cursor:pointer;
}

.prev {
  left:10px;
}

.next {
  right:10px;
}

.prev:hover,
.next:hover {
  background:orange;
}


section {
  width:100%;
  padding:60px 20px;
}


#kontakt h2 {
  max-width:1100px;
  margin:0 auto 20px auto;
}

.kontakt {
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:40px;
  align-items:stretch;
}

.form-pro {
  flex:2;
  background:#222;
  padding:25px;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  gap:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  animation:fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity:0;
    transform:translateY(20px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

.form-pro input,
.form-pro textarea {
  background:#2a2a2a;
  border:1px solid #444;
  color:white;
  padding:14px;
  border-radius:10px;
  transition:0.2s;
}

.form-pro textarea {
  min-height:120px;
}

.form-pro input:focus,
.form-pro textarea:focus {
  border-color:orange;
  box-shadow:0 0 12px rgba(255,165,0,0.4);
  transform:scale(1.02);
}

#submitBtn {
  background:orange;
  border:none;
  padding:14px;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

#submitBtn:hover {
  transform:scale(1.05);
  box-shadow:0 0 15px rgba(255,165,0,0.5);
}

#submitBtn.sent {
  background:#00c853;
  color:white;
  box-shadow:0 0 15px rgba(0,255,100,0.6);
  transform:scale(1.05);
}


.g-recaptcha {
  margin-top:10px;
  transform:scale(0.95);
  transform-origin:left;
}

.form-status {
  display:flex;
  gap:12px;
}

.status-item {
  width:40px;
  height:40px;
  background:#333;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.status-item.active {
  background:#1f3d2b;
  color:#00ff88;
  box-shadow:0 0 10px #00ff88;
  transform:scale(1.1);
}

.status-item.loading {
  animation:pulse 1s infinite;
}

@keyframes pulse {
  0% { opacity:0.5; }
  50% { opacity:1; }
  100% { opacity:0.5; }
}

#formMsg {
  margin-top:10px;
  font-size:14px;
  opacity:0;
  transition:0.3s;
}

#formMsg.show {
  opacity:1;
}

.success { color:#00ff88; }
.error { color:#ff4d4d; }

.info {
  flex:1;
  background:#222;
  padding:30px;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  gap:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.info p {
  display:flex;
  gap:8px;
}

.hours {
  margin-top:15px;
  padding-top:10px;
  border-top:1px solid #333;
  font-size:13px;
  color:#ccc;
}

footer {
  margin-top:40px;
  background:#111;
  text-align:center;
  padding:20px;
  border-top:2px solid orange;
  color:#aaa;
}

@media(max-width:900px){
  .kontakt {
    flex-direction:column;
  }

  .slider {
    height:300px;
  }
}

@media(max-width:600px){
  nav ul {
    gap:15px;
  }

  .slider {
    height:250px;
  }
}

html, body {
  height:100%;
}

main {
  flex:1;
}

#cookie-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(3px);
  z-index:1999;
  display:none;
}

.cookie-banner {
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#111;
  border-top:2px solid orange;
  padding:20px;
  z-index:2000;

  transform:translateY(100%);
  transition:0.4s ease;
}

.cookie-banner.show {
  transform:translateY(0);
}

.cookie-inner {
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}


.cookie-inner p {
  color:#ccc;
  font-size:14px;
}


.cookie-buttons {
  display:flex;
  gap:10px;
}

.cookie-buttons button {
  padding:10px 18px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
  transition:0.3s;
}


#acceptCookies {
  background:orange;
  color:black;
}

#acceptCookies:hover {
  transform:scale(1.05);
  box-shadow:0 0 10px rgba(255,165,0,0.6);
}

#declineCookies {
  background:#333;
  color:white;
}

#declineCookies:hover {
  background:#444;
}

@media(max-width:700px){
  .cookie-inner {
    flex-direction:column;
    text-align:center;
  }

  .cookie-buttons {
    width:100%;
  }

  .cookie-buttons button {
    flex:1;
  }
}
#cookie-overlay {
  pointer-events: all;
}
#about h2 {
  max-width:1100px;
  margin:0 auto 25px auto;
  font-size:22px;  
  font-weight:800; 
  letter-spacing:0px;
}

.about-box {
  max-width:1100px;
  margin:auto;
  background:#222;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  animation:fadeIn 0.6s ease;
}

.about-box p {
  color:#ddd;
  line-height:1.8;
  font-size:18px; 
  font-weight:600;  
  letter-spacing:0.3px; 
}
.about-box:hover {
  box-shadow:0 0 20px rgba(255,165,0,0.2);
  transform:translateY(-2px);
  transition:0.3s;
}
@media(max-width:900px){
  .about-box {
    padding:20px;
  }
}

@media(max-width:600px){
  .about-box p {
    font-size:16px;
  }

  #about h2 {
    font-size:28px;
  }
}
/* ===== HALLOWEEN ELEMENTY (ukryte normalnie) ===== */
.ghost-text,
.ghost-fly {
  display: none;
}
.pumpkin-icon {
  display: none;
}
.hamburger {
  display: none;
}
@media(max-width:768px){

  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    background: #111;
    padding: 20px;
    gap: 20px;
    border-left: 2px solid orange;
  }

  nav ul.active {
    display: flex;
  }

}
@media(max-width:768px){

  body {
    overflow-x: hidden;
  }

  .nav {
    padding: 0 15px;
  }

  .logo {
    font-size: 16px;
  }

  nav ul {
    gap: 15px;
  }

  section {
    padding: 40px 15px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

}