/*
 * ============================================================
 * CONSTRUCTION UPDATE PAGE
 * ============================================================
 *
 * All styles are scoped under:
 *
 * .construction-update-page
 *
 * This prevents conflicts with existing website components.
 */

/* ============================================================
   MAIN PAGE
   ============================================================ */

.construction-update-page {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #f7f8fa;
}

/* ============================================================
   HERO / PAGE HEADER
   ============================================================ */

.construction-update-page .construction-update-hero {
	position: relative;

	width: 100%;
	min-height: 430px;

	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;

	/*
     * Replace this image with your actual construction image.
     *
     * Example:
     * ../assets/images/construction-update-banner.webp
     */
	background-image: url("../images/construction-update/banner/Construction-update-banner.webp");

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Dark overlay over background image */

.construction-update-page .construction-update-hero-overlay {
	position: absolute;

	inset: 0;

	background: rgba(0, 0, 0, 0.48);
}

/* Hero text */

.construction-update-page .construction-update-hero-content {
	position: relative;

	z-index: 1;

	width: 100%;

	padding: 40px 20px;

	text-align: center;
}

.construction-update-page .construction-update-hero-content h1 {
	margin: 0;

	color: #ffffff;

	font-family: "Poppins", sans-serif;

	font-size: clamp(2.2rem, 5vw, 4rem);

	font-weight: 700;

	line-height: 1.2;

	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   CONTENT AREA
   ============================================================ */

.construction-update-page .construction-update-content {
	width: min(1200px, calc(100% - 40px));

	margin: 0 auto;

	padding: 70px 0 90px;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */

.construction-update-page .construction-update-title {
	margin-bottom: 40px;

	text-align: center;
}

.construction-update-page .construction-update-title h2 {
	margin: 0 0 10px;

	color: var(--prussian-blue, #003b5c);

	font-family: "Poppins", sans-serif;

	font-size: clamp(1.8rem, 3vw, 2.5rem);

	font-weight: 700;
}

.construction-update-page .construction-update-title p {
	max-width: 650px;

	margin: 0 auto;

	color: #666666;

	font-family: "Nunito Sans", sans-serif;

	font-size: 1rem;

	line-height: 1.7;
}

/* ============================================================
   MONTHLY TABS CONTAINER
   ============================================================ */

.construction-update-page .construction-update-tabs {
	display: flex;

	flex-wrap: wrap;

	justify-content: center;

	gap: 22px;
}

/* ============================================================
   MONTHLY TAB / CARD
   ============================================================ */

.construction-update-page .construction-update-tab {
	position: relative;

	display: flex;

	flex-direction: column;

	justify-content: center;

	min-width: 260px;

	min-height: 150px;

	padding: 28px 65px 28px 30px;

	border: 1px solid rgba(0, 0, 0, 0.08);

	border-radius: 12px;

	background: #ffffff;

	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);

	color: #1a1a1a;

	text-decoration: none;

	overflow: hidden;

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

/* Hover effect */

.construction-update-page .construction-update-tab:hover {
	transform: translateY(-5px);

	border-color: var(--prussian-blue, #003b5c);

	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

/* ============================================================
   MONTH NAME
   ============================================================ */

.construction-update-page .construction-update-tab-month {
	color: var(--prussian-blue, #003b5c);

	font-family: "Poppins", sans-serif;

	font-size: 1.55rem;

	font-weight: 700;

	line-height: 1.2;
}

/* ============================================================
   YEAR
   ============================================================ */

.construction-update-page .construction-update-tab-year {
	margin-top: 5px;

	color: #777777;

	font-family: "Nunito Sans", sans-serif;

	font-size: 1rem;

	font-weight: 600;
}

/* ============================================================
   ARROW
   ============================================================ */

.construction-update-page .construction-update-tab-arrow {
	position: absolute;

	top: 50%;
	right: 25px;

	display: flex;

	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	border-radius: 50%;

	background: var(--prussian-blue, #003b5c);

	color: #ffffff;

	font-size: 1.2rem;

	transform: translateY(-50%);

	transition: transform 0.25s ease;
}

/* Arrow hover animation */

.construction-update-page
	.construction-update-tab:hover
	.construction-update-tab-arrow {
	transform: translate(4px, -50%);
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 768px) {
	.construction-update-page .construction-update-hero {
		min-height: 360px;
	}

	.construction-update-page .construction-update-content {
		width: min(100% - 30px, 700px);

		padding: 55px 0 70px;
	}

	.construction-update-page .construction-update-tabs {
		gap: 16px;
	}

	.construction-update-page .construction-update-tab {
		min-width: 230px;

		min-height: 135px;
	}
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 480px) {
	.construction-update-page .construction-update-hero {
		min-height: 300px;
	}

	.construction-update-page .construction-update-content {
		width: calc(100% - 24px);

		padding: 45px 0 60px;
	}

	.construction-update-page .construction-update-title {
		margin-bottom: 30px;
	}

	.construction-update-page .construction-update-title p {
		font-size: 0.95rem;
	}

	.construction-update-page .construction-update-tab {
		width: 100%;

		min-width: 0;

		min-height: 125px;

		padding: 25px 60px 25px 24px;
	}
}
