@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;600;800&display=swap");

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

body {
	font-family: 'Inter', sans-serif;
	background: #e8650a;
	color: #4a2000;
	min-height: 100vh;
	min-width: 320px;
	overflow: hidden;
}

/* Animated diagonal lines using existing #bg div */
#bg {
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background:
		repeating-linear-gradient(
			45deg,
			transparent,
			transparent 30px,
			rgba(255, 255, 255, 0.08) 30px,
			rgba(255, 255, 255, 0.08) 60px
		),
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 30px,
			rgba(0, 0, 0, 0.06) 30px,
			rgba(0, 0, 0, 0.06) 60px
		);
	animation: moveLines 6s linear infinite;
	will-change: transform;
	z-index: 0;
	pointer-events: none;
}

@keyframes moveLines {
	0% { transform: translate(0, 0); }
	100% { transform: translate(42.43px, 42.43px); }
}

#overlay {
	display: none;
}

#wrapper {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

#main {
	text-align: center;
	width: 100%;
	max-width: 500px;
}

/* Header card — glass */
#header {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 3rem 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 32px rgba(120, 40, 0, 0.25);
}

#header img {
	max-width: 160px;
	height: auto;
	border-radius: 12px;
	border: 3px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 4px 15px rgba(120, 40, 0, 0.2);
	margin-bottom: 1.5rem;
}

#header h1 {
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(120, 40, 0, 0.3);
}

#header h2 {
	font-size: 0.9rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.15em;
	margin: 0.3rem 0;
}

#header p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 0.5rem;
}

/* Email button */
#header a {
	display: inline-block;
	margin-top: 1.5rem;
	text-decoration: none;
	color: #fff;
}

#header a div {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 0.8rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 15px rgba(120, 40, 0, 0.15);
	transition: all 0.25s ease;
}

#header a div:hover {
	background: rgba(255, 255, 255, 0.28);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(120, 40, 0, 0.25);
}

#header a div:active {
	transform: translateY(0);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 8px rgba(120, 40, 0, 0.2);
}

#header a b {
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
}

/* Footer */
#footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 12px;
}

.copyright {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 300;
}

.tools {
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.4);
}

.tools a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	border: none;
	transition: color 0.2s ease;
}

.tools a:hover {
	color: #fff;
}

/* GTM noscript iframe */
.gtm-iframe {
	display: none;
	visibility: hidden;
}

/* Mobile */
@media screen and (max-width: 480px) {
	#header {
		padding: 2rem 1.5rem;
		border-radius: 20px;
	}

	#header h1 {
		font-size: 1.6rem;
	}
}
