* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #4a4a3a;
	color: #e0d6c8;
	font-family: 'Segoe UI', Verdana, Arial, Helvetica, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Header */
header {
	width: 100%;
	max-width: 900px;
	padding: 40px 20px 20px;
	text-align: center;
}

.logo {
	max-width: 100%;
	height: auto;
}

header h1 {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Main */
main {
	width: 100%;
	max-width: 900px;
	padding: 20px;
	flex: 1;
}

/* Films section */
.films {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 30px;
}

.films-image img {
	width: 246px;
	height: auto;
	border-radius: 8px;
}

.films-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1;
}

.film-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.puce {
	width: 23px;
	height: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}

.film-title {
	font-size: 15px;
	font-weight: 600;
	color: #ff9900;
	text-decoration: none;
	transition: color 0.2s;
}

.film-title:hover {
	color: #ffcc00;
}

.film-desc {
	font-size: 14px;
	color: #ffcc66;
	line-height: 1.5;
	margin-top: 6px;
}

/* Footer */
footer {
	width: 100%;
	max-width: 900px;
	padding: 30px 20px 40px;
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-link {
	font-size: 14px;
	color: #ff9900;
	text-decoration: none;
	padding: 8px 20px;
	border: 1px solid rgba(255, 153, 0, 0.3);
	border-radius: 20px;
	transition: all 0.2s;
}

.footer-link:hover {
	background: rgba(255, 153, 0, 0.15);
	color: #ffcc00;
	border-color: rgba(255, 204, 0, 0.5);
}

/* Responsive tablette */
@media (max-width: 768px) {
	.films {
		flex-direction: column;
		align-items: center;
		gap: 24px;
		padding: 20px;
	}

	.films-image img {
		width: 220px;
	}
}

/* Responsive smartphone */
@media (max-width: 480px) {
	header {
		padding: 16px 12px 12px;
	}

	main {
		padding: 12px;
	}

	.films {
		padding: 16px;
		gap: 16px;
		border-radius: 8px;
	}

	.films-image img {
		width: 180px;
	}

	.film-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 8px;
	}

	.puce {
		display: none;
	}

	.film-title {
		font-size: 16px;
	}

	.film-desc {
		font-size: 13px;
	}

	footer {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 20px 12px 30px;
	}

	.footer-link {
		font-size: 15px;
		padding: 12px 24px;
		width: 100%;
		text-align: center;
	}
}
