* {
  font-family: Roboto, sans-serif !important;
}
.maincontainer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas:
    "banner"
    "divingsites"
    "footer";
}
.item-a {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.item-b {
  grid-area: banner;
  padding-left: 10%;
  padding-right: 10%;
}
.item-g {
  grid-area: divingsites;
}
.item-h {
  grid-area: footer;
}
.banner {
  position: relative;
  background-color: #fff;
  background-size: cover;
}
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2; /* Ensures it stays above the background */
  pointer-events: none;
  margin-left: -2px;
}

.bannercontenttitle {
  color: #0d3b66;
  font-family: Montserrat, sans-serif;
  font-size: 2.5rem;
  margin-bottom: -40px;
  padding: 30px;
  margin-top: 120px;
  text-align: center;
}
.divingsites {
  background-image: url("../images/ischia_diving_site_background.png");
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 1350px;
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
}
.divingsites h2 {
  font-size: 40px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0d3b66;
  text-align: auto;
  padding-bottom: 30px;
}
.divingcontainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.divingsite {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0px 5px 15px #0d3b66;
  transition: transform 0.3s ease-in-out;
  min-height: 200px;
}
.divingsite:hover {
  transform: translateY(-10px);
}
.divingsite img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s ease-in-out;
}
.divingsite:hover img {
  filter: brightness(1);
}
.siteinfo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  background: #0d3b66;
  padding: 15px;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.divingsite:hover .siteinfo {
  background: #0d3b60;
}
.siteinfo h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}
.siteinfo p {
  margin-top: 5px;
  font-size: 1rem;
  color: #fff;
}
@media (max-width: 890px) {
  .banner {
    max-width: 100%;
    max-height: 500px;
  }
  .bannercontent {
    max-width: 370px;
    min-height: 400px;
    border-width: 0px;
  }
}

@media (max-width: 768px) {
  .banner {
    max-width: 100%;
  }
  .divingsites {
    background-image: none;
  }
}

@media (max-width: 480px) {
  .banner {
    grid-template-columns: repeat(1, 1fr); /* Two columns on tablets */
    max-width: 100%;
  }
  .bannercontent {
    max-width: 100%;
    border-width: 0px;
  }
}
