* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.showcase {
	position: absolute;
	right: 0;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #111;
	color: #fff;
	z-index: 2;
	transition: 1.2s;
}

.showcase.active {
	right: 300px;
}

.showcase header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 100px 10px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.45);
}

.logo {
	text-transform: uppercase;
	cursor: pointer;
}

.toggle {
	position: relative;
	width: 60px;
	height: 60px;
	background: url('folderplus.png');
	background-size: 30px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.toggle.active {
	background: url('close.png');
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.showcase video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	opacity: 0.8;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0e808b;
	mix-blend-mode: overlay;
}

.text {
	position: relative;
	z-index: 10;
}

.text h2 {
	font-size: 5em;
	font-weight: 800;
	line-height: 1em;
	text-transform: uppercase;
}

.text h3 {
	font-size: 4em;
	font-weight: 700;
	line-height: 1em;
	text-transform: uppercase;
}

.text p {
	font-size: 1.1em;
	margin: 20px 0;
	font-weight: 400;
	max-width: 700px;
}

.text a {
	display: inline-block;
	font-size: 1em;
	background: #fff;
	text-decoration: none;
	padding: 10px 30px;
	color: #111;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.2s;
}

.text a:hover {
	letter-spacing: 6px;
}

.social {
	position: absolute;
	bottom: 20px;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #12edd052;
	padding: 10px;
	border-radius: 10px;
	margin-top: 25px;
}

.social li {
	list-style: none;
}

.social li a {
	font-size: 1.8em;
	display: inline-block;
	margin-right: 20px;
	transform: scale(0.8);
	filter: invert(1);
	transition: 0.5s;
}

.social li a:hover {
	transform: scale(0.85) translateY(-10px);
}

.menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu ul {
	position: relative;
	list-style: none;
}

.menu ul li a {
	text-decoration: none;
	font-size: 24px;
	color: rgb(236, 14, 14);
	line-height: 55px;
}

.menu ul li a:hover {
	color: steelblue;
}

/* Responsive — mobile-first overrides */
@media (max-width: 900px) {
	.showcase {
		padding: 60px 30px;
	}

	.showcase header {
		padding: 20px 30px 10px;
	}

	.text h2 {
		font-size: 3em;
	}

	.text h3 {
		font-size: 2em;
	}

	.text p {
		font-size: 1em;
		max-width: 100%;
	}

	.text a {
		padding: 8px 20px;
		font-size: 0.95em;
	}

	.social li a {
		font-size: 1.6em;
		margin-right: 14px;
	}

	.menu {
		width: 240px;
	}
}

@media (max-width: 600px) {
	.showcase {
		position: relative;
		padding: 40px 16px;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.showcase header {
		position: relative;
		padding: 12px 16px;
		background: rgba(0, 0, 0, 0.35);
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.toggle {
		width: 48px;
		height: 48px;
		background-size: 22px;
	}

	.text h2 {
		font-size: 2.2em;
		line-height: 1.05em;
	}

	.text h3 {
		font-size: 1.5em;
	}

	.text p {
		font-size: 0.95em;
		margin: 12px 0;
	}

	.text a {
		display: block;
		margin: 8px 0;
		padding: 10px 18px;
	}

	.social {
		margin: 20px 0 0 0;
		bottom: 12px;
		left: 12px;
		padding: 8px;
	}

	.social li a {
		font-size: 1.4em;
		margin-right: 12px;
	}

	.menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 260px;
		height: 100%;
		background: rgba(255, 255, 255, 0.98);
		transform: translateX(100%);
		transition: transform 0.35s ease;
		box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
		z-index: 1200;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu.open {
		transform: translateX(0);
	}

	.overlay {
		mix-blend-mode: multiply;
		background: rgba(48, 172, 230, 0.6);
	}

	.showcase video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		opacity: 0.7;
	}

	.text {
		margin-top: 8vh;
		z-index: 10;
		width: 100%;
	}
}

@media (max-width: 380px) {
	.text h2 {
		font-size: 1.9em;
	}

	.text h3 {
		font-size: 1.2em;
	}

	.text p {
		font-size: 0.9em;
	}

	.toggle {
		width: 44px;
		height: 44px;
	}
}

/* Floating mute/unmute button (global) */
.mute-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #ffffff;
	color: #111;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: all 0.2s ease;
}

.mute-btn:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
	transform: translateY(-2px);
}

.mute-btn:active {
	transform: scale(0.96);
}

.mute-btn i {
	font-size: 1.2rem;
	pointer-events: none;
}

@media (max-width: 600px) {
	.mute-btn {
		right: 12px;
		bottom: 12px;
		width: 48px;
		height: 48px;
	}

	.mute-btn i {
		font-size: 1.1rem;
	}

	.mute-btn:hover {
		transform: translateY(-1px);
	}
}