@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
	/* clean box sizing for all elements */
	box-sizing: border-box;
}

body {
	/* minimal clean background with soft gradient */
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
	margin: 0;
	padding: 0;
	font-family: 'Rubik', Arial, sans-serif;
	position: relative;
}

a {
	/* elegant link color */
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	/* subtle hover effect on links */
	color: #3498db;
}

.content-area {
	position: relative;
	z-index: 2;
	height: 100vh;
	width: 100%;
	text-align: center;
	padding: 20px;
}

.d-flex {
	display: flex;
}
.align-items-center {
	align-items: center;
}
.justify-content-center {
	justify-content: center;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fade-in {
	opacity: 0; /* make things invisible upon start */
	-webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;

	-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;

	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	&.one {
		-webkit-animation-delay: 0.7s;
		-moz-animation-delay: 0.7s;
		animation-delay: 0.7s;
	}

	&.two {
		-webkit-animation-delay: 1.2s;
		-moz-animation-delay: 1.2s;
		animation-delay: 1.2s;
	}
	&.three {
		-webkit-animation-delay: 1.7s;
		-moz-animation-delay: 1.7s;
		animation-delay: 1.7s;
	}
}

.logo {
	/* keep logo responsive and centered with subtle shadow */
	max-width: 320px;
	width: 60%;
	display: block;
	margin: 0 auto 2rem auto;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
	border-radius: 12px;
}

.tagline {
	/* main tagline styling with elegant typography */
	font-family: "Rubik", sans-serif;
	font-size: 2.5rem;
	font-weight: 500;
	color: #2c3e50;
	margin: 2rem 0 1rem 0;
	letter-spacing: -0.5px;
	line-height: 1.3;
}

.coming-soon {
	/* coming soon text with subtle styling */
	font-family: "Rubik", sans-serif;
	font-size: 1.3rem;
	color: #546e7a;
	margin: 1rem 0;
	font-weight: 300;
}

.address {
	/* address info with clean readable style */
	font-family: "Rubik", sans-serif;
	font-size: 1rem;
	color: #546e7a;
	margin: 1.5rem auto;
	line-height: 1.6;
	max-width: 600px;
	font-weight: 400;
}

.phone {
	/* phone number styling to match address */
	font-family: "Rubik", sans-serif;
	font-size: 1rem;
	color: #546e7a;
	margin: 0.5rem auto;
	line-height: 1.6;
	max-width: 600px;
	font-weight: 400;
}

p {
	/* default paragraph styling */
	color: #2c3e50;
	font-family: "Rubik", sans-serif;
	font-weight: 400;
}

.footer {
	/* minimal footer accent line */
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #3498db 0%, #2c3e50 100%);
	text-align: center;
	padding: 0;
}

/* responsive design for mobile devices */
@media (max-width: 768px) {
	.tagline {
		font-size: 1.8rem;
	}
	
	.coming-soon {
		font-size: 1.1rem;
	}
	
	.address {
		font-size: 0.9rem;
		padding: 0 20px;
	}
	
	.logo {
		max-width: 240px;
		width: 70%;
	}
}
