
/* Font imports */
@font-face {
    font-family: "Editor's Note Thin";
    src: url("Editor'sNote-Thin.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Phonic Monospaced Regular';
    src: url('Phonic-MonospacedRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Decagram Light';
    src: url('Decagram-Lt.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


/* Prevent white flash */
body {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	font-family: 'GT America Extended Light', sans-serif;
    color: white;
    background: linear-gradient(to bottom, #D46343, #3B1E10, #000000, #E0E0E0);
    background-image: url('bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
	user-select: none;   /* Prevent text selection cursor */
    outline: none;       /* Remove focus outline */
  /* pointer-events: none; Prevent focus/click */
}

header{
	font-family: 'GT America Extended Light';
    font-size: 48px;
    font-weight: 100;
    letter-spacing: 0.5px;
}

.logo{
	/* filter: invert(1); */
	/* width: 126px; */
	height: 24px;
	margin-top: 5%;
	
}

.wrapper{
    width: 100%;
	max-width: 1340px;
	padding: 0 30px;
	margin: 0 auto;
    overflow: hidden;
}
/* Splash Text */
.splash-text {
    font-size: 36px;
    font-family: "Editor's Note Thin";
    text-align: center;
    color: #FFFFFF;
    opacity: 0;
    animation: fadeInOut 2.5s ease-in-out 0.5s;
}

@keyframes fadeInOut {
	0% { opacity: 0; }
	20% { opacity: 1; }
	80% { opacity: 1; }
	100% { opacity: 0; }
}

.teaser-page {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	opacity: 0;
	animation: fadeInSlideUp 1s ease-in-out 0.5s forwards;
}

@keyframes fadeInSlideUp {
	0% { opacity: 0; transform: translateY(20px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}


.fadeout {
	animation: fadeOut 1.1s ease ;
}

.content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.left-section {
	width: 50%;
	opacity: 0;
	animation: fadeInText 1.2s ease-in-out 1s forwards;
}

.right-section {
    max-width: 479px;
	width: 40%;
	opacity: 0;
	animation: fadeInText 1.5s ease-in-out 1.2s forwards;
}

@keyframes fadeInText {
	0% { opacity: 0; transform: translateY(10px); }
	100% { opacity: 1; transform: translateY(0); }
}

.footer {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05rem;
	font-family: 'Scto Grotesk A Light';
	color: black;
	position: relative;
    margin-bottom: 40px;
	width: 100%;
	opacity: 0;
	animation: fadeInText 1s ease-in-out 1.5s forwards;
}
.footer-menu{
	display: flex;
	gap: 20px;
}
.footer a {
	color: black;
	text-decoration: none;
}

.footer a:hover {
	color: white;
}

/* Main Headline */
h1 {
    font-size: 36px;
    font-family: "Editor's Note Thin";
    font-weight: normal;
}

.teaser-thankyou{
	display:none;
}
.center-section,
.left-section {
	width: 50%;
	opacity: 0;
	animation: fadeInText 1.2s ease-in-out 1s forwards;
	text-align: center;
}

.left-section h1 {
    text-align: left;
	font-size: 24px;
	font-weight: 100;
}
.center-section p,
.left-section p {
	font-family: 'Scto Grotesk A Light';
	font-size: 18px;
	line-height: 1.5;
	color: #E5E5E5;
}
.right-section p {
	font-size: 18px;
    font-family: 'Decagram Light';
    line-height: 1.5;
    color: #E5E5E5;
}
.center-section {
	max-width: 430px;
    margin: 0 auto;
}

.input-group {
	display: flex;
	align-items: center;
	gap: 10px;
    margin-top: 70px;
}

.input-group input {
	padding: 12px;
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 12px;
    font-family: 'Phonic Monospaced Regular';
    outline: none;
    transition: background 0.3s ease-in-out;;
}

.input-group input::placeholder {
	font-family: 'Phonic Monospaced Regular';
    font-size: 12px;
    color: white;
    opacity: 0.7;
}

.input-group input:focus {
	background: rgba(255, 255, 255, 0.2);
}

.input-group button {
	padding: 10px 36px;
    font-size: 12px;
    background: none;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    font-family: 'Phonic Monospaced Regular';
    transition: color 0.5s ease-in-out;
	position: relative;
	overflow: hidden;
}

.input-group button::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: white;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease-in-out;
	z-index: -1;
}

.input-group button:hover::before {
	transform: scaleX(1);
}

.input-group button:hover {
	color: black;
}

.right-section .input-group{
	display: none;
}

/* Thank You Section */
	.teaser-thankyou .right-section p {
    font-size: 14px;
    font-family: 'Phonic Monospaced Regular';
	}
	.teaser-thankyou .left-section p:first-of-type {
    font-size: 36px !important;
    font-family: "Editor's Note Thin" !important;
}
@media (max-width: 768px) {


	body {
		max-width: 400px;
		margin: 0 auto;
		overflow-x: hidden;
	}
	
	.teaser-page {
		max-width: 400px;
		margin: 0 auto;
		text-align: center;
	}
	
	.content {
		flex-direction: column;
		align-items: center;
		top: 0;
	}
	
	.left-section, .right-section, .center-section {
		width: 100%;
		text-align: center;
		padding: 10px 0;
	}
	
	.left-section h1 {
   	 	text-align: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
	}
	
	.left-section .input-group{
		display: none;
	}
	
	.right-section .input-group{
		display: flex;
        margin: 40px auto;
	}

	.input-group {
		flex-direction: column;
		align-items: center;
	}
	
	.input-group input {
        text-align: center;
        box-sizing: border-box;
		width: 100%;
		max-width: 300px;
	}
	
	.input-group button {
        box-sizing: border-box;
		width: 100%;
		max-width: 300px;
	}
	/* Thank You Section */
	.teaser-thankyou .right-section p {
    font-size: 14px;
    font-family: 'Phonic Monospaced Regular';
	}
	.teaser-thankyou .left-section p:first-of-type {
    font-size: 36px !important;
    font-family: "Editor's Note Thin" !important;
}
	.footer {
		font-size: 11px;
    font-family: 'Phonic Monospaced Regular';
		flex-direction: column;
		text-align: center;
		top: 0;
		/* padding-top: 20px;
		padding-bottom: 0px; */
	}
	.footer-menu{
		justify-content: center;
		order: 2;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.3);
	}

	header{
		padding-top: 10%;
		padding-bottom: 10%;
	}
}
