/*
Theme Name: PortoMaran Theme
Theme URI: https://portomaran.com
Template: yootheme
Author: Alex Duca
Author URI: https://alexduca.it
Version: 5.0.37.CT.1784470303
Updated: 2026-07-19 16:11:43

*/


@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* <weight>: Use a value from 400 to 700
// <uniquifier>: Use a unique and descriptive class name

.google-sans-<uniquifier> {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
} */


/* <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */


* { font-family: "Google Sans", sans-serif !important; }





/* ----- CSS WP SHORTCODE "pm_redirect" ----- */

#pm-redirect-overlay {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pm-primary);
	padding: 30px;
	box-sizing: border-box;
}

#pm-redirect-overlay .pm-redirect-content {
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#pm-redirect-overlay .pm-redirect-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: min(320px, 75vw);
	max-height: 180px;
	margin: 0 0 60px;
	object-fit: contain;
}

#pm-redirect-overlay .pm-redirect-site-name {
	margin-bottom: 40px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: clamp(32px, 6vw, 64px);
	font-weight: 700;
	line-height: 1.1;
}

#pm-redirect-overlay .pm-redirect-spinner {
	width: 32px;
	height: 32px;
	margin-bottom: 20px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top-color: var(--pm-secondary);
	border-radius: 50%;
	animation: pmRedirectSpin 0.8s linear infinite;
}

#pm-redirect-overlay .pm-redirect-message {
	color: var(--pm-secondary);
	font-family: Arial, sans-serif;
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 700;
	line-height: 1.3;
}

@keyframes pmRedirectSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}