/*
	Theme Name: Fabriklak
	Version: 1.0.0
	Author: Roland Szabó
	Author URI: https://rolandszabo.design/
	Description: A WordPress theme hand-crafted with ♥ by your friend, Roland.
*/



/* RESET CSS */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html { scroll-behavior: smooth; }
body { line-height: 1; }
a { text-decoration-skip-ink: auto; }
button { outline: 0; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; }
q { display: inline; font-style: italic; }
q:before { content: '"'; font-style: normal; }
q:after { content: '"'; font-style: normal; }
textarea, input[type="text"], input[type="button"], input[type="submit"], input[type="reset"], input[type="search"], input[type="password"] { -webkit-appearance: none; appearance: none; border-radius: 0; }
table { border-collapse: collapse; border-spacing: 0; }
th, td { padding: 2px; }
big { font-size: 120%; }
small, sup, sub { font-size: 80%; }
sup { vertical-align: super; }
sub { vertical-align: sub; }
kbd, tt { font-family: courier; }
ins { text-decoration: underline; }
del, strike, s { text-decoration: line-through; }
dt { font-weight: bold; }
address, cite, var { font-style: italic; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }



/* VARIABLES */

:root {
	--serif: "Lora", serif;
	--sans: "Nunito", sans-serif;

	--color: #ff793f;
	--color-2: #ffb142;
	
	--text: #d9d6ce;
	--text-dark: #b3b0aa;
	--text-light: #faf7ed;
	
	--bg: #664833;
	--bg-dark: #402d20;
	--bg-light: #8c6346;
	
	--transition-duration: .25s;
	--gradient: -webkit-linear-gradient(135deg, var(--color), var(--color-2));
}



/* BASE STYLES */

::selection {
	color: var(--text-light);
	background-color: var(--color);
}

html {
	font-size: 62.5%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 95vh;
	font-weight: 400;
	font-family: var(--sans);
	font-style: normal;
	color: var(--text);
	letter-spacing: -.25px;
	line-height: 1.6;
	background-color: var(--bg);
}

