@charset "UTF-8";

body {
  background: url('/Gallery-Roofgarden/Roof_Garden_9.webp') no-repeat center center fixed;
  background-size: cover;
}

.text {
	text-align: justify;
	margin-bottom: 20px;
	color: #555;
	font-size: 1.2em;
	padding: 10px 20px 10px 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
  width: 75%;
  margin: 20px auto;
  padding: 0 20px;
}

main h1 {
	text-align: center;
	font-size: 2.5em;
	margin-bottom: 20px;
	padding: 10px 0px 10px;
	color: #444;
}

/* Location Info Section */
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.location-info .photos,
.location-info .map {
  flex: 1;
  min-width: 300px;
}

/* Photo Column */
.location-info .photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-info .photos img {
  width: 100%;
  border: 1px solid #f8c146;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.location-info .photos img:hover {
    transform: scale(1.025);
}

/* Map Column */
.location-info .map h2 {
  	text-align: center;
  	padding: 10px 20px 10px 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  	margin-bottom: 20px;
  	border: 2px solid #f8c146;
}

.location-info .map iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 10px;
  border: 2px solid #f8c146;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
	main {
		width: 100%;
	}
	
	main h1 {
		font-size: 2em;
		margin-bottom: 0px;
	}
	
	.location-info .map iframe {
		max-height: 300px;
	}
}
