/*

Theme Name: Parco Vulci
Description: Parco Vulci
Author: WPinProgress
Author URI: https://www.wpinprogress.com
Version: 1.0.0
Requires PHP: 5.3
Tested up to: 6.9
Tags: custom-background, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, post-formats, right-sidebar, sticky-post, theme-options, threaded-comments, translation-ready, one-column, two-columns, three-columns, grid-layout, blog, e-commerce, photography
Text Domain: parco-vulci
Domain Path: /languages
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

*/

:root {
	--button-red: #6b1f2e;
	--button-red-hover: #581926;
}

html {
	height:100%;
	min-height:100%;
}

:root {
	--parco-vulci-container-max: 1300px;
	--parco-vulci-container-gutter-desktop: 36px;
	--parco-vulci-container-gutter-tablet: 24px;
	--parco-vulci-container-gutter-mobile: 16px;
	--parco-vulci-grid-gap: 24px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background-color:#fff;
	min-height:100%;
	height:100%;
    font-family: 'Titillium Web',Verdana, Geneva, sans-serif;
}

body.no-scrolling {
    overflow: hidden;
}

a {
	outline: none;
	border:none;
	font-weight:normal;
	text-decoration:none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	color:#616161
}

a:hover {
	color:#d14a2b;
}

a:focus {
	outline: thin dotted;
    text-decoration: underline;
}

a,
a:hover {
	text-decoration:underline;
}

.clear {
	clear:both;
}

.left {
	float:left;
}

.right {
	float:right;
}

/* ===============================================
   Internal layout system
   =============================================== */

.container {
	width: calc(100% - (var(--parco-vulci-container-gutter-desktop) * 2));
	max-width: var(--parco-vulci-container-max);
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

.pv-grid {
	display: grid;
	gap: var(--pv-grid-gap, var(--parco-vulci-grid-gap));
}

.pv-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pv-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pv-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pv-grid--fit {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.pv-grid__span-2 {
	grid-column: span 2;
}

.pv-grid__span-3 {
	grid-column: span 3;
}

@media screen and (max-width: 1280px) {

	.container {
		width: calc(100% - (var(--parco-vulci-container-gutter-tablet) * 2));
	}

}

@media screen and (max-width: 640px) {

	.container {
		width: calc(100% - (var(--parco-vulci-container-gutter-mobile) * 2));
	}

}

/* ===============================================
   WRAPPER
   =============================================== */

#wrapper {
	position: relative;
	min-height:100%;
	max-width: 100%;
	overflow: hidden;
}

#wrapper img,
#wrapper iframe,
#wrapper object,
#wrapper embed {
	max-width: 100%;
}

#wrapper img {
	max-height:100%;
	height:auto;
}

/* ===============================================
   SIDEBARS
   =============================================== */

#sidebar .sidebar-box {
	padding:0 25px;
}

.sidebar-area a,
.sidebar-area p,
.sidebar-area li,
.sidebar-area address,
.sidebar-area dd,
.sidebar-area blockquote,
.sidebar-area td,
.sidebar-area th,
.sidebar-area .textwidget {
	line-height:1.9em;
	font-weight: normal;
}

.sidebar-area ul {
	list-style:none;
	font-weight: normal;
	margin:0;
	padding:0;
}

.sidebar-area ul ul {
    margin: 15px 0;
}

.sidebar-area li li a {
    font-size: 12px;
}

.sidebar-area h4.title,
.sidebar-area h2.wp-block-heading {
	font-size: 18px;
	padding: 0;
	margin: 0 0 15px 0;
	position:relative;
	text-align:left
}

.sidebar-area select,
.sidebar-area textarea,
.sidebar-area input[type="text"],
.sidebar-area input[type="password"],
.sidebar-area input[type="datetime"],
.sidebar-area input[type="datetime-local"],
.sidebar-area input[type="date"],
.sidebar-area input[type="month"],
.sidebar-area input[type="time"],
.sidebar-area input[type="week"],
.sidebar-area input[type="number"],
.sidebar-area input[type="email"],
.sidebar-area input[type="url"],
.sidebar-area input[type="search"],
.sidebar-area input[type="tel"],
.sidebar-area input[type="color"],
.sidebar-area .uneditable-input{
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	width:96%;
	padding: 5px 2%;
}

/* ===============================================
   Page wrapper
   =============================================== */

   #wrapper {
	position: relative;
	min-height:100%;
    margin: auto;
}

#wrapper img,
#wrapper iframe,
#wrapper object,
#wrapper embed {
	max-width: 100%;
}

body.overlay-active #wrapper {
    margin-left: auto;
    margin-right: auto;
}

body.is_minimal_layout #header-wrapper,
body.is_minimal_layout #header_sidebar,
body.is_minimal_layout #bottom_sidebar,
body.is_minimal_layout #breadcrumb_wrapper {
	margin-left:auto;
	margin-right:auto
}

body.is_minimal_layout #header_sidebar,
body.is_minimal_layout #bottom_sidebar,
body.is_minimal_layout #breadcrumb_wrapper,
body:not(.is_minimal_layout) #wrapper,
.newsticker-inner {
	width: 100%;
	max-width: var(--parco-vulci-container-max);
}

body.is_minimal_layout #bottom_sidebar {
	padding-right: 0;
	padding-left: 0;
}

/* ===============================================
   Simple content templates
   =============================================== */

.site-main--simple {
	padding: 0 0 72px;
}

.site-main--simple .container {
	padding: 0;
}

.site-main--simple .entry-content > :first-child {
	margin-top: 0;
}

