@charset "UTF-8";
/* CSS Document */



/*css*/

*{
	transition: 2s;
	box-sizing:border-box;
}

html{
	scroll-behavior: smooth;
	font-family: 'Potta One', sans-serif;
	font-size: 10px;
}

/*STYLE OGÓLNE desktop*/

body{}

img {
  width: 100%;
  height: auto;
  display: block;
}

#nawigacja{	
	min-height: auto;
	padding: 1rem 0;
}
	/* Style the links inside the pill navigation menu */
.pill-nav a {
  display: inline-block;
  color: black;
  text-align: center;
  margin: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 2.5rem;
  border-radius: 5px;
}

/* Change the color of links on mouse-over */
.pill-nav a:hover {
  background-color: #888888;
  color: white;
}

/* Add a color to the active/current link */
.pill-nav a.active {
  background-color: black;
  color: white;
}


/*WSZYSTKIE SEKCJE*/
section{
	min-height: 110vh;
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.zawartosc{
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	text-align: center;
}

/*POSZCZEGÓLNE SEKCJE*/
#bober{
	position: relative;
	background: none;
	padding: 0;
	min-height: auto;
}
#bober .zawartosc{
	position: relative;
	width: 100%;
	padding: 0;
}

#bober-img {
	width: 100%;
	height: auto;
	display: block;
}

#bober h1{
	position: absolute;
	bottom: 5%;
	right: 5%;
	font-size: 15vw;
}

#fakty {
	background-color: #000000;
	color: #fff
}
#fakty .zawartosc {
	padding: 10rem 2rem;
	gap: 1rem;
	color: #FFFFFF;
	font-size: 2rem;
}
#fakty h2 {
	font-size: 10rem;
	margin: 0;
}

#fakty img{
	width: 70%;
	max-width: 600px;
	margin: 0 auto;
	display: block;
}

#budowa {
	min-height: auto;
}

#budowa .zawartosc {
	font-size: 5rem;
}

#budowa img {
	max-width: 1500px;
}

#budowa h2 {
	text-align: center;
	font-size: 10rem;
	margin-bottom: 2rem;
	margin-top: 5rem;
	width: 100%;
}


#mapa {
	background-color: #000000;
}

#mapa .zawartosc{
}

#mapa h2 {
	font-size: 8rem;
	color: #FFFFFF;
	margin: 0;	
}

#mapa img {
	max-width: 800px;
	height: auto;
	display: block;	
}

.mapa-hover-container {
  position: relative;
  display: inline-block;
  max-width: 800px;
}

.mapa-hover-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.mapa-base {
  position: relative;
  z-index: 1;
}

.mapa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.mapa-hover-container:hover .mapa-overlay {
  opacity: 1;
}

#ciekawostki {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.ciekawostka1, .ciekawostka2, .ciekawostka3 {
  font-size: 2rem;
  line-height: 1.6;
  text-align: justify;
  padding: 1rem;
  margin-bottom: 2rem;
}

#ciekawostki h4 {
	font-size: 8rem;
}

.slideshow-container {
	width: 90%;
	max-width: 1000px;
	position: relative;
	margin: auto;
}

#wolanie {
  width: 100%;
  padding: 4rem 1rem;
}

#wolanie h4 {
  font-size: 6rem;
  margin-bottom: 3rem;
  text-align: center;
}

.wolanie-nakladka {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* lub 1/1 jeśli obrazki są kwadratowe */
}

.wolanie-nakladka img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .img-wrapper {
    flex: 1 1 90%;
  }
}

/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}

/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active, .dot:hover {
background-color: #717171;
}

/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

footer {
background-color: #000000;
color: #fff;
padding: 2rem 1rem;
text-align: center;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}

footer h5 {
font-size: 4rem;
margin-bottom: 1rem;
}

.footer-items {
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
gap: 4rem;
flex-wrap: wrap;
text-align: center;
}

.footer-items div {
font-size: 1.5rem;
}


/*******************************************/
/*******************R*W*D*******************/
@media all and (max-width:1000px){}/*koniec 1000px*/
@media all and (max-width:800px){}/*koniec 800px*/
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .pill-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: black;
    padding: 2rem 0;
    position: absolute;
    top: 6rem;
    right: 0;
    width: 100%;
    z-index: 999;
  }

  .pill-nav a {
    color: white;
    font-size: 3rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
  }

  .pill-nav.show {
    display: flex;
  }
}
@media all and (max-width:600px){
  /* inne style */
}
@media all and (max-width:400px){}/*koniec 400px*/
/*******************************************/
/*******************************************/

	
	
	
/*koneicz wersji mobilnej*/
