/* --- Custom Home Banner (only for top banner) --- */
.custom-home-banner {
  width: 100vw;
  min-height: 420px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.custom-home-banner-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.custom-home-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.custom-home-banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.custom-home-banner-subtitle {
  font-size: 1.2rem;
  color: #ffe082;
  margin-bottom: 10px;
  display: block;
}
.custom-home-banner-desc {
  font-size: 1.1rem;
  color: #f5f5f5;
  margin-bottom: 28px;
}
.custom-home-banner-btn {
  background: #ff9800;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.custom-home-banner-btn:hover {
  background: #e65100;
  color: #fff;
}
@media (max-width: 768px) {
  .custom-home-banner-title {
    font-size: 2rem;
  }
  .custom-home-banner-content {
    padding: 40px 10px 30px 10px;
  }
}
