/* Home Banner Styles */
.home-banner {
  position: relative;
  background-image: url("../image/background/home-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.home-banner .container {
  position: relative;
  z-index: 2;
}

.sub-title {
  color: #f2f2f2;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.headline-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.headline-title br {
  display: none;
}

.home-banner p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 90%;
  margin-bottom: 30px;
  color: #ddd;
}

/* Button Styling */
.button-link {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.8em 1.4em;
  color: white;
  text-decoration: none;
  background: linear-gradient(50deg, #1900f5, #7c09a3, #a40675);
  border: none;
  border-radius: 16px;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
}

.button-link svg {
  margin-right: 8px;
  transform: rotate(30deg);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.button-link:hover svg {
  transform: translateX(5px) rotate(90deg);
}

.button-link:hover {
  transform: scale(1.05);
  background: linear-gradient(50deg, #3020f7, #9f1bb4, #c01085);
}

/* Image Styling */
.home-banner img {
  max-width: 48%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.home-banner img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .headline-title {
    font-size: 2rem;
  }

  .home-banner p {
    font-size: 1rem;
  }

  .home-banner img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .headline-title br {
    display: inline;
  }

  .home-banner .img-fluid {
    justify-content: center !important;
  }
}