.hero-banner {
  width: 100vw;
  height: 100vh;
  background: url('img/sony-fx3-banner.jpg') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
  color: white;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text {
  font-size: 2rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}


.hero-button {
  display: inline-block;
  color: white;
  background-color: transparent;
  border: 2px solid #e60000;
  padding: 14px 32px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 0 12px rgba(230, 0, 0, 0.4);
}

.hero-button:hover {
  background-color: #e60000;
  color: white;
}


 (max-width: 600px) {
  .hero-content {
    padding: 20px;
  }
  .hero-text {
    font-size: 1.5rem;
  }
}