.site-main--simple .entry-content > :last-child {
	margin-bottom: 0;
}

/* ===============================================
   Footer
   =============================================== */

.site-footer {
	--footer-bg: #5a1623;
	--footer-bg-soft: rgba(255, 255, 255, 0.06);
	--footer-text: rgba(255, 255, 255, 0.9);
	--footer-text-soft: rgba(255, 255, 255, 0.78);
	--footer-gold: #c7ab59;
	--footer-border: rgba(255, 255, 255, 0.12);
	margin-top: 72px;
	color: var(--footer-text);
	background: var(--footer-bg);
}

.site-footer a,
.site-footer a:hover,
.site-footer a:focus {
	color: inherit;
	text-decoration: none;
}

.site-footer .container {
	padding: 0;
}

.site-footer__main {
	padding: 76px 0 74px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(420px, 1.34fr) minmax(220px, 0.78fr);
	gap: 54px;
	align-items: start;
}

.site-footer__brand-heading {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.site-footer__brand-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	border: 2px solid var(--footer-gold);
	border-radius: 50%;
	overflow: hidden;
}

.site-footer__brand-logo {
	width: 100%;
	height: 100%;
	padding: 14px;
	object-fit: contain;
	object-position: center;
}

.site-footer__brand-fallback {
	color: var(--footer-gold);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
}

.site-footer__brand-title,
.site-footer__brand-subtitle,
.site-footer__description,
.site-footer__section-title,
.site-footer__info-title,
.site-footer__copyright {
	margin: 0;
}

.site-footer__brand-title {
	color: #fff;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.05;
}

.site-footer__brand-subtitle {
	margin-top: 6px;
	color: var(--footer-gold);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.15;
}

.site-footer__description {
	max-width: 470px;
	margin-top: 28px;
	color: var(--footer-text-soft);
	font-size: 14px;
	line-height: 1.55;
}

.site-footer a.site-footer__transparency-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	padding-bottom: 10px;
	color: var(--footer-gold);
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid rgba(199, 171, 89, 0.42);
}

.site-footer__transparency-link i {
	font-size: 1rem;
}

.site-footer__social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
}

.site-footer__social-icon {
	display: block;
	width: 22px;
	height: 22px;
	background-color: currentColor;
	-webkit-mask-image: var(--icon-url);
	mask-image: var(--icon-url);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer a.site-footer__social-link:hover,
.site-footer a.site-footer__social-link:focus {
	background-color: rgba(199, 171, 89, 0.64);
	color: #49121b;
}

.site-footer__social-link:hover .site-footer__social-icon,
.site-footer__social-link:focus .site-footer__social-icon {
	transform: translateY(-1px);
	opacity: 0.9;
}

.site-footer__info-list {
	display: grid;
	gap: 26px;
}

.site-footer__info-card {
	padding: 28px 26px 28px 24px;
	background: var(--footer-bg-soft);
	border-left: 2px solid var(--footer-gold);
}

.site-footer__info-title,
.site-footer__section-title,
.site-footer__menu > li > a {
	color: var(--footer-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.site-footer__info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 20px;
	color: #fff;
}

.site-footer__info-item:hover,
.site-footer__info-item:focus {
	color: #fff;
}

.site-footer__info-icon {
	display: block;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 0;
	color: var(--footer-gold);
	background-color: currentColor;
	-webkit-mask-image: var(--icon-url);
	mask-image: var(--icon-url);
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.site-footer__info-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: var(--footer-text);
	font-size: 14px;
	line-height: 1.4;
}

.site-footer__menu,
.site-footer__menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu {
	margin-top: 30px;
}

.site-footer__menu > li + li {
	margin-top: 22px;
}

.site-footer__menu > li > a {
	display: inline-block;
}

.site-footer__menu .sub-menu {
	margin-top: 12px;
}

.site-footer__menu .sub-menu li + li {
	margin-top: 8px;
}

.site-footer__menu .sub-menu a {
	color: var(--footer-text);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.35;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus,
.site-footer__legal a:hover,
.site-footer__legal a:focus,
.site-footer__transparency-link:hover,
.site-footer__transparency-link:focus {
	color: #fff;
}

.site-footer__bottom {
	border-top: 1px solid var(--footer-border);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 0 28px;
}

.site-footer__copyright {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
	line-height: 1.3;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 26px;
}

.site-footer__legal a {
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	line-height: 1.3;
}

@media screen and (max-width: 1280px) {

	.site-footer__grid {
		gap: 42px;
	}

}

@media screen and (max-width: 992px) {

	.site-main--simple {
		padding-bottom: 56px;
	}

	.site-footer {
		margin-top: 48px;
	}

	.site-footer__main {
		padding: 56px 0 52px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.site-footer__brand {
		max-width: none;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__legal {
		justify-content: flex-start;
	}

}

@media screen and (max-width: 640px) {

	.site-footer__main {
		padding: 42px 0 40px;
	}

	.site-footer__brand-mark {
		flex-basis: 60px;
		width: 60px;
		height: 60px;
	}

	.site-footer__brand-title {
		font-size: 1.8rem;
	}

	.site-footer__brand-subtitle {
		font-size: 1.15rem;
	}

	.site-footer__description,
	.site-footer__info-content,
	.site-footer__menu .sub-menu a {
		font-size: 1.02rem;
	}

	.site-footer__info-card {
		padding: 24px 20px 24px 18px;
	}

	.site-footer__social-link {
		width: 50px;
		height: 50px;
	}

	.site-footer__legal {
		gap: 18px;
	}

}
