/* ==================================================
Video Page Styles
Reusable styles for video gallery pages (Trevi, Gcan, etc.)
================================================== */

/* Page container */
.video-page {
	background-color: #b6c3f0;
	min-height: 100vh;
}

.video-page .video-header {
	margin-top: 20px;
	margin-bottom: 30px;
}

.video-page .video-title {
	color: blue;
	font-family: 'Garamond', Georgia, serif;
	font-size: 36px;
	text-align: center;
	margin: 20px 0 10px 0;
}

.video-page .visit-date {
	color: red;
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}

.video-page .video-wrapper {
	max-width: 900px;
	margin: 0 auto 30px;
	padding: 0 15px;
}

.video-page .video-container {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	background: #000;
}

.video-page .video-container video {
	width: 100%;
	display: block;
}

.video-page .description-card {
	max-width: 900px;
	margin: 0 auto 40px;
	padding: 0 15px;
}

.video-page .description-card .card-content {
	background: #fff;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-page .description-card h3 {
	color: blue;
	font-family: 'Garamond', Georgia, serif;
	font-size: 24px;
	margin: 0;
	text-align: center;
}

/* Custom video controls info */
.video-controls-info {
	text-align: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 0 0 8px 8px;
	font-size: 14px;
	color: #555;
}

/* Responsive */
@media (max-width: 600px) {
	.video-page .video-title {
		font-size: 28px;
	}
	
	.video-page .visit-date {
		font-size: 18px;
	}
	
	.video-page .description-card h3 {
		font-size: 20px;
	}
}