body{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 18px;
	height: 100%;
	padding: 0;
	margin: 0;
	-moz-scrollbars-none;	/*Do chowania + to z :root scrollbara na wszystkich przeglądarkach*/
}

a:link, a:visited{
	color: black;
}

p{
	text-align: center;
	font-size: 30px;
}

/*------------------------------------------------------------------------ NAVBAR ---------------------------------------------------------------------------------------------------*/
.navbar{
	min-height: 60px;
	background-color: #000000;
	opacity: 90%;
	overflow: hidden;
}

.nav-item{
	font-size: 22px;
	margin-right: 60px;
	display: block;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

.nav-item:hover {
	border-bottom: 3px solid white;
	border-radius: 2px;
}

body::-webkit-scrollbar{
	display: none;
}

:root{
	scrollbar-width: none !important;
}

.logo{
	width: 500px;
}

/*------------------------------------------------------------------------ MAIN ------------------------------------------------------------------------------------------------------*/

.parallax0 {
  background-image: url("img/stairs/1.jpg");
  min-height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax1 {
  background-image: url("img/furniture/23.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text{
	min-height: 200px;
	background-color: white;
	font-size: 23px;
	margin: 10px;
}

.pHeader{
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-top: 18px;
	padding-bottom: 0;
	font-size: 28px;
	letter-spacing: 2px;
}

.line{
	margin-right: auto;
	margin-left: auto;
	border-bottom: 4px solid #4d2800;
	border-radius: 2px;
	margin-bottom: 10px;
}

/*------------------------------------------------------------------------ CONTACT ---------------------------------------------------------------------------------------------------*/
.container{
	background-color: white;
	border: 3px solid #4d2800;
	margin-top: 140px;
	margin-bottom: 50px;
	padding: 20px;
}

@media only screen and (max-width: 576px){
  .picture{
		text-align: center;
		font-size: 32px;
  }
	.textPicture{
		font-size: 28px;
		text-align: center;
	}
	@media only screen and (max-height: 720px){
		.bottomFooter{
			text-align: center;
			opacity: 80%;
			background-color: #000000;
			width: 100%;
		}
	}
	@media only screen and (min-height: 720px){
		.bottomFooter{
			opacity: 80%;
			position: fixed;
			left: 0;
			bottom: 0;
			width: 100%;
			background-color: #000000;
			text-align: center;
		}
	}
}

@media only screen and (min-width: 576px){
  .picture{
		text-align: center;
		font-size: 32px;
  }
	.textPicture{
		font-size: 28px;
		text-align: left;
	}
	@media only screen and (max-height: 720px){
		.bottomFooter{
			text-align: center;
			opacity: 80%;
			background-color: #000000;
			width: 100%;
		}
	}
	@media only screen and (min-height: 720px){
		.bottomFooter{
			opacity: 80%;
			position: fixed;
			left: 0;
			bottom: 0;
			width: 100%;
			background-color: #000000;
			text-align: center;
		}
	}
}

/*------------------------------------------------------------------------ PHOTOS ----------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 768px){
	.myImgs{
		width: 100%;
	  height: 180px;
	  border-radius: 10px;
	  object-fit: cover;
	  -webkit-transition: all .3s ease-in-out;
	  -moz-transition: all .3s ease-in-out;
	  -o-transition: all .3s ease-in-out;
	  -ms-transition: all .3s ease-in-out;
		cursor: pointer;
	}
	.close{
		position: absolute;
		top: 80px;
		right: 35px;
		color: #f1f1f1;
		font-size: 60px;
		font-weight: bold;
		-webkit-transform: 0.3s;
 	 	-moz-transform: 0.3s;
 	 	-o-transform: 0.3s;
 	 	transform: 0.3s;
	}
	.modal-content {
		 margin-top: 50px;
		 margin-left: auto;
		 margin-right: auto;
		 display: block;
		 width: 80%;
		 max-width: 500px;
		 animation-name: maxZoom;
		 animation-duration: 0.6s;
  }
}
@media only screen and (min-width: 768px){
	.myImgs{
		width: 100%;
	  height: 200px;
	  border-radius: 10px;
	  object-fit: cover;
	  -webkit-transition: all .3s ease-in-out;
	  -moz-transition: all .3s ease-in-out;
	  -o-transition: all .3s ease-in-out;
	  -ms-transition: all .3s ease-in-out;
		cursor: pointer;
	}
	.close{
		position: absolute;
		top: 100px;
		right: 50px;
		color: #f1f1f1;
		font-size: 60px;
	 	font-weight: bold;
		-webkit-transform: 0.3s;
	 	-moz-transform: 0.3s;
	 	-o-transform: 0.3s;
	 	transform: 0.3s;
	}
	.modal-content {
		 margin: auto;
		 display: block;
		 width: 40%;
		 max-width: 500px;
		 animation-name: maxZoom;
		 animation-duration: 0.6s;
  }
}
.myImgs:hover, .close:hover{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
@keyframes maxZoom{
	from {transform:scale(0)}
	to {transform:scale(1)}
}

.modal{
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.9);
}

.close:hover, .close:focus{
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

/*------------------------------------------------------------------------ FOOTER ----------------------------------------------------------------------------------------------------*/
.footerNormal{
	text-align: center;
	opacity: 80%;
	background-color: #000000;
	width: 100%;
}
