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

/* NAVBAR */
.navbar {
  padding: 15px 20px;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/img/banner-img.jpg") center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 60px;
  box-sizing: border-box;
}
.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero h1 .bold {
  font-weight: normal;
}
.hero button {
  margin-top: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.hero button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.hero button i {
  color: white;
  font-size: 24px;
}

/* IMAGE GALLERY CARDS */
/* Ensure that the card columns and rows use flexbox */
.row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Set all cards to have the same height */
.card {
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure the card takes full height of the column */
}

/* Make the card body take up the available space */
.card-body {
  flex-grow: 1;
}

/* Optionally, set a max height for the images so they don’t stretch too much */
.card-img-top {
  height: 200px; /* or whatever height works best */
  object-fit: cover;
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
  .image-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .image-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar {
    padding: 32px;
  }
}
@media (max-width: 600px) {
  .image-container {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 10px;
  }
}

/* FOOTER */
.footer {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px;
  text-align: center;
  box-sizing: border-box;
}
