@charset "utf-8";
/* GENERAL */

body {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
	font-size: 18px;
}
.clear {
	clear: both;
}
hr {
	border: dashed 1px #a1886f;
}

/* HEADER */

.header__logo__wrapper {
	background-color: #1A1A1A;
	background-image:  url("images/trojkaty-ciemny.png");
	background-size: 100%  auto;
	padding: 10px 0;
}
.header__logo {
	display: block;
	width: 350px;
	max-width:  60%;
	height: auto;
	margin: 0 auto;
}
.header__usp__wrapper {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto;
	background-color: #FFFFFF;
}
.header__usp {
	padding: 0 20px;
	text-align: center;
}
.header__usp h1 {
	text-transform: uppercase;
	font-weight: 400;
	font-size:  24pt;
	line-height: 1.2em;
	margin: 0.3em;
	word-spacing: 20px;
}
.header__usp h2 {
	font-size: 36pt;
	line-height: 1.2em;
	margin: 0.3em;
}

/* CONTENT */

.content__wrapper {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}
.content__left_column {
	background-color: #FFFFFF;
	position: relative;
	box-sizing: border-box;
	flex-basis: 32%;
}
.img__wrapper {
	width: 100%;
	display: flex;
}
.img__wrapper img {
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	object-position: 55% 50%;
}
.content__right_column {
	box-sizing: border-box;
	flex-basis: 64%;
	text-align: justify;
}
.content__subpage {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: justify;
}
.content__subpage h2 {
	font-size: 24pt;
}
.content__subpage h3 {
	color: #D26189;
}

/* MENU */

nav {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}
.menu__item__wrapper {
	box-sizing: border-box;
	flex-basis: 32%;
	height: 100px;
	padding: 10px 20px;
	background-color: #755A45;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
}
.menu__item__wrapper:hover {
	background-color: #614A39;
}
.menu__item__wrapper a {
	display: flex;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #FFFFFF;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.inactive__menu_item {
	background-color:  #767676;
}
.inactive__menu_item:hover {
	background-color:  #767676;
}

/* CONTACT */

.contact {
	max-width: 1000px;
	width: 100%;
	margin: 30px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 0;
}
.contact a {
	color: #B84A71;
}
.contact a:hover {
	text-decoration-style: dashed;
}
.contact__wrapper {
	width: 50%;
	background-color: #FFFFFF;
}
.contact__left h3 {
	font-size: 24px;
}
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact__info__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact__info__item img {
    width: 60px;
    height: auto;
}
.contact__info__text {
    flex-grow: 1;
}


/* FOOTER */

.footer {
	text-align:  center;
	background-color: #1A1A1A;
	padding: 20px;
	margin-top: 30px;
	color: #FFFFFF;
	background-image:  url("images/trojkaty-ciemny.png");
	background-size: 100%  auto;
}

/* ====== MOBILE VERSION ====== */

@media all and (max-width: 800px) {

	body {
		font-size: 16px;
	}

/* HEADER */

.header__logo__wrapper {
	background-size: 200% auto;
}
.header__usp {
	padding: 0 20px;
	text-align: center;
}
.header__usp h1 {
	font-size:  12pt;
	word-spacing: 10px;
}
.header__usp h2 {
	font-size: 16pt;
}

/* CONTENT */

.content__wrapper {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}
.content__left_column {
	flex-basis: 100%;
}
.img__wrapper {
	width: 100%;
	min-height: 300px;
	display: flex;
}
.img__wrapper img {
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
}
.content__right_column {
	box-sizing: border-box;
	flex-basis: 100%;
	padding: 20px;
	text-align: left;
}
.content__subpage {		
	padding: 0 20px;
	text-align: left;
}

/* MENU */

nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2px;
}
.menu__item__wrapper {
	flex-basis: 100%;
}
.menu__item__wrapper a {
    font-size: 16px;
}

/* CONTACT */

.contact {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.contact__wrapper {
	width: 100%;
	background-color: #FFFFFF;
}
.contact__left {
	padding: 20px;
}

/* FOOTER */

.footer {
	background-size: 200%  auto;
}
}