@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

*{
	transition: 1s;
	box-sizing: border-box;
}
html{
	font-family: 'Manrope', sans-serif;
	scroll-behavior: smooth;
}
body{}

nav{
	background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

	padding: 10px;
	position: fixed;
	width: 100%;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 3px solid white;
	box-shadow: 0 4px 0 black;
	
}
.logo{}
nav ol{
	display: flex;
	gap: 2vw;
	justify-content: center;
	align-items: center;
}
nav ol li{}
nav ol li a{
	color: #fff;
	display: block;
	padding: 10px 20px;
	font-weight: 500;
	justify-content: center;
	border-radius: 20px;
	align-items: center;
	border: 3px solid white;
	box-shadow: inset 0 0 0 3px black;
}
nav ol li a:hover{
	background-color: #FFF;
	color: #222;
	border-radius: 20px;
	border: 3px solid white;
	box-shadow: inset 0 0 0 3px black;
}

.language-switch{
  justify-content: center;
  text-align: center;
}
.language-switch a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  margin: 0 5px;
	padding: 10px 5px;
  justify-content: right;
	display: inline-block;
}
.language-switch a.active {
  font-weight: bold;
  text-decoration: underline;
  justify-content: right;
}
.przyciski-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: black;
    flex-direction: column;
    width: 20%;
    display: none;
    padding: 20px;
    gap: 20px;
  }

.przyciski-nav.show {
  display: flex;
}
nav ol {
    flex-direction: column;
    gap: 10px;
  }
section{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	scroll-margin-top: 56px;
}


.zawartosc{

	width: 100%;
}


#pierwsza{
	background: url('../img/tlo.jpg') no-repeat center center fixed;
	background-size: cover;
	width: auto;
	min-height: 90vh;
}
#pierwsza .zawartosc{
	max-width:60%;
}
#pierwsza h3{
	text-align: center;
	font-family: "Petit Formal Script", serif;
	font-size: 60px;
	font-weight: 500;
	color: white;
	padding: 20px;
	margin-top: 250px;

	text-shadow:
		-1px -1px 0 black,
		 1px -1px 0 black,
		-1px  1px 0 black,
		 1px  1px 0 black;
}
.mobile{
  display: none;
}
#pierwsza strong{
font-weight: bold;
}

#pierwsza h4 {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: black;
  border: 3px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
  max-width: 300px;
  text-align: center;
}
#pierwsza h4:hover{
background: white;
  color: black;
  border-color: black;

}

#druga{
	background: rgb(127,217,221);
	background-image: url('../img/tlo2.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 90vh;
	display: flex;
	position: relative;
	color: white;
}
#druga .zawartosc{
	display: flex;
	align-items: center;
  justify-content: center;
	gap: 5vh;
  max-width: 1400px;
  width: auto;
}

#druga main{
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 4px 0 black;
	padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 3px solid white;
  border-radius: 40px;
  max-width: 400px;
  line-height: 140%;;
}
#druga main:hover{
	padding: 40px;
}
.tytul{
	font-family: "Petit Formal Script", serif;
  font-weight: 400;
  font-size: 35px;
	font-weight: 500;
	color: white;
}

.tytul strong{
	font-weight: bold;
}

#druga .logo{
	backdrop-filter: blur(12px);
	border-radius: 400px;
}



#trzecia{
	background-color: #462a4d;
	min-height: 110vh;
	flex-direction: column;
	color: white;
}

.tytul2{
	font-family: "Petit Formal Script", sans-serif;
  font-weight: 550;
  font-style: normal;
	font-size: 50px;
	width: 100%;

	text-align: center;

	text-shadow:
		-1px -1px 0 black,
		 1px -1px 0 black,
		-1px  1px 0 black,
		 1px  1px 0 black;
}

.tytul2 strong{
	font-weight: bold;
}

#trzecia img{
	width: 100%;
}

#trzecia .zawartosc{
	display: flex;

	gap: 40px;
	align-items: stretch;
  flex-wrap: wrap;
  padding: 40px;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid white;
	box-shadow: 0 4px 0 black;
}

#trzecia article{
	flex: 1 1 300px;
	color: white;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#trzecia article h2{
	font-size: 25px;
	font-weight: bold;
	margin: 50px 0;
	display: flex;
	align-items: center;
	gap: 5vh;
	justify-content: center;

	text-shadow:
		-1px -1px 0 black,
		 1px -1px 0 black,
		-1px  1px 0 black,
		 1px  1px 0 black;
	
}

#trzecia article p{
	line-height: 140%;
	margin-bottom: 20px;
	font-weight: 300;
	text-align: center;
}

#trzecia article h3{
	scale:20%;
	margin-top: -100px;
	margin-bottom: -150px;
}

.wiecej {
  text-align: center;
  font-weight: bold;
  color: white;
  background: black;
  border: 3px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  width:25%;
}

a{
	color:lightgray; 
	font-weight: 500;
}
a:hover{
	color:white;
}

#czwarta {
  background-color: black;
  color: white;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

#czwarta .left {
  flex: 1 1 300px;
  max-width: 600px;
  margin-left: 100px;
}

#czwarta h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 700;
}

#czwarta h2 span {
  font-weight: 200;
  font-size: 60px;
  display: block;
}

#czwarta p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 400px;
}

#czwarta .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#czwarta .social-icons img {
  width: 40px;
  height: 40px;
}

#czwarta .right {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right:100px;
}

#czwarta form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#czwarta input[type="email"] {
  padding: 15px 25px;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 30px;
  background: black;
  color: white;
  outline: none;
}

#czwarta button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: black;
  background: white;
  border: 3px solid black;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#czwarta button:hover {
  background: black;
  color: white;
  border-color: white;
}

}

#stopka {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  background-color: dimgrey; 
  color: #fff; 
}

#stopka .zawartosc h1 {}

#stopka .zawartosc p {
  margin: 5px 0 0 0; 
  font-size: 14px; 
}

.stopka-prawo {
  display: flex; 
  gap: 120px; 
}

.stopka-kolumna {
  text-align: left; 
}

.stopka-kolumna p {
  margin: 15px 0; 
  font-size: 16px; 
}

.hamburger {
  display: flex;
  float: right;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  display: block;
  border-radius: 2px;
  box-shadow: 0 3px 0 black;
}

.przyciski-nav.show {
  display: flex;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

  border-bottom: 3px solid white;
	box-shadow: 0 4px 0 black;

}

/* MOBILE */
@media (max-width: 768px) {
  #pierwsza .zawartosc{
	max-width:90%;
}
  .mobile {
    display: block;
  }
  .przyciski-nav {
    width: 100%;
  }

  #czwarta .left{
    margin-left: 0;;
  }
}