.outlet-section {
	width: 100%;
}
.outlet-location-title {
	font-weight: 700;
	letter-spacing: -1.5px;
	padding: 1.5rem 2.5rem;
	font-size: 3.5rem;
	color: #cccccc;
}
.outlet-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1.5px solid #000000;
}
.text-content {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 680px;
	border: 1px solid #000000;
}
.text-content h1 {
	font-size: clamp(3.5rem, 10vw, 6rem);
	line-height: 0.9; 
	margin-bottom: 10rem; 
}
.text-content .status {
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
}
.text-content .address {
	font-size: 0.9rem;
	color: #b0b0b0;
}
.button-group {
	margin-top: 2rem;
}
.button-group .btn {
	display: block;
	width: 250px;
	padding: 0.75rem 1rem;
	border: 1px solid #000000;
	color: #FFFFFF;
	background-color: transparent;
	text-decoration: none;
	text-align: center;
	font-weight: 700;
	letter-spacing: 1px;
	transition: background-color 0.3s, color 0.3s;
	border-left: ridge;
}
.button-group .btn:first-child {
	margin-bottom: 1rem;
}
.button-group .btn:hover {
	background-color: #FFFFFF;
	color: #000000;
}
.image-container {
	border: 1px solid #000000;
	position: relative;
}
.image-caption {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	font-size: 0.8rem;
	letter-spacing: 1px;
	color: #b0b0b0;
}

.outlet-background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 820px) {
	.outlet-grid {
		grid-template-columns: 1fr;
	}
	.text-content {
		order: 2;
	}
	.image-container {
		order: 1;
		border-left: none;
		border-top: 1px solid #000000;
		min-height: 300px;
	}
	.image-container {
		border-left: none;
		border-top: 1px solid #000000;
		min-height: 300px;
	}
	.text-content {
		min-height: auto;
		padding: 2rem 1.5rem;
	}
	.button-group .btn {
		justify-self: center;
		width: 150%;
	}
	.outlet-location-title{
		justify-self: center;
		font-size : 3rem;
	}
	.text-content h1 {
		line-height: 1.1;
		margin: 4rem;
		font-size: 3rem;
	}
	.button-group {
		margin: 2rem;
	}
}


.location-section {
	text-align: center;
}
.location-container {
	padding: 0;
	margin: 0;
	border: 1px solid #000000;
	display: flex;
	height : 600px;
}
.address-info,
.map-box {
	border: 1px solid #000000;
	flex-basis: 50%; 
}
.address-info {
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.address-info .address-text {
	font-size: 4em;
	font-weight: 800;
	line-height: 1.1;
	text-transform: capitalize;
	width: stretch;
}
.map-box {
	padding: 0;
	margin: 0;
}
.map-box iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(1) invert(1);
}
.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	color: #555;
	background: repeating-linear-gradient(
		-45deg,
		#111,
		#111 10px,
		#000 10px,
		#000 20px
	);
}
@media (max-width: 768px) {
	.location-container {
		flex-direction: column;
	}
	.address-info {
		padding: 40px 20px;
	}
	.address-info .address-text {
		font-size: 2.5em;
	}
	.map-box {
		min-height: 300px;
	}
}