* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: url('img/background.webp') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: auto;
  border-radius: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

p.description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.inline-video {
  max-width: 100%;
  height: 400px;
  width: 600px;
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.form-box {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.form-box input[type="email"] {
  padding: 0.5rem;
  width: 70%;
  max-width: 300px;
  border-radius: 4px;
  border: none;
}

footer {
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: 1rem;
  font-size: 0.9rem;
}

footer a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 0.5rem;
}

.mc-field-group label {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  display: block;
  color: #FFFFFF;
}

.mc-field-group input[type="email"] {
  font-size: 1.2rem;
  padding: 10px 12px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-weight: 300;
  margin-top: 0.3rem;
  transition: border-color 0.3s ease;
}

.mc-field-group input[type="email"]:focus {
  border-color: #218A67;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

#mc-embedded-subscribe {
  background-color: #4DA239;   /* Bright green */
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

#mc-embedded-subscribe:hover {
  background-color: #218A67;  /* Darker green on hover */
  box-shadow: 0 6px 12px rgba(0,86,179,0.5);
}


@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  .content {
    padding: 1rem;
  }

  p.description {
    font-size: 1rem;
  }
}
