/* ==========================================================================
   Galerie Mueller -- Contact CTA Widget Styles
   ========================================================================== */

/* --- Section Wrapper --- */
.gm-contact-cta {
	background-color: #F0EEEB;
	padding: 80px 24px;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.gm-contact-cta {
		padding-top: 120px;
		padding-bottom: 120px;
	}
}

/* --- Inner Container --- */
.gm-contact-cta__inner {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	max-width: 768px;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* --- Accent Line --- */
.gm-contact-cta__accent-line {
	margin-bottom: 24px;
	height: 1px;
	width: 40px;
	background-color: #8C7A5B;
}

/* --- Label --- */
.gm-contact-cta__label {
	margin-bottom: 32px;
	font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #6B6B6B;
}

/* --- Heading --- */
.gm-contact-cta__heading {
	margin-bottom: 16px;
	font-family: 'Playfair Display', ui-serif, Georgia, serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
	color: #1A1A1A;
}

@media (min-width: 640px) {
	.gm-contact-cta__heading {
		font-size: 36px;
	}
}

/* --- Description --- */
.gm-contact-cta__description {
	margin-bottom: 40px;
	font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	font-weight: 300;
	color: #6B6B6B;
}

/* --- Button --- */
.gm-contact-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #8C7A5B;
	padding: 16px 40px;
	font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #FFFFFF;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 300ms ease;
}

.gm-contact-cta__button:hover,
.gm-contact-cta__button:focus {
	background-color: #1A1A1A;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
				0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.gm-contact-cta__button-icon {
	display: inline-flex;
	align-items: center;
}

/* --- Footer Text --- */
.gm-contact-cta__footer {
	margin-top: 48px;
	font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #6B6B6B;
}

/* ==========================================================================
   FADE-UP ANIMATION
   ========================================================================== */

.gm-contact-cta__inner--hidden {
	opacity: 0;
}

@keyframes gm-contact-cta-fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gm-contact-cta__inner--visible {
	animation-name: gm-contact-cta-fade-up;
	animation-duration: 700ms;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
