.location-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.location-details {
  flex: 0 0 30%;
  max-width: 30%;
}

.location-image {
  flex: 1;
  max-width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}



.location-page-container {
  text-align: center;
  padding: 20px;
}


.location-details > * {
  margin: 20px 0;
}

.location-contact-details p{
  margin: 5px 0;
  padding: 10px;
  font-size: 20px;
}
.location-contact-details i{
  margin-right: 10px;
  font-size: 25px;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-top: 20px;
}




.location-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-card {
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-meta {
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .location-flex-row {
    flex-direction: column;
  }

  .location-details,
  .location-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
