/* --- Filminga Page --- */
.page-header {
	background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-light-dark) 100%);
	padding: 8rem 0 4rem;
	text-align: center;
	margin-top: var(--header-height);
	background: url("../Images/page-de-garde2.png") repeat;
	background-size: contain;
	background-attachment: fixed;
}

.page-header h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 900;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;

	/* Apply texture effect */
	background-image: url("../Images/orange-grunge-texture.png");
	background-size: cover;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.page-header p {
	font-size: 1.2rem;
	color: var(--color-text);
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}
/* --- Filming Guide Page --- */
.grid-2-about {
	align-items: center;
	grid-template-columns: 1fr 1fr;
}
.grid-2-about h2 {
	margin-top: 1.5rem;
	font-size: 1.75rem;
}
.grid-2-about h2:first-child {
	margin-top: 0;
}
.faq-container {
	max-width: 800px;
	margin: 0 auto;
	background: var(--color-dark);
	border-radius: 0.5rem;
}
.faq-item {
	border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child {
	border-bottom: none;
}
.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	background: none;
	border: none;
	color: white;
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
}
/* FILMING GUIDE: Accordion animation & active title color */
.faq-question svg {
	transition: transform 0.3s ease;
}
.faq-item.is-open .faq-question {
	color: var(--color-primary);
}
.faq-item.is-open .faq-question svg {
	transform: rotate(180deg);
}
.faq-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}
.faq-answer p {
	padding: 0 1.5rem;
	margin: 0;
}
.faq-item.is-open .faq-answer {
	max-height: 300px;
	opacity: 1;
}
.faq-item.is-open .faq-answer p {
	padding-bottom: 1.5rem;
}

.faq-section h2 {
	margin-bottom: 20px;
}

/* Responsive adjustments for filming guide */
@media (max-width: 768px) {
	.grid-2-about {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.grid-2-about img {
		max-width: 100%;
		height: auto;
	}

	.grid-2-about h2 {
		font-size: 1.5rem;
		margin-top: 1.25rem;
	}

	.faq-question {
		padding: 1rem;
		font-size: 1rem;
	}

	.faq-answer p {
		padding: 0 1rem;
		font-size: 0.95rem;
	}

	.faq-item.is-open .faq-answer p {
		padding-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.grid-2-about h2 {
		font-size: 1.25rem;
	}

	.faq-question {
		font-size: 0.95rem;
		padding: 0.875rem;
	}

	.faq-answer p {
		font-size: 0.9rem;
	}
}
/* Add these responsive styles for page-header in portfolio.css */

/* TABLET */
@media (max-width: 992px) {
	.page-header {
		padding: 6rem 0 3rem;
	}

	.page-header h1 {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.page-header p {
		font-size: 1rem;
	}
}

/* MOBILE */
@media (max-width: 768px) {
	.page-header {
		padding: 5rem 0 2.5rem;
	}

	.page-header h1 {
		font-size: clamp(1.75rem, 9vw, 2.5rem);
		margin-bottom: 1rem;
	}

	.page-header p {
		font-size: 0.95rem;
		padding: 0 1rem;
	}
}

/* SMALL MOBILE */
@media (max-width: 480px) {
	.page-header {
		padding: 4rem 0 2rem;
	}
}

/* LANDSCAPE MOBILE FIX */
@media (max-height: 500px) and (orientation: landscape) {
	.page-header {
		padding: 3rem 0 2rem;
	}

	.page-header h1 {
		font-size: 2rem;
		margin-bottom: 0.75rem;
	}

	.page-header p {
		font-size: 0.9rem;
	}
}
