@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

header .logo {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #fff;
}

.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/welead.webp') center/cover no-repeat;
  text-align: center;
  padding: 0 5%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-info {
  background: #111;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #fff;
}

.contact-info .item {
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
}

.contact-info a {
  text-decoration: underline;
  color: #eee;
}

.email-form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
}

.email-form input,
.email-form textarea {
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

.email-form textarea {
  min-height: 100px;
}

.email-form button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.email-form button:hover {
  background-color: #ccc;
}

footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }

  .contact-info .item {
    justify-content: center;
  }

  .email-form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero {
    padding: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .contact-info h2 {
    font-size: 1.2rem;
  }

  .email-form input,
  .email-form textarea {
    font-size: 0.9rem;
  }

  .email-form button {
    font-size: 0.95rem;
  }
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    min-height: 83vh;
}


