/* Background image with overlay */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1470&q=80') no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
  min-height: 100vh;
}

.container {
  background-color: rgba(0,0,0,0.7);
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 8px;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

form section {
  margin-bottom: 1.5rem;
}

input[type="text"], textarea {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  margin-top: 0.3rem;
  font-size: 1rem;
  resize: vertical;
}

button {
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  background-color: #0ea578;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.resume-output {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTc8l3i0gQRyZGfnAlif0CYqsPyaekamP3x7A&s);
background-repeat: no-repeat;
  background-color: #000000;
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 2rem;
  background-size: cover;
}

.resume-output.hidden {
  display: none;
}

#skillsOutput {
  list-style-type: square;
  padding-left: 1.5rem;
}