@media only screen and (max-width: 575px) {
	body {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width: 576px) {
	body {
		font-size: 1.8rem;
	}
}

@media only screen and (min-width: 768px) {
	body {
		font-size: 2rem;
	}
}

img {
	max-width: 100%;
	height: auto;
}

.main {
	flex-grow: 1;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.container {
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

.container--thin {
	max-width: 80rem;
}

.section {
	padding-bottom: 6rem;
}



/*********************
/* BASIC COMPONENTS */
/********************/

/* Typography */

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
	margin-top: 2rem;
	font-family: var(--serif);
	font-weight: 400;
	color: var(--text-light);
}

h1, .h1 {
	text-align: center;
	letter-spacing: -1px;
	line-height: 1.4;
}

@media only screen and (max-width: 575px) {
	h1, .h1 {
		margin-bottom: 3rem;
		font-size: 3rem;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	h1, .h1 {
		margin-bottom: 4rem;
		font-size: 4rem;
	}
}

@media only screen and (min-width: 768px) {
	h1, .h1 {
		margin-bottom: 5rem;
		font-size: 5rem;
	}
}

h2, .h2 {
	margin-bottom: 2rem;
	letter-spacing: -.75px;
	line-height: 1.4;
}

@media only screen and (max-width: 575px) {
	h2, .h2 {
		margin-top: 2rem;
		font-size: 2rem;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	h2, .h2 {
		margin-top: 2.75rem;
		font-size: 2.75rem;
	}
}

@media only screen and (min-width: 768px) {
	h2, .h2 {
		margin-top: 3.5rem;
		font-size: 3.5rem;
	}
}

h3, .h3 {
	margin-bottom: 1.5rem;
	font-weight: 700;
	letter-spacing: -.5px;
	line-height: 1.4;
}

@media only screen and (max-width: 575px) {
	h3, .h3 {
		margin-top: 1.5rem;
		font-size: 2rem;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	h3, .h3 {
		margin-top: 2rem;
		font-size: 2.5rem;
	}
}

@media only screen and (min-width: 768px) {
	h3, .h3 {
		margin-top: 2.5rem;
		font-size: 3rem;
	}
}

h4, .h4 {
	margin-top: 0;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	font-family: var(--sans);
	font-weight: 800;
	font-size: 1.75rem;
	letter-spacing: -.5px;
	line-height: 1.4;
	text-transform: uppercase;
	border-bottom: 2px solid var(--bg-dark);
}

p {
	margin-bottom: 3rem;
}

li {
	margin-bottom: 1rem;
}

ul, ol {
	margin-bottom: 3rem;
	margin-left: 3rem;
}

ul { list-style: disc; }
ol { list-style: decimal; }

li::marker {
	font-weight: 800;
}

hr {
	margin: 2rem 0 4rem;
	border: 0;
	border-bottom: 2px solid var(--bg-dark);
}

strong {
	font-weight: 800;
}

em {
	font-style: italic;
}

a {
	color: var(--color);
	text-decoration: none;
	transition: color var(--transition-duration);
}

a:hover,
a:focus {
	color: var(--color);
}

.text-center {
	text-align: center;
}

.text-color-2 {
	color: var(--color-2);
}

@media only screen and (max-width: 575px) {
	.page-header {
		margin-bottom: 3rem;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.page-header {
		margin-bottom: 4rem;
	}
}

@media only screen and (min-width: 768px) {
	.page-header {
		margin-bottom: 5rem;
	}
}

.page-header__title,
.page-header__intro {
	margin-bottom: 0;
}



/* Tables */

table {
	margin-bottom: 3rem;
}

th {
	font-weight: 700;
	text-align: left;
}



/* Buttons */

.btn,
input[type="submit"] {
	cursor: pointer;
	display: inline-block;
	padding: 1.5rem 3rem;
	font: inherit;
	font-weight: 500;
	font-size: 2rem;
	color: #FFF;
	line-height: 1;
	text-decoration: none;
	border: 0;
	border-radius: 99rem;
	background: var(--gradient);
	transition: transform var(--transition-duration);
}

.btn:hover,
.btn:focus {
	color: #FFF;
	transform: scale(1.04) rotate(2deg);
}

.btn--default {
	background: initial;
	background-color: var(--bg-light);
}

.nav-menu-btn .menu-link {
	cursor: pointer;
	display: inline-block;
	padding: 1.5rem 2.5rem;
	font-weight: 600;
	color: #FFF;
	line-height: 1;
	border-radius: 99rem;
	background-color: var(--color);
	background: var(--gradient);
	transition: background-color var(--transition-duration);
}

.nav-menu-btn .menu-link:hover,
.nav-menu-btn .menu-link:focus {
	background-color: var(--text);
}



/* Forms */

.form__group {
	margin-bottom: 2rem;
}

label,
.form__label {
	font-weight: 400 !important;
}

.form__input,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	min-width: 100%;
	padding: 1rem;
	font: inherit;
	border-radius: .5rem;
	border: 1px solid #D1D5D9;
}



/* Gallery */

.gallery {
	display: grid;
	grid-gap: 2rem;
}

@media only screen and (min-width: 576px) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width: 768px) {
	.gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

.gallery__image {
	cursor: pointer;
	object-fit: cover;
	width: 100%;
	height: 25rem;
	transition: var(--transition-duration) opacity;
}

.gallery__image:hover,
.gallery__image:focus {
	opacity: .8;
}



/* Quote, Testimonial */

.quote {
	margin-bottom: 3rem;
	text-align: center;
	color: var(--text-light);
	border-top: 2px solid var(--bg-dark);
	border-bottom: 2px solid var(--bg-dark);
	/* background-color: var(--bg-light); */
}

@media only screen and (max-width: 767px) {
	.quote {
		padding: 2rem 3rem;
	}
}

@media only screen and (min-width: 768px) {
	.quote {
		padding: 3rem 6rem;
	}
}

.quote__rating {
	margin-bottom: 1rem;
	color: var(--color-2);
}

.quote__text {
	margin-bottom: 1rem;
	font-family: var(--serif);
	font-style: italic;
	line-height: 1.5;
}

@media only screen and (max-width: 767px) {
	.quote__text {
		font-size: 2rem;
		letter-spacing: -.66px;
	}
}

@media only screen and (min-width: 768px) {
	.quote__text {
		font-size: 3rem;
		letter-spacing: -1px;
	}
}

.quote__text:before { content: "“"; }
.quote__text:after  { content: "”"; }

.quote__author {
	margin-bottom: 0;
	font-style: normal;
	font-size: 1.6rem;
}



/* Responsive Embed */

.embed {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	padding: 0;
}

.embed:before {
	content: '';
	display: block;
	padding-top: 56.25%;
}

.embed iframe {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}




/******************
/* PAGE ELEMENTS */
/*****************/

/* Main Header & Navigation */

.header-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	justify-content: center;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--bg-light);
}

@media only screen and (min-width: 576px) {
	.header-grid {
		grid-gap: 1rem;
		justify-content: initial;
	}
}

.logo {
	display: flex;
	align-items: center;
	padding: 1rem;
}

.logo__image {
	width: auto;
	height: 6rem;
}

@media only screen and (max-width: 991px) {
	.menu {
		display: none;
	}
}

.menu-list {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	text-align: center;
}

@media only screen and (max-width: 991px) {
	.menu-list {
		flex-direction: column;
		height: 100%;
	}
}

@media only screen and (min-width: 992px) {
	.menu-list {
		justify-content: end;
	}
}

.menu-item {
	position: relative;
	list-style: none;
	margin-bottom: 0;
}

.menu-link {
	display: block;
	padding: 1.5rem;
	font-size: 2rem;
	color: var(--text);
	letter-spacing: -.5px;
	line-height: 1.2;
}

@media only screen and (min-width: 992px) {
	.menu-link {
		padding: 2rem;
	}
}

.menu-toggle__btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 1rem 0;
	transition: var(--transition-duration) color;
}

.menu-toggle__btn:hover,
.menu-toggle__btn:focus {
	color: var(--color);
}

@media only screen and (min-width: 992px) {
	.menu-toggle__btn {
		display: none;
	}
}

.menu-toggle__icon {
	margin-right: 1rem;
}

.menu-toggle__input {
	display: none;
}

@media only screen and (max-width: 991px) {
	.menu-toggle__input:checked + .menu {
		display: block;
		grid-column: 1 / -1;
	}
}



/* Footer */

.footer-grid {
	display: grid;
	margin-top: 4rem;
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-top: 2px solid var(--bg-light);
}

@media only screen and (max-width: 767px) {
	.footer-grid {
		grid-gap: 3rem;
	}
}

@media only screen and (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 4rem;
	}
}

.footer-logo {
	grid-column: 1 / -1;
}

.footer-logo__link {
	display: inline-flex;
	padding: 0;
}

.footer-address__text {
	margin-bottom: 2rem;
}

.footer-contact {
	list-style: none;
	margin: 0;
}

.footer-contact__item {
	list-style: none;
}

.footer-contact__icon {
	margin-right: 1rem;
	color: var(--bg-dark);
}

.footer-contact__link {
	color: var(--text);
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	margin-top: -1rem;
	margin-left: -1rem;
}

.footer-social__item {
	list-style: none;
}

.footer-social__link {
	display: block;
	padding: 1rem;
	font-size: 3rem;
	color: var(--text);
}

.copyright {
	display: grid;
	grid-gap: 2rem;
	grid-column: -1 / 1;
}

@media only screen and (max-width: 767px) {
	.copyright {
		text-align: center;
	}
}

@media only screen and (min-width: 768px) {
	.copyright {
		grid-template-columns: repeat(2, 1fr);
	}
}

.copyright__text {
	margin-bottom: 0;
}

.copyright__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.copyright__nav {
		justify-content: center;		
	}
}

@media only screen and (min-width: 768px) {
	.copyright__nav {
		justify-content: end;		
	}
}

.copyright__link {
	margin-right: 1.5rem;
	font-size: 1.6rem;
	color: var(--text);
}




/*************************
/* PAGE-SPECIFIC STYLES */
/************************/

/* Főoldal */

.gift-card {
	display: grid;
	align-items: center;
	margin-bottom: 3rem;
	background-color: var(--bg-dark);
}

@media only screen and (max-width: 767px) {
	.gift-card {
		grid-gap: 2rem;
		padding: 1.5rem;
		border-left: .5rem solid var(--color);
	}
}

@media only screen and (min-width: 768px) {
	.gift-card {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 4rem;
		padding: 3rem;
		border-left: 1rem solid var(--color);
	}
}

.gift-card__title {
	margin-top: 0;
}

.gift-card__text {
	margin-bottom: 2rem;
}

/* Rólunk */

.rolunk-blurb {
	display: grid;
	grid-gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

@media only screen and (min-width: 768px) {
	.rolunk-blurb {
		grid-template-columns: repeat(2, 1fr);
	}
}

.rolunk-blurb--lakoter {
	grid-template-columns: initial;
}

.rolunk-blurb__title {
	margin-top: 0;
}

.rolunk-blurb__text {
	margin-bottom: 0;
}

.latvanyossagok {
	display: grid;
	grid-gap: 4rem;
}

@media only screen and (min-width: 768px) {
	.latvanyossagok {
		grid-template-columns: repeat(2, 1fr);
	}
}

.latvanyossagok__image {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 20rem;
}

.latvanyossagok__title {
	font-size: 2.4rem;
}

.latvanyossagok__text {
	margin-bottom: 0;
	font-size: 1.6rem;
}

/* Árlista */

.arak-foglalas-top {
	display: grid;
	align-items: center;
	margin-bottom: 4rem;
}

@media only screen and (max-width: 767px) {
	.arak-foglalas-top {
		grid-gap: 4rem;
	}
}

@media only screen and (min-width: 768px) {
	.arak-foglalas-top {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 6rem;
	}
}

.prices {
	display: grid;
	grid-gap: 2rem;
}

.price {
	text-align: center;
	border-bottom: 1rem solid var(--color);
	background-color: var(--bg-dark);
}

@media only screen and (max-width: 767px) {
	.price {
		padding: 2rem;
	}
}

@media only screen and (min-width: 768px) {
	.price {
		padding: 3rem;
	}
}

.price__days {
	margin-bottom: 0;
	font-weight: 700;
}

.price__price {
	margin-top: 1rem;
	margin-bottom: 0;
	font-weight: 700;
	letter-spacing: -2px;
}

.price__per {
	margin-bottom: 0;
}

.price__old {
	font-size: 75%;
	opacity: .75;
}

.tartalmaz h2 {
	margin-top: 0;
}

.tartalmaz p {
	margin-bottom: 0;
}

.foglalas {
	display: grid;
	grid-gap: 4rem;
	align-items: start;
	border-top: 1rem solid var(--color);
	background-color: var(--bg-dark);
}

@media only screen and (max-width: 767px) {
	.foglalas {
		padding: 2rem;
	}
}

@media only screen and (min-width: 768px) {
	.foglalas {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem;
	}
}

.wpsbc-container[data-columns] .wpsbc-calendars .wpsbc-calendar {
	max-width: 100% !important;
	margin-bottom: 0;
}

.wpsbc-legend {
	margin-top: 0;
	margin-bottom: 0;
}

.nf-form-fields-required {
	display: none;
}

#ninja_forms_required_items, .nf-field-container {
	margin-bottom: 1rem !important;
}

.nf-form-content .label-above .nf-field-label, .nf-form-content .label-below .nf-field-label, .nf-form-content .label-hidden .nf-field-label {
	margin-bottom: 0 !important;
}

.nf-field-label .nf-label-span, .nf-field-label label {
	font-weight: 300 !important;
}

.jBox-wrapper, .jBox-wrapper * {
	color: var(--bg);
}

.jBox-wrapper p {
	margin-bottom: 0;
}



/********************
/* UTILITY CLASSES */
/*******************/

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }