/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body Style */
body {
  background-color: #000;
  color: #fdf7f2;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  text-align: center;
  max-width: 500px;
  padding: 40px 20px;
  border-radius: 10px;
}

/* Title */
h1 {
  font-size: 2.8em;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Tagline */
.tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
}

/* Form */
form.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input Field */
input {
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #333;
  background: #111;
  color: #fdf7f2;
  outline: none;
}

input::placeholder {
  color: #888;
}

/* Button */
button {
  background-color: #fdf7f2;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ddd6ce;
}

/* Footer */
.footer {
  margin-top: 20px;
  font-size: 0.85em;
  color: #777;
}
.subscribe-section {
  max-width: 500px;
  margin: 60px auto;
  padding: 40px;
  background-color: #0f0f0f;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
}

.subscribe-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subscribe-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-form input[type="email"] {
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  outline: none;
}

.subscribe-form button {
  background-color: #fff;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.subscribe-form button:hover {
  background-color: #ddd;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .container {
    padding: 30px 15px;
  }

  h1 {
    font-size: 2.2em;
  }

  .tagline {
    font-size: 1em;
  }

  input[type="email"] {
    font-size: 1rem;
    padding: 10px;
  }

  button {
    font-size: 1rem;
    padding: 10px;
  }

  .footer {
    font-size: 0.75em;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }

  .tagline {
    font-size: 0.95em;
  }

  .form {
    gap: 12px;
  }
}
