@import url('https://fonts.googleapis.com/css2?family=Lora&family=Public+Sans&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	
	--primary: #EE754F;
	--secondary: #F3B5AA;
	--bg: #FEF4F3;
	--light: #636e72;
}

body {
	font-family: 'Public Sans', sans-serif;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	color: #2d3436;
	min-height: 100vh;
	position: relative;
}

h1, h2 {
	font-family: 'Lora', serif;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

a {
	color: #f36348;
	text-decoration: none;
}

.flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(243, 122, 85, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(243, 122, 85, 0.06) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(243, 122, 85, 0.04) 0%, transparent 50%);
	z-index: 1;
}

.container {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 2rem;
	text-align: center;
}

.logo-section {
	margin-bottom: 4rem;
	animation: fadeInUp 1.2s ease-out;
}

.logo img {
	width: 100%;
	max-width: 380px;
}

.tagline {
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--light);
	margin-bottom: 1rem;
}

.location {
	font-size: 0.9rem;
	color: var(--primary);
}

.main-content {
	max-width: 600px;
	margin-bottom: 4rem;
}

.animate{
	animation: fadeInUp 1.2s ease-out 0.3s both;
}

.status-card {
	background: #fbf9f9;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.status-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(243, 122, 85, 0.3), transparent);
}

.status-description {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--light);
	margin-bottom: 2rem;
}

.address-section {
	background: rgba(243, 122, 85, 0.1);
	border: 1px solid rgba(243, 122, 85, 0.3);
	border-radius: 12px;
	padding: 1.8rem;
	position: relative;
	display: inline-grid;
	grid-template-columns: repeat(2, max-content);
	text-align: left;
	gap: 16px;
	margin-bottom: 40px;
}

.address-title {
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary);
	text-align: right;
}

.carreaux::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(images/carreaux.svg);
	opacity: .2;
}

.services{
	display: grid;
	grid-template-columns: 200px 400px;
	align-items: center;
	row-gap: 16px;
	text-align: left;
}

.services img{
	width: 160px;
}

.floating-elements img{
	position: absolute;
	height: 400px;
	top: 50vh;
	transform: translateY(-50%);
	opacity: .6;
	z-index: 0;
}

.floating-elements img:nth-child(even){
	right: 0;
}


footer{
	text-align: center;
	margin-top: 80px;
}

footer::before{
	content: '';
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 300px;
	left: 0;
	bottom: 0;
	background: url(images/footer.svg) no-repeat;
	background-size: auto 300px;
}


@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


@media (max-width: 768px) {
	.logo {
		font-size: 2.8rem;
	}
	
	.container {
		padding: 1.5rem;
	}
	
	.status-card {
		padding: 2rem 1.5rem;
	}
	
	.main-content {
		margin-bottom: 2rem;
	}
	
	.status-title {
		font-size: 1.5rem;
	}
	
	.services{
		grid-template-columns: 1fr;
		justify-items: center;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 2.2rem;
	}
	
	.tagline {
		font-size: 0.9rem;
	}
	
	.status-description {
		font-size: 1rem;
	}
	
	.address-section{
		grid-template-columns: 1fr;
		justify-items: start;
	}
}