/**
 * Goodbye Page Styles
 * 
 * Styles specific to the goodbye/logout confirmation page
 * These styles only apply to pages with the 'goodbye-page' body class
 */

/* Make body flexbox to push footer to bottom */
.goodbye-page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: #1a1a1a; /* Fallback dark background */
	/* Background image will be set below - replace 'goodbye-bg.jpg' with your image filename */
	background-image: url('../images/goodbye-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed; /* Creates parallax effect, remove if you don't want it */
	position: relative;
}

/* Dark overlay for better text readability (optional - adjust opacity as needed) */
.goodbye-page::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity: 0.3 = lighter, 0.7 = darker */
	z-index: 0;
}

/* Ensure content appears above overlay */
.goodbye-page .site-main,
.goodbye-page footer {
	position: relative;
	z-index: 1;
}

/* Hide search box on goodbye page */
.goodbye-page .nav-search-wrapper {
	display: none;
}

/* Make main content area grow to fill space and center content */
.goodbye-page .site-main {
	flex: 1;
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0;
}

.goodbye-page .goodbye-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
}

.goodbye-page .goodbye-content h1 {
	font-size: 3em;
	margin-bottom: 20px;
	color: #ffffff;
}

.goodbye-page .goodbye-content p {
	font-size: 1.2em;
	margin: 20px 0;
	color: #ffffff;
	line-height: 1.6;
}

/* Footer styling on black background - sticks to bottom */
.goodbye-page footer,
.goodbye-page .site-footer {
	background-color: #1a1a1a;
	/* background-color: #0b0b0b; */
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 32px 0;
	margin-top: auto; /* Push footer to bottom with flexbox */
	color: #ffffff;
	width: 100%;
}

/* Make footer text and links white */
.goodbye-page .site-footer p,
.goodbye-page .site-footer {
	color: #ffffff;
}

.goodbye-page .site-footer a {
	color: #ffffff;
	text-decoration: underline;
}

.goodbye-page .site-footer a:hover {
	color: #cccccc;
}

/* Logout link and separator dash are now hidden via template conditional in footer.php */
