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

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	overflow-x: hidden;
}

.site-wrapper {
	text-align: center;
	background-color: black;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
	background: #000;
	width: 100%;
}

.footer-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, transparent, #D2042D, transparent);
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.8rem 2.5rem;
	gap: 1rem;
}

/* Social block */
.footer-social {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

.footer-follow {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.65rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #555;
}

.footer-icons {
	display: flex;
	gap: 1.2rem;
}

.footer-icons a {
	color: #fff;
	font-size: 1.3rem;
	transition: color 0.2s ease, transform 0.2s ease;
}

.footer-icons a:hover {
	color: #D2042D;
	transform: translateY(-3px);
}

/* Copyright */
.footer-copy {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.7rem;
	letter-spacing: 1px;
	color: #444;
	text-align: center;
	flex: 1;
}

/* Business branding */
.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-direction: row-reverse;
	text-decoration: none;
}

.footer-logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: invert(1);
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.footer-brand:hover .footer-logo {
	opacity: 1;
}

.footer-brand-name {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.8rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #555;
	transition: color 0.2s ease;
}

.footer-brand:hover .footer-brand-name {
	color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		align-items: center;
		padding: 1.5rem 1rem;
		gap: 1.2rem;
	}

	.footer-social {
		align-items: center;
	}

	.footer-brand {
		flex-direction: column;
	}
}

/* Header styles */
.header {
	border-radius: 15px;
	position: fixed;
	border: 5px solid #D2042D;
	width: 100%;
	max-width: 100vw;
	height: 100vh;
	transition: padding 0.3s ease, width 0.3s ease, height 0.3s ease, margin 0.3s ease, border-radius 0.3s ease;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	pointer-events: none;
	z-index: 100000;
}
