@import url('https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&display=swap');

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
}

body {
	background-image: url("../images/background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right top;
	background-color: #000;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
}

.page-wrap {
	min-height: 100vh;
	padding: 30px 20px 50px;
	box-sizing: border-box;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.25),
		rgba(0, 0, 0, 0.45)
	);
}

.memorial-header {
	text-align: center;
	margin-bottom: 28px;
}

h1 {
	font-family: 'Monsieur La Doulaise', cursive;
	font-size: 56px;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 1.1;
	margin: 0 0 6px 0;
	color: #fff;
}

h2 {
	margin: 0;
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.9);
}

.announcement-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.announcement-card {
	width: 100%;
	max-width: 520px;
	padding: 32px 34px;
	box-sizing: border-box;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(8px);
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.45);
}

.announcement-intro {
	text-align: center;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.announcement-intro p {
	margin: 0 0 12px 0;
}

.announcement-intro p:last-child {
	margin-bottom: 0;
}

.announcement-card h3 {
	margin: 0 0 22px 0;
	text-align: center;
	font-size: 22px;
	font-weight: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.memorial-details {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.detail-row {
	padding: 12px 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}

.detail-label {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.detail-value {
	display: block;
	font-size: 17px;
	line-height: 1.5;
	color: #fff;
}

@media (max-width: 640px) {
	.page-wrap {
		padding: 22px 14px 36px;
	}

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 20px;
		letter-spacing: 2px;
	}

	.announcement-card {
		padding: 24px 20px;
	}

	.announcement-intro {
		font-size: 15px;
	}

	.detail-value {
		font-size: 16px;
	}
}
.memorial-video {
	width: 100%;
	margin-bottom: 22px;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(0,0,0,0.4);

	/* This creates a consistent frame */
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.memorial-video video {
	width: 100%;
	height: 100%;

	/* This ensures the whole video fits inside */
	object-fit: contain;
}