/* ==========================================================================
   Program "Coming Soon" screen: plain white section (no background photo),
   shown instead of the normal program sections when a program is toggled
   not-yet-available. Text colors match the site's light-background
   convention in programs.css (accessible gold eyebrow, navy heading, gray
   body copy).
   ========================================================================== */

.exegypt-program-coming-soon {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background-color: #ffffff;
	overflow: hidden;
	padding: 9rem 0 4rem;
}

.exegypt-program-coming-soon__container {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: center;
}

.exegypt-program-coming-soon__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: #8a6215;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 1.5rem;
}

.exegypt-program-coming-soon__eyebrow::before {
	content: "\00B7";
	font-size: 1.4em;
	line-height: 0;
}

.exegypt-program-coming-soon__title {
	font-family: "Montserrat", sans-serif;
	color: #001844;
	font-weight: 700;
	font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
	line-height: 1.25;
	margin: 0 0 1.5rem;
}

.exegypt-program-coming-soon__title-accent {
	display: block;
	color: #8a6215;
	font-style: italic;
	font-weight: 300;
	font-size: 0.65em;
	margin-top: 0.35em;
}

.exegypt-program-coming-soon__description {
	font-family: "Inter", sans-serif;
	color: #475467;
	font-weight: 300;
	font-size: clamp(0.95rem, 0.87rem + 0.35vw, 1.0625rem);
	line-height: 1.65;
	max-width: 34rem;
	margin: 0 auto 2.25rem;
}

.exegypt-program-coming-soon__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.exegypt-program-coming-soon__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.exegypt-program-coming-soon__button--primary {
	background: #c99638;
	color: #001020;
	border: 1px solid #c99638;
}

.exegypt-program-coming-soon__button--primary:hover {
	background: #b8842c;
	border-color: #b8842c;
	color: #001020;
}

.exegypt-program-coming-soon__button--ghost {
	background: transparent;
	color: #001844;
	border: 1px solid rgba(0, 24, 68, 0.25);
}

.exegypt-program-coming-soon__button--ghost:hover {
	background: rgba(0, 24, 68, 0.05);
	border-color: rgba(0, 24, 68, 0.4);
	color: #001844;
}

@media (prefers-reduced-motion: no-preference) {
	.exegypt-program-coming-soon__container > * {
		animation: exegypt-program-coming-soon-rise 0.7s ease both;
	}

	.exegypt-program-coming-soon__eyebrow { animation-delay: 0s; }
	.exegypt-program-coming-soon__title { animation-delay: 0.08s; }
	.exegypt-program-coming-soon__description { animation-delay: 0.16s; }
	.exegypt-program-coming-soon__actions { animation-delay: 0.24s; }
}

@keyframes exegypt-program-coming-soon-rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 782px) {
	.exegypt-program-coming-soon {
		padding: 7.5rem 0 3.5rem;
	}
}

@media (max-width: 600px) {
	.exegypt-program-coming-soon {
		padding: 7rem 0 3rem;
	}

	.exegypt-program-coming-soon__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.exegypt-program-coming-soon__button {
		width: 100%;
	}
}

@media (max-width: 400px) {
	.exegypt-program-coming-soon__container {
		padding: 0 1rem;
	}
}
