/**
 * Regional Prestige Concierge - Modal
 * 
 * Custom alert modal styling
 */

/* ============================================================================
   CUSTOM ALERT MODAL
   ============================================================================ */

.custom-alert-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .85);
	backdrop-filter: blur(10px);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s ease;
}

.custom-alert-overlay.active {
	display: flex;
	opacity: 1;
}

.custom-alert {
	background: linear-gradient(135deg, #0A0A19 0%, #1a1a2e 100%);
	border: 1px solid var(--gold);
	padding: 48px 40px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	transform: scale(.9);
	transition: transform .3s ease;
}

.custom-alert-overlay.active .custom-alert {
	transform: scale(1);
}

.custom-alert-title {
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 24px;
	color: var(--gold);
}

.custom-alert-message {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 32px;
}

.custom-alert-button {
	border: 1px solid var(--gold);
	background: transparent;
	color: var(--gold);
	padding: 14px 36px;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
}

.custom-alert-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: translateX(-100%);
	transition: transform .4s ease;
	z-index: -1;
}

.custom-alert-button:hover::before {
	transform: translateX(0);
}

.custom-alert-button:hover {
	color: #0A0A19;
}

