.pw-overlay {
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 280px;
}

.pw-logo {
  width: 160px;
  margin-bottom: 8px;
}

.pw-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  outline: none;
  text-align: center;
  letter-spacing: 0.1em;
}

.pw-input:focus {
  border-color: #ff671b;
}

.pw-error {
  color: #ff671b;
  font-size: 13px;
  margin: -8px 0;
  display: none;
}

.pw-submit {
  width: 100%;
  padding: 12px;
  background: #ff671b;
  border: none;
  color: #fff;
  font-family: 'mr-eaves-xl-sans-narrow', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.pw-submit:hover {
  background: #e55a14;
}

.privacy-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
  opacity: 0.75;
  z-index: 50;
  transition: opacity 0.2s;
}

.privacy-link:hover {
  opacity: 1;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body {
  font-family: 'mr-eaves-xl-sans-narrow', sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  min-height: 100vh;
	min-width: 100vw;
	overflow-x: hidden;
}

main {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
}

/* HEADER */
header {
	background: #FFFFFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 32px;
	position: relative;
	z-index: 10;

	@media (max-width: 1024px) { padding: 8px; }
}

.logo-link {
	min-width: 190px;
	max-width: 220px;
}

.logo { width: 100%; }

.header-link {
	color: #ff671b;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 900;
	text-decoration: none;
	
	@media (max-width: 1024px) { margin-top: 10px; }
}

/* MAIN */
.main {
	background-image: url('images/bg.jpg');
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
	flex: 1;
	width: 100%;
	padding: 20px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	position: relative;
	
	@media (max-width: 1024px) {
		flex-direction: column;
		gap: 30px;
		padding: 40px 20px 20px;
	}
}

/* SPIDERMAN IMAGE */
.spiderman {
	width: 22.5%;
	max-width: 360px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;

	@media (max-width: 1024px) {
		width: 27%;
		max-width: 247px;
		left: unset;
		right: 0;
		transform: translate(0);
		z-index: 20;
	}
}

/* COPY SECTION */
.copy {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	max-width: 900px;
	z-index: 10;

	@media (max-width: 1024px) { z-index: unset; }
}

.copy-wrapper {
	@media (max-width: 1024px) {
		background-color: #ff671b;
		padding: 20px;
		position: relative;
		z-index: unset;
	}
}

.z-index-wrapper {
	@media (max-width: 1024px) {
		position: relative;
		z-index: 30;
	}
}


.movie-logo {
	margin-bottom: 15px;
	width: 100%;
	max-width: 400px;
	
	@media (max-width: 1024px) {
		margin-top: 20px;
		width: 65%;
	}
}

h2 {
	font-size: 60px;
	font-weight: 900;
	line-height: 75%;
	margin: 20px 0;
	max-width: 700px;
	
	@media (max-width: 1024px) {
		font-size: 40px;
		max-width: 500px;
	}
}

.event-details {
	@media (max-width: 1024px) {
		background-color: #ff671b;
		padding: 20px;
		width: 100%;
		margin-bottom: 150px;
	}
}

.event-desc {
	font-size: 30px;
	line-height: 90%;
	max-width: 550px;
	margin: 0 auto;
	
	@media (max-width: 1024px) {
		font-size: 24px;
		max-width: 450px;
	}
}

.date-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	margin: 10px 0;

	@media (max-width: 1024px) { margin-top: 0; }
}

.emphasis {
	@media (max-width: 1024px) { max-width: 50px; }
}

h3 {
	color: #FFFFFF;
	font-size: 50px;
	font-weight: 900;
	
	@media (max-width: 1024px) { font-size: 35px; }
}

.location {
	font-size: 24px;
	font-weight: 900;
	line-height: 90%;
	text-transform: uppercase;
	margin: 10px 0;

	@media (max-width: 1024px) { font-size: 20px; }
}

.time {
	font-size: 24px;
	line-height: 90%;

	@media (max-width: 1024px) { font-size: 20px; }
}

.rsvp-btn {
	background-color: #FFFFFF;
	border: none;
	color: #ff671b;
	cursor: pointer;
	font-family: 'mr-eaves-xl-sans-narrow', sans-serif;
	font-size: 36px;
	font-weight: 900;
	text-transform: uppercase;
	padding: 10px 35px;
	margin: 30px 0 10px;
}

.footnote {
	font-size: 12px;
}

/* CAROUSEL */
.carousel {
	flex: 1;
	max-width: 900px;
	
	@media (max-width: 1024px) {
		margin: 20px 0;
		max-width: 540px;
	}
}

.carousel-main {
	position: relative;
	width: 100%;
}

.carousel-window {
	width: 100%;
	overflow: hidden;
	border-radius: 4px;
}

.carousel-track {
	display: flex;
	transition: transform 0.35s ease;
}

.carousel-slide {
	min-width: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

.carousel-arrow {
	background: transparent;
	border: none;
	cursor: pointer;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;

	@media (max-width: 1024px) {
		width: 12px;
		height: 12px;
	}
}

.carousel-arrow--prev {
	left: 15px;

	@media (max-width: 1024px) { left: 10px; }
}

.carousel-arrow--next {
	right: 15px;
	transform: rotate(180deg);

	@media (max-width: 1024px) { right: 10px; }
}

.carousel-dots {
	display: flex;
	gap: 10px;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;

	@media (max-width: 1024px) { bottom: 10px; }
}

.carousel-dot {
	background: rgba(255, 255, 255, 0.5);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	width: 12px;
	height: 12px;
	padding: 0;
	transition: background 0.2s;

	@media (max-width: 1024px) {
		width: 10px;
		height: 10px;
	}
}

.carousel-dot.active {
	background: #ffffff;
}

.hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}
