/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------*/
/* Attractions Page */

/* Hero Section */
.attractions-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("/images/Historical-temples-of-Bali.png") center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.attractions-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.123);
}
.attractions-hero .attractions-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.attractions-hero-overlay {
  background-color: #1b423a85;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.attractions-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.attractions-hero p {
  font-size: 1.25rem;
}

/* Main Content Layout */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}

.temples h2 {
  text-align: center;
  font-size: 3rem;
  margin: 30px 0px;
}
.temples p {
  text-align: center;
  font-size: 1.2rem;
  margin: 30px 0px;
}
.beaches h2 {
  text-align: center;
  font-size: 3rem;
  margin: 30px 0px;
}
.beaches p {
  text-align: center;
  font-size: 1.2rem;
  margin: 30px 0px;
}
.cultural-landmarks h2 {
  text-align: center;
  font-size: 3rem;
  margin: 30px 0px;
}
.cultural-landmarks p {
  text-align: center;
  font-size: 1.2rem;
  margin: 30px 0px;
}

/* Interactive Map Section */
.map-section {
  margin: 2rem 0;
  text-align: center;
}
.map-section h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.map-section p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.map-container {
  width: 100%;
  height: 500px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Styles */
@media (max-width: 1250px) {
  .attractions-hero h1 {
    font-size: 2.5rem;
  }
  .attractions-hero p {
    font-size: 1.1rem;
  }
  .attractions-hero {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 95%;
  }
  .map-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .map-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .attractions-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .attractions-hero p {
    font-size: 1rem;
  }
  .temples h2 {
    text-align: center;
    font-size: 1.5rem;
    margin: 30px 0px;
  }
  .temples p {
    text-align: center;
    font-size: 1rem;
    margin: 30px 0px;
  }
  .beaches h2 {
    text-align: center;
    font-size: 1.5rem;
    margin: 30px 0px;
  }
  .beaches p {
    text-align: center;
    font-size: 1rem;
    margin: 30px 0px;
  }
  .cultural-landmarks h2 {
    text-align: center;
    font-size: 1.5rem;
    margin: 30px 0px;
  }
  .cultural-landmarks p {
    text-align: center;
    font-size: 1rem;
    margin: 30px 0px;
  }
}