/* Generosity Maximizer - Splash Screen & Button Styles - v1.9.4 */

/* --- 1. DESKTOP: Styles for the "Begin Journey" Button --- */
.gm-shortcode-wrap-desktop {
    padding: 20px;
}

.gm-shortcode-wrap-desktop .gm-button {
	padding: 18px 25px;
	border-radius: 0;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	margin-top: 15px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
	min-width: 200px;
    background-color: #FFFFFF;
	color: #D8AE66; 
	border: 1.5px solid #D8AE66; 
}

.gm-shortcode-wrap-desktop .gm-button:hover {
	background-color: #D8AE66;
	color: #FFFFFF;
	border-color: #D8AE66; 
	transform: translateY(-1px);
}

/* --- 2. MOBILE: Styles for the Splash Screen --- */
.gm-shortcode-wrap-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	font-family: sans-serif;
}

.gm-shortcode-wrap-mobile.is-hidden {
	animation: gm-fadeOutScreen 0.5s 0.2s ease-out forwards;
}

.gm-shortcode-wrap-mobile .gm-splash-image-container {
	width: 100%;
	height: 55%;
	position: relative;
	background-color: #fff;
	opacity: 0;
	animation: gm-softFadeIn 2s ease-out forwards;
}

.gm-shortcode-wrap-mobile .gm-splash-family-img {
	width: 100%;
	height: 100%;
	background-image: url(../images/gm-family.png);
	background-size: cover;
	background-position: center 30%;
	-webkit-mask-image: url(../images/mask.png);
	mask-image: url(../images/mask.png);
	-webkit-mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.gm-shortcode-wrap-mobile .gm-splash-curve-line {
	position: absolute;
	bottom: -33%; 
	left: -5%;
	width: 110%;
	height: 100%;
	z-index: 2;
	overflow: visible;
}

.gm-shortcode-wrap-mobile .gm-splash-curve-line path {
	stroke-dasharray: 1200; 
	stroke-dashoffset: 1200; 
	animation: gm-drawLine 1.5s 1s ease-out forwards;
}

.gm-shortcode-wrap-mobile .gm-splash-content {
	flex-grow: 1;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.gm-shortcode-wrap-mobile .gm-splash-content-inner {
	text-align: center;
	color: #333;
	opacity: 0; 
	animation: gm-contentFadeIn 0.8s 1.5s ease-out forwards;
}

.gm-shortcode-wrap-mobile .gm-splash-logo {
	max-width: 200px;
	height: auto;
	margin: 0 auto 25px;
	display: block;
}

.gm-shortcode-wrap-mobile .gm-splash-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 15px;
	color: #1a1a1a;
	font-family: sans-serif;
}

.gm-shortcode-wrap-mobile .gm-splash-subtitle {
	font-size: 16px;
	max-width: 320px;
	line-height: 1.5;
	margin: 0 auto 30px;
	color: #666;
}

.gm-shortcode-wrap-mobile .gm-splash-button {
	padding: 15px 40px;
	background-color: #D8AE66;
	color: #fff;
	border: none;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.gm-shortcode-wrap-mobile .gm-splash-bottom-links {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	opacity: 0;
	animation: gm-contentFadeIn 0.8s 2.5s ease-out forwards;
}
.gm-shortcode-wrap-mobile .gm-splash-bottom-links a { text-decoration: none; font-size: 14px; font-weight: 500; }
.gm-shortcode-wrap-mobile .gm-splash-bottom-links a:first-of-type { color: #1a1a1a; }
.gm-shortcode-wrap-mobile .gm-splash-bottom-links a:last-of-type { color: #D8AE66; }


/* --- Keyframe Animations --- */
@keyframes gm-softFadeIn {
	to { opacity: 1; }
}
@keyframes gm-drawLine {
	to { stroke-dashoffset: 0; }
}
@keyframes gm-contentFadeIn {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes gm-fadeOutScreen {
	from { opacity: 1; }
	to { opacity: 0; visibility: hidden; }
}