/* ==========================
   BANNER STYLES
   ========================== */

.banner {
  position: relative;
  background: url('../assets/banner-bg.png') no-repeat top center/cover;
  height: 95vh;
  display: flex;
  align-items: flex-end; /* keep content bottom */
  justify-content: center;
  text-align: center;
  color: #111;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

/* overlay (optional, for readability over background) */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner-content {
  max-width: 800px;
  margin-bottom: 60px;
  padding: 20px;
}

/* Headings */
.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.banner-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.banner-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

/* Buttons */
.banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-buttons .btn {
  background: #20a2a8;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner-buttons .btn:hover {
  background: #17868a;
}

.banner-buttons img {
  height: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .banner {
    height: auto;
    padding: 60px 20px;
  }

  .banner-content {
    margin-bottom: 30px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }
}
