/* =============================================
   About Us Page Styles — about.css
   Red-House Gifts WordPress Theme
   ============================================= */

/* --- Page Layout --- */
.about-page-wrap {
	background-color: #0a3d20;
	min-height: 600px;
	padding-bottom: 40px;
}

.about-page-inner {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}

/* --- Two-column Layout --- */
.about-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding-top: 20px;
}

/* --- Left Sidebar --- */
.about-sidebar {
	width: 220px;
	flex-shrink: 0;
}

.about-sidebar-nav {
	background: rgba(9, 52, 120, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 3px;
	overflow: hidden;
}

.about-sidebar-nav h2 {
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background-color: #093478;
	margin: 0;
	padding: 12px 16px;
	letter-spacing: 0.5px;
}

.about-sidebar-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-sidebar-nav ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-sidebar-nav ul li:last-child {
	border-bottom: none;
}

.about-sidebar-nav ul li a {
	display: block;
	padding: 10px 16px 10px 24px;
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	font-family: Arial, sans-serif;
	transition: background 0.25s, color 0.25s;
	position: relative;
}

.about-sidebar-nav ul li a::before {
	content: "›";
	position: absolute;
	left: 12px;
	color: #5ebace;
	font-size: 16px;
	line-height: 1;
	top: 50%;
	transform: translateY(-50%);
}

.about-sidebar-nav ul li a:hover,
.about-sidebar-nav ul li.active a {
	background: rgba(94, 186, 206, 0.1);
	color: #5ebace;
}

/* --- Main Content --- */
.about-main {
	flex: 1;
	min-width: 0;
}

/* --- Section Title --- */
.about-section-title {
	color: #5ebace;
	font-size: 22px;
	font-family: Arial, sans-serif;
	font-weight: normal;
	margin: 0 0 16px 0;
	padding-bottom: 8px;
}

/* --- About Images --- */
.about-images {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 18px;
}

.about-images img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
}

/* --- About Content Row (video + text) --- */
.about-content-row {
	display: flex;
	gap: 24px;
	margin-top: 18px;
	align-items: flex-start;
}

.about-video-col {
	flex: 0 0 48%;
	max-width: 48%;
}

.about-text-col {
	flex: 1;
	min-width: 0;
}

/* --- Video Thumbnail --- */
.about-video-wrap {
	position: relative;
	display: block;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	border-radius: 3px;
	background: #000;
}

.about-video-wrap img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s;
}

.about-video-wrap:hover img {
	opacity: 0.85;
}

.about-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s, transform 0.3s;
	pointer-events: none;
}

.about-video-play-btn::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 0 14px 26px;
	border-color: transparent transparent transparent #fff;
	margin-left: 5px;
}

.about-video-wrap:hover .about-video-play-btn {
	background: rgba(31, 105, 173, 0.85);
	transform: translate(-50%, -50%) scale(1.08);
}

/* Video Lightbox Overlay */
.video-lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.88);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}

.video-lightbox-overlay.active {
	display: flex;
}

.video-lightbox-inner {
	position: relative;
	width: 90%;
	max-width: 900px;
	aspect-ratio: 16/9;
}

.video-lightbox-inner iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.video-lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
	background: none;
	border: none;
	padding: 5px 10px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.video-lightbox-close:hover {
	opacity: 1;
}

/* --- About Text Body --- */
.about-text-body {
	color: #ccc;
	font-size: 14px;
	font-family: Arial, sans-serif;
	line-height: 1.8;
}

.about-text-body strong,
.about-text-body b {
	color: #ddd;
}

/* --- Responsive --- */
@media (max-width: 992px) {
	.about-layout {
		flex-direction: column;
	}
	.about-sidebar {
		width: 100%;
	}
	.about-content-row {
		flex-direction: column;
	}
	.about-video-col {
		max-width: 100%;
		flex: 0 0 100%;
	}
}

@media (max-width: 768px) {
	.about-page-inner {
		padding: 0 10px;
	}
	.about-section-title {
		font-size: 18px;
	}
}
