/* Common Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Banner */

.banner {
  background-image: url("Pictures/Bentotabanner.jpg");
}

/* Small Description Section */

.small-desc {
  background-image: url("Pictures/Introsecbentota.jpg");
  background-size: cover;
  background-position: center;
  color: #000000;
  padding: 50px;
}

.small-desc p {
  font-size: 18px;
  line-height: 1.5;
  background-color: rgba(240, 248, 255, 0.54);
  padding: 1em;
}

.info-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-image img {
  border: 1em solid #000000;
  width: 350px;
  height: auto;
  margin: 2rem;
}

/* Visiting Hours Section */

.visiting-hours {
  text-align: center;
 background-color: #222; 
 padding: 50px;
}

.visiting-hours h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.visiting-hours ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.visiting-hours li {
  margin-bottom: 10px;
}

/* Gallery Section */

.gallery {
  background-color: rgb(69, 84, 78);
  padding: 50px;
}

.gallery h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.gal-contain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.gal-item {
  width: 100%;
  height: 200px; /* Adjust the height as desired */
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-item img:hover {
  transform: scale(1.1);
}

/* Map Section */

.map-section {
  padding: 50px;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media only screen and (max-width: 600px) {
  .map-container {
    width: 100%;
    height: auto;
  }
  .map-container iframe {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .map-container {
    width: 80%;
    height: auto;
  }
  .map-container iframe {
    width: 100%;
    height: auto;
  }
}
