.home-page {
  gap: 2%;
  width: 100%;
}

.title {
  background-image: url('/static/img/landingPage/home-page-title.png');
  background-size: cover;
  background-position: center;
  display: flex;
  min-height: 50vh;
  color: white;
  width: 100%;
  position: relative;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  align-items: center;
}

.title-content {
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  left: 10%;
  max-width: 53%;
  z-index: 2;
}

.title-heading {
  margin-bottom: 2rem;
  font-size: 4rem;
  line-height: 1.2;
}

.title-description {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.2;
}

.section-title {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 32px;
  color: #333;
  line-height: 1.5;
}

.section-container {
  margin: 0 auto;
  padding: 30px 20px;
  max-width: 85%;
}
  
.section-standard-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.section-standard-container > * {
  flex: 1;
}

.explore-tile {
  padding: 10px;
  display: block;
  position: relative;

  img {
    width: 100%;
    height: auto;
    margin: 5px 0 20px 0;
    border-radius: 8px;
    padding: 15px;
  }
}

.explore-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  cursor: pointer;
}

.explore-title {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #666;
  display: inline-flex;
  padding-left: 15px;

  svg {
    width: 0.8em;
    height: 0.8em;
    margin-left: 0.6em;
  }
}

.explore-description {
  font-size: 1.9rem;
  color: #666;
  padding-left: 15px;
}

.link-span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

button {
  padding-inline: 16px;
  width: fit-content;
}
.discover-tabs {
  display: flex;
  gap: 1.5rem;

  button:hover {
    box-shadow: none;
  }
}

.tab {
  padding: 10px 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.5rem;
  color: #555;
  letter-spacing: 0.5px;
  width: fit-content;
  border-radius: 0px;
  border-style: none;
}

.tab.active {
  color: #007BFF;
  font-weight: bold;
  border-bottom: 2px solid #007BFF; /* underline only */
}

.underline {
  height: 2px;
  background-color: #ccc;
  width: 100%;
  margin-bottom: 20px;
}

.discover-container {
  display: none;
  padding: 15px 0;
}

.discover-container.active {
  display: flex;
}

.discover-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bolder;
}

.discover-description {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.container-right-div {
  text-align: center;

  img {
    width: 80%;
    height: auto;
  }
}

.access {
  background-color: #4604AE;
  line-height: 1.5;
}

.access-left-div {
  color: white;
  max-width: 90%;

  .access-subtext {
    font-weight: bold;
  }

  .access-title {
    font-size: 3.3rem;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: bolder;
  }

  .access-description {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }

  button {
    background: #f0f0f0;
    color: #007BFF;
    font-weight: bold;
  }
}