/* Realisations Page */
.realisations-page {
	min-height: 100vh;
	padding-top: 70px;
	background: #f8f9fa;
}

.realisations-page__header {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.7) 100%),
		url("../images/realisations.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	padding: 7rem 0 5rem;
	text-align: center;
	position: relative;
}

.realisations-page__title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.realisations-page__subtitle {
	font-size: 1.3rem;
	opacity: 0.9;
	font-weight: 400;
}

.realisations-page__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

/* Video Grid */
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2.5rem;
}

/* Video Card */
.video-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}

.video-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.video-card__thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #1a1a1a;
}

.video-card__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.video-card:hover .video-card__video {
	transform: scale(1.05);
}

.video-card__play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(255, 20, 20, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.video-card:hover .video-card__play-button {
	background: rgba(255, 20, 20, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play-button svg {
	width: 24px;
	height: 24px;
	margin-left: 4px;
}

.video-card__duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	z-index: 2;
}

.video-card__info {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.video-card__title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
	line-height: 1.3;
}

.video-card__description {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.realisations-page__header {
		padding: 4rem 0 3rem;
	}

	.realisations-page__title {
		font-size: 2.5rem;
	}

	.realisations-page__subtitle {
		font-size: 1.1rem;
	}

	.realisations-page__container {
		padding: 2rem 1rem;
	}

	.video-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.video-card__info {
		padding: 1.25rem;
	}

	.video-card__title {
		font-size: 1.25rem;
	}

	.video-card__description {
		font-size: 0.9rem;
	}
}

/* Individual Video Page */
.video-page {
	min-height: 100vh;
	padding-top: 70px;
	background: #f8f9fa;
}

.video-page__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

.video-page__content {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-page__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.video-page__video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.video-page__info {
	padding: 2.5rem;
}

.video-page__title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
	line-height: 1.2;
}

.video-page__subtitle {
	font-size: 1.2rem;
	font-weight: 400;
	color: #888;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.video-page__description {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.video-page__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.5rem;
	border-top: 1px solid #e0e0e0;
}

.video-page__year {
	display: inline-block;
	background: var(--primary);
	color: white;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
}

.video-page__back-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.video-page__back-link:hover {
	color: #e01212;
	transform: translateX(-4px);
}

/* Mobile Responsiveness for Video Page */
@media (max-width: 768px) {
	.video-page__container {
		padding: 1rem;
	}

	.video-page__info {
		padding: 1.5rem;
	}

	.video-page__title {
		font-size: 1.75rem;
	}

	.video-page__description {
		font-size: 1rem;
	}

	.video-page__meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}
