/* Import Montserrat font (same as BannerSlider) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');

.affects-container {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.affects-image {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.affects-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
}

.affects-pre-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
  overflow: visible;
}

.affects-title {
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
  overflow: visible;
}

.affects-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.03em;
  overflow: visible;
}

/* Responsive styles */
@media (max-width: 768px) {
  .affects-pre-title {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
  
  .affects-title {
    font-size: 60px;
    margin: 0 0 10px 0;
  }
  
  .affects-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .affects-pre-title {
    font-size: 16px;
    margin: 0 0 8px 0;
  }
  
  .affects-title {
    font-size: 44px;
    margin: 0 0 8px 0;
  }
  
  .affects-subtitle {
    font-size: 20px;
  }
}

