/* === Global Reset & Base === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
	color: #0f1419;
	background: linear-gradient(135deg, #f5f7fa, #edf0f5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
	text-align: center;
}

/* === Header === */
.header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-top: 2rem;
}

.header svg {
	height: 60px;
	fill: #1b3a6b;
}

/* === Language Switcher === */
.lang-switcher {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	gap: 0.4rem;
}

.lang-switcher button {
	border: none;
	background: transparent;
	color: #1b3a6b;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.2s ease;
}

.lang-switcher button:hover {
	color: #142b50;
}

.lang-switcher button.active {
	color: #142b50;
	text-decoration: underline;
}

/* === Main Content === */
.main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

h1 {
	font-size: 3.2rem;
	color: #1b3a6b;
	margin-bottom: 0.7rem;
}

.tagline {
	color: #444;
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
}

/* === Countdown (optional placeholder support) === */
#countdown {
	display: flex;
	justify-content: center;
	gap: 1.8rem;
	margin-bottom: 2.5rem;
}

#countdown span {
	font-size: 2.3rem;
	font-weight: 600;
	color: #1b3a6b;
	display: block;
}

#countdown small {
	color: #555;
}

/* === Notify Form === */
#notify-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

#notify-form input {
	padding: 0.8rem 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 260px;
	font-size: 1rem;
	transition: border-color 0.2s ease;
}

#notify-form input:focus {
	border-color: #1b3a6b;
	outline: none;
}

#notify-form button {
	background-color: #1b3a6b;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 0.8rem 1.4rem;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

#notify-form button:hover {
	background-color: #142b50;
}

.hidden {
	display: none;
}

#feedback {
	color: #1b3a6b;
	margin-top: 0.5rem;
	font-weight: 500;
}

/* === Footer === */
.footer {
	padding: 1.5rem;
	text-align: center;
	font-size: 0.9rem;
	color: #444;
	border-top: 1px solid #ddd;
}

.footer .social {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 0.6rem;
}

.footer .social a {
	color: #1b3a6b;
	text-decoration: none;
	font-weight: 500;
}

.footer .social a:hover {
	color: #142b50;
}

/* === Buttons & Inputs (shared refinements) === */
button,
input[type="submit"] {
	transition: all 0.3s ease;
}

input[type="email"]::placeholder {
	color: #777;
}

/* === Responsive === */
@media (max-width: 600px) {
	h1 {
		font-size: 2.3rem;
	}
	#notify-form input {
		width: 100%;
	}
}

#notify-form {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	background: white;
	border-radius: 50px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 420px;
	transition: box-shadow 0.3s ease;
}

#notify-form:focus-within {
	box-shadow: 0 4px 16px rgba(27, 58, 107, 0.2);
}

#notify-form input {
	flex-grow: 1;
	padding: 0.9rem 1.3rem;
	border: none;
	outline: none;
	font-size: 1rem;
	border-radius: 0;
}

#notify-form button {
	background-color: #1b3a6b;
	color: #fff;
	border: none;
	padding: 0 1.6rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	border-radius: 0 50px 50px 0;
}

#notify-form button:hover {
	background-color: #142b50;
	transform: translateY(-1px);
}

#feedback {
	color: #1b3a6b;
	font-weight: 500;
	margin-top: 1rem;
}

.hidden {
	display: none;
}

@media (max-width: 500px) {
	#notify-form {
		flex-wrap: wrap;
		border-radius: 8px;
	}
	#notify-form input,
	#notify-form button {
		border-radius: 8px;
		width: 100%;
	}
}
