/* ==========================================================================
   Voove Footer — 4-Column Layout
   ========================================================================== */

/* ==========================================================================
   1. Footer Container
   ========================================================================== */

.voove-footer {
	background-color: var(--voove-dark-grey);
	border-top: 1px solid var(--voove-charcoal);
	padding-top: 4rem;
	padding-bottom: 0;
	position: relative;
	overflow: hidden;
}

.voove-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(227, 25, 55, 0.25), rgba(227, 25, 55, 0.25)),
		url('/wp-content/uploads/2026/02/AdobeStock_765016334-scaled.jpeg') center / cover no-repeat;
	opacity: 0.08;
	z-index: 0;
	pointer-events: none;
}

.voove-footer__inner {
	width: 100%;
	max-width: var(--voove-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--voove-gap);
	padding-right: var(--voove-gap);
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   2. Grid Layout
   ========================================================================== */

.voove-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
}

/* ==========================================================================
   3. Brand Column
   ========================================================================== */

.voove-footer__logo {
	max-height: 40px;
	width: auto;
	margin-bottom: 1rem;
}

.voove-footer__logo-link {
	display: inline-block;
	margin-bottom: 1rem;
}

.voove-footer__logo-link .voove-footer__logo {
	margin-bottom: 0;
}

.voove-footer__logo-text {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--voove-white);
	text-decoration: none;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.voove-footer__logo-text:hover,
.voove-footer__logo-text:focus {
	color: var(--voove-red);
}

.voove-footer__tagline {
	color: var(--voove-red);
	font-weight: 600;
	font-size: 0.9375rem;
	margin-bottom: 1rem;
	margin-top: 0;
}

.voove-footer__description {
	color: var(--voove-light-grey);
	font-size: 0.875rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	margin-top: 0;
}

/* ==========================================================================
   4. Social Links
   ========================================================================== */

.voove-footer__social {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.voove-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--voove-light-grey);
	transition: color var(--voove-transition);
}

.voove-footer__social-link:hover,
.voove-footer__social-link:focus {
	color: var(--voove-red);
}

.voove-footer__social-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* ==========================================================================
   5. Column Headings
   ========================================================================== */

.voove-footer__heading {
	color: var(--voove-white);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0;
	margin-bottom: 1.25rem;
}

/* ==========================================================================
   6. Link Lists
   ========================================================================== */

.voove-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.voove-footer__links li {
	margin-bottom: 0.625rem;
}

.voove-footer__links li:last-child {
	margin-bottom: 0;
}

.voove-footer__links a {
	color: var(--voove-light-grey);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color var(--voove-transition);
}

.voove-footer__links a:hover,
.voove-footer__links a:focus {
	color: var(--voove-red);
}

/* ==========================================================================
   7. Contact Items
   ========================================================================== */

.voove-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.voove-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.voove-footer__contact-item:last-child {
	margin-bottom: 0;
}

.voove-footer__contact-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	fill: var(--voove-red);
	margin-top: 0.15rem;
}

.voove-footer__contact-item a {
	color: var(--voove-light-grey);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color var(--voove-transition);
}

.voove-footer__contact-item a:hover,
.voove-footer__contact-item a:focus {
	color: var(--voove-red);
}

.voove-footer__contact-item span {
	color: var(--voove-light-grey);
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* ==========================================================================
   8. Bottom Bar
   ========================================================================== */

.voove-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-top: 1px solid var(--voove-charcoal);
	text-align: center;
	position: relative;
	z-index: 1;
}

.voove-footer__bottom p {
	color: var(--voove-light-grey);
	font-size: 0.8125rem;
	margin: 0;
}

/* ==========================================================================
   9. Responsive — Tablet (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
	.voove-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.voove-footer__col--brand {
		grid-column: 1 / -1;
	}
}

/* ==========================================================================
   10. Responsive — Mobile (max-width: 600px)
   ========================================================================== */

@media (max-width: 600px) {
	.voove-footer {
		padding-top: 3rem;
	}

	.voove-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.voove-footer__col--brand {
		grid-column: auto;
	}

	.voove-footer__bottom {
		margin-top: 2rem;
	}
}
