:root {
	--primary: #2E7D32;
	--bg-dark: #121417;
	--bg-light: #ffffff;
	--transition: 0.4s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	color: #e0e0e0;
	line-height: 1.6;
	background: var(--bg-dark);
	overflow-x: hidden;
}

/* TEXT */
h1 {
	font-weight: 400;
	font-size: 2.6rem;
	margin-bottom: 0.5rem;
	color: #111;
	text-align: center;
}

h2 {
	font-weight: 300;
	color: var(--primary);
	margin-bottom: 1.5rem;
	text-align: center;
}

p {
	color: #444;
	margin-bottom: 1.2rem;
	line-height: 1.7;
}

/* NAVIGATION */
nav {
	background: #0D0F12;
	width: 250px;
	height: 100%;
	position: fixed;
	left: -250px;
	top: 0;
	transition: var(--transition);
	z-index: 10;
	padding-top: 60px;
}

nav.open {
	left: 0;
}

nav ul li {
	list-style: none;
	padding: 15px 40px;
	color: #ccc;
	text-align: right;
	cursor: pointer;
	transition: 0.3s;
	font-size: 1.1rem;
}

nav ul li:hover {
	color: #A5D6A7;
	transform: translateX(-5px);
}

/* SIDEBAR BUTTON */
.openNav {
	position: fixed;
	top: 20px;
	left: 20px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 6px;
	cursor: pointer;
	z-index: 9999;
	transition: var(--transition);
}

.openNav.open {
	transform: translateX(250px);
}

/* ICON */
.icon,
.icon:before,
.icon:after {
	content: "";
	position: absolute;
	width: 26px;
	height: 2px;
	background: white;
	transition: var(--transition);
}

.icon {
	top: 24px;
	left: 12px;
}

.icon:before {
	top: -8px;
}

.icon:after {
	top: 8px;
}

.openNav.open .icon {
	background: transparent;
}

.openNav.open .icon:before {
	transform: rotate(-45deg);
	top: 0;
}

.openNav.open .icon:after {
	transform: rotate(45deg);
	top: 0;
}

/* MAIN CONTENT */
.wrapper {
	background: var(--bg-light);
	padding: 50px;
	min-height: 100vh;
	transition: var(--transition);
	color: #222;
}

.wrapper.open {
	transform: translateX(250px);
	box-shadow: 0 0 60px rgba(0,0,0,0.4);
	cursor: pointer;
}

.wrapper p {
	color: #333;
}

.wrapper li {
	color: #333;
}

section {
	max-width: 650px;
	margin: 0 auto 80px auto;
	padding-top: 60px;
}

/* HERO */
.hero-img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* SIDE BY SIDE */
.image-row {
	display: flex;
	gap: 15px;
	margin: 20px 0 30px 0;
	justify-content: center;
}

.image-row img {
	width: 100%;
	max-width: 300px;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* IMAGES */
img {
	width: 100%;
	border-radius: 10px;
	margin: 20px 0;
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* POSTER GRID */
.poster-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 20px 0 25px 0;
	justify-items: center;
}

.poster-grid img {
	width: 100%;
	max-width: 150px;
	height: 220px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: 0.25s ease;
}

.poster-grid img:hover {
	transform: scale(1.05);
}

/* FORM */
form {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

label {
	margin-bottom: 5px;
	font-size: 1.2em;
	font-weight: bold;
	color: black;
}

input,
textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	font-family: inherit;
	font-size: 0.9em;
}

input:focus,
textarea:focus {
	outline: none;
	border-color: var(--primary);
}

.submit-btn {
	background-color: var(--primary);
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
	transition: background 0.3s;
	align-self: flex-start;
}

.submit-btn:hover {
	background-color: #000034;
}

/* BACK TO TOP */
#backToTop {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 999;
	width: 50px;
	height: 50px;
	background-color: var(--primary);
	color: white;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 22px;
	transition: 0.3s ease;
}

#backToTop:hover {
	background-color: #1B5E20;
	transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 800px) {
	.poster-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.image-row {
		flex-direction: column;
		align-items: center;
	}
}

/* LIGHTBOX */
#lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
	cursor: pointer;
}