/* Styl podstawowy */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

img { max-width: 100%; height: auto; }

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* NAWIGACJA */
nav {
  background: #333;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

#nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

#nav-links li { margin: 0 15px; }

#nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

#nav-links li a:hover { color: #ff9800; }

/* Hamburger */
.menu-toggle {
  display: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
  }

  #nav-links.active { display: flex; }

  #nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .menu-toggle { display: block; }
}

/* HEADER + WIDEO */
#header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 60px; /* miejsce pod nav */
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 22px;
  margin: 0;
}

/* SEKCJE */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

/* BOX (jak wcześniej) */
.about-box {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.camp {
  width: 60%;
  background: #f4f4f4;
  padding: 20px;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* KONTAKT */
#contact { text-align: center; }

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a:hover { text-decoration: underline; }

/* POLITYKA (kliknij i rozwiń) */
.privacy-details {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: #f4f4f4;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.privacy-details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
}

.privacy-details summary::-webkit-details-marker { display: none; }

.privacy-details summary::after {
  content: " ▾";
  font-weight: 700;
}

.privacy-details[open] summary::after { content: " ▴"; }

.privacy-content { margin-top: 12px; }

/* STOPKA */
#footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

.social-media { margin-top: 10px; }

.social-media a {
  color: white;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

.social-media a:hover { color: #ffcc00; }

.footer-links {
  margin-top: 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 14px;
}

.footer-links a:hover { color: #ffcc00; }

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .about-box, .camp { width: 90%; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 18px; }
}