/* Main Container */
.hero-section {
  width: 100%;
  min-height: 100vh; /* This makes the background cover the whole screen */
  background-image: url('your-image-link.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;    /* THIS CENTERS IT VERTICALLY (Pulls it down from the top) */
  justify-content: center; /* THIS CENTERS IT HORIZONTALLY */
  margin: 0;
  padding: 0;
}

/* The Black Band */
.black-band {
  background-color: rgba(0, 0, 0, 0.7); /* Adjust darkness here */
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

/* Content Wrapper */
.content-wrapper {
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between; /* Keeps text left, form right */
  align-items: center;
}

/* Typography */
.hero-text {
  flex: 1;
  color: #ffffff;
  padding-right: 50px;
}

.hero-text h1 {
  font-family: 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0;
}

.hero-text p {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  margin-top: 15px;
  max-width: 450px;
}

/* Subscription Card */
.subscribe-card {
  background-color: #fdfdfd;
  padding: 35px;
  width: 340px;
  border-radius: 4px;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.card-header .title {
  font-weight: bold;
  font-size: 0.9rem;
  color: #333;
}

.connect-tag {
  display: flex;
  gap: 5px;
  font-size: 10px;
  font-weight: bold;
  color: #777;
  text-align: right;
  line-height: 1.1;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 15px;
  background-color: #2c3e50;
  color: white;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

/* Mobile: Stack items vertically */
@media (max-width: 850px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    padding-right: 0;
    margin-bottom: 30px;
  }
}