/**
 * Location page styles.
 */

.heldel-location-page,
.page-template-template-location #primary {
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.page-template-template-location .site-content > .ast-container,
.heldel-location-page .site-content > .ast-container {
	max-width: 100%;
	padding: 0;
}

.page-template-template-location .site-main,
.heldel-location-page .site-main {
	margin: 0;
	padding: 0;
}

.heldel-loc-hero {
	position: relative;
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, var(--heldel-primary-blue), var(--heldel-dark-teal));
	background-size: cover;
	background-position: center top;
}

.heldel-loc-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 63, 122, 0.85);
}

.heldel-loc-hero--no-overlay .heldel-loc-hero__content,
.heldel-loc-cta--no-overlay .heldel-loc-cta__content {
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.heldel-loc-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1.5rem;
	color: var(--heldel-white);
	max-width: 850px;
	width: 100%;
}

.heldel-loc-hero__headline {
	display: inline-block;
	max-width: 720px;
	padding: 1.75rem 2rem;
	background: var(--heldel-primary-blue);
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	text-align: center;
}

.heldel-loc-hero__content h1 {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 1rem;
	color: var(--heldel-white);
	line-height: 1.05;
}

.heldel-loc-hero__headline p {
	font-size: clamp(1rem, 2vw, 1.2rem);
	margin: 0 auto;
	max-width: 560px;
	color: var(--heldel-white);
	line-height: 1.6;
	opacity: 1;
}

.heldel-loc-intro {
	padding: 4rem 0;
	background: var(--heldel-white);
}

.heldel-loc-intro__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.heldel-loc-intro__media img,
.heldel-loc-placeholder {
	width: 100%;
	border-radius: 12px;
	min-height: 280px;
	object-fit: cover;
}

.heldel-loc-placeholder {
	background: linear-gradient(135deg, #e8f4f8, #d4e8ec);
}

.heldel-loc-intro__text h2 {
	color: var(--heldel-primary-blue);
	font-size: 1.8rem;
	margin: 0 0 1rem;
}

.heldel-loc-intro__text p {
	color: #444;
	line-height: 1.7;
	margin: 0;
}

.heldel-loc-contact {
	padding: 4rem 0;
	background: #f5f8fa;
}

.heldel-loc-contact__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2rem;
	align-items: stretch;
}

.heldel-loc-contact__info h2 {
	color: var(--heldel-primary-blue);
	margin: 0 0 1.5rem;
}

.heldel-loc-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.heldel-loc-contact__list li {
	display: grid;
	grid-template-columns: 32px 100px 1fr;
	gap: 0.5rem;
	align-items: start;
}

.heldel-loc-contact__list strong {
	color: var(--heldel-primary-blue);
	font-size: 0.85rem;
	text-transform: uppercase;
}

.heldel-loc-contact__list a {
	color: var(--heldel-teal);
	text-decoration: none;
}

.heldel-loc-contact__list a:hover {
	text-decoration: underline;
}

.heldel-loc-map {
	min-height: 360px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 63, 122, 0.12);
}

.heldel-loc-zones {
	padding: 5rem 1.5rem;
	background: #f0f4f8;
	max-width: none;
	margin: 0;
	text-align: center;
}

.heldel-loc-zones h2 {
	color: var(--heldel-primary-blue);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 auto 2.5rem;
	max-width: 1200px;
}

.heldel-loc-zones__list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	text-align: left;
}

.heldel-loc-zones__list li {
	background: var(--heldel-white);
	padding: 1.5rem 1.25rem;
	border-radius: 0;
	border: none;
	border-top: 4px solid var(--heldel-teal);
	box-shadow: 0 8px 24px rgba(0, 63, 122, 0.08);
	transition: transform 0.2s ease;
}

.heldel-loc-zones__list li:hover {
	transform: translateY(-6px);
}

.heldel-loc-check {
	color: var(--heldel-teal);
	font-weight: 700;
	margin-right: 0.5rem;
}

.heldel-loc-cta {
	position: relative;
	padding: 6rem 1.5rem;
	text-align: center;
	background: var(--heldel-dark-teal);
	background-size: cover;
	background-position: center;
	color: var(--heldel-white);
}

.heldel-loc-cta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 63, 122, 0.85);
}

.heldel-loc-cta__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
	color: var(--heldel-white);
}

.heldel-loc-cta__content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin: 0 0 1rem;
	text-transform: uppercase;
	color: var(--heldel-white);
}

.heldel-loc-cta__content p {
	font-size: 1.1rem;
	margin: 0 0 2rem;
	opacity: 0.9;
	color: var(--heldel-white);
}

.heldel-loc-cta__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.heldel-loc-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 0.05em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.heldel-loc-btn--gold {
	background: var(--heldel-gold);
	color: var(--heldel-primary-blue);
}

.heldel-loc-cta .heldel-loc-btn--gold {
	background: var(--heldel-teal);
	color: var(--heldel-white);
}

.heldel-loc-cta .heldel-loc-btn--gold:hover {
	background: var(--heldel-dark-teal);
	color: var(--heldel-white);
}

.heldel-loc-btn--white {
	background: var(--heldel-white);
	color: var(--heldel-primary-blue);
}

.heldel-loc-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
	.heldel-loc-intro__inner,
	.heldel-loc-contact__inner {
		grid-template-columns: 1fr;
	}

	.heldel-loc-contact__list li {
		grid-template-columns: 28px 1fr;
	}

	.heldel-loc-contact__list strong {
		grid-column: 2;
	}

	.heldel-loc-contact__list span,
	.heldel-loc-contact__list a {
		grid-column: 2;
	}
}
