/* Base styles and reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Banner Container */
.hero-banner {
  /* Replace with your image link */
  background-image: url('../img/img_landing.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh; /* Scalable viewport height */
  width: 100%;
  display: flex;
}

/* Translucent Dark Overlay for Text Readability */
.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content Layout */
.banner-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
}

/* Typography & Call-To-Action */
.banner-title {
  font-family: sans-serif;
  font-size: 3rem; /* Scalable font sizes */
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-text {
  font-family: sans-serif;
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.banner-btn {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  font-family: sans-serif;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background-color: #0056b3;
}

/* Responsive Adjustments for Mobile Screens */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 40vh; /* Decreased height on mobile */
  }
  
  .banner-title {
    font-size: 2rem; /* Smaller typography */
  }
  
  .banner-text {
    font-size: 1rem;
  }
}
