/* Location Section Styles */
.location-section {
	padding: 4rem 0;
}

.location-navigation-note {
	color: #6c757d;
	font-size: 1rem;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.location-navigation-note i {
	color: #dc3545;
}

.location-item {
	position: relative;
	margin-bottom: 2rem;
}

.location-box {
	position: relative;
	display: block;
	text-decoration: none;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.location-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.location-box img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.location-box:hover img {
	transform: scale(1.05);
}

.location-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.location-box:hover .location-overlay {
	opacity: 1;
}

.location-icon {
	color: white;
	font-size: 2.5rem;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.location-caption {
	padding: 1rem;
	background: white;
	border-radius: 0 0 8px 8px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-caption h5 {
	margin: 0 0 0.5rem 0;
	color: #2c3e50;
	font-weight: 600;
	font-size: 1.25rem;
}

.location-caption p {
	margin: 0;
	color: #6c757d;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.location-box img {
		height: 200px;
	}

	.location-navigation-note {
		font-size: 0.9rem;
		padding: 0 1rem;
	}

	.location-caption {
		padding: 0.75rem;
	}

	.location-caption h5 {
		font-size: 1.1rem;
	}

	.location-caption p {
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	.location-section {
		padding: 2rem 0;
	}

	.location-box img {
		height: 180px;
	}
}
