/* Hero Header */
.hero-section {
    background: url("/images/abbe-sublett-nxZDMUQhN4o-unsplash.jpg") no-repeat
        center center/cover;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
    margin-top: 65px;
}
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  width: 100%;
   max-width: 1200px; /* biar rata sama container navbar */
  margin: 0 auto;
    white-space: nowrap;

  padding-right: 86.875rem;  /* sejajar dengan logo navbar desktop */
}

body {
  overflow-x: hidden;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-left: 1.6rem;

}
@media (max-width: 768px) {
  .hero-content {
    text-align: left !important;
    padding-right: 0 !important;
    margin-left: -2.3rem !important; /* geser sedikit lagi ke kiri */
    padding-left: 0 !important;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-left: 0 !important;
  }
}


