@import url('config.css');

.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/banner.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 80px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.banner-content {
  max-width: 800px;
  padding: 0 20px;
  color: white;
  margin-left: 10%;
}

.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-btns {
  display: flex;
  gap: 20px;
}

.banner-btns .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.banner-btns .btn i {
  margin-right: 8px;
}

@media (max-width: 992px) {
  .banner-content {
    margin-left: 5%;
  }
  
  .banner-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 80vh;
  }
  
  .banner-content {
    margin-left: 0;
    text-align: center;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-btns {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
}