body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #d4c7f9, #f2d2d2);
  color: #333;
  min-height: 100vh;
}

header {
  background: linear-gradient(to right, #f6a5c0, #f0728f);
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo-container img.logo {
  width: 60px;
  height: auto;
  border-radius: 50%;
}

header h1 {
  color: #fff;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin: 0;
}

nav {
  background-color: #ff80b7;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav button {
  background-color: #ff6584;
  color: white;
  border: none;
  padding: 12px 22px;
  margin: 0 12px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

nav button:hover {
  background-color: #f54274;
  transform: translateY(-2px);
}

main {
  padding: 50px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #444;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.inputs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease;
}

.inputs input,
.inputs select {
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 240px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.inputs input:focus,
.inputs select:focus {
  border-color: #ff80b7;
  box-shadow: 0 0 5px rgba(255, 128, 183, 0.7);
}

button.generate {
  background: linear-gradient(to right, #ff9a8b, #ff6a6a);
  border: none;
  color: white;
  font-size: 1.2rem;
  padding: 14px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button.generate:hover {
  background: linear-gradient(to right, #ff7b8b, #ff4666);
  transform: translateY(-2px);
}

.output {
  background-color: #fff;
  padding: 30px;
  margin-top: 40px;
  border-radius: 20px;
  display: none;
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1s ease-out;
}

.output p {
  margin: 12px 0;
  line-height: 1.8;
  color: #444;
}

.footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

.footer a {
  color: #ff80b7;
  text-decoration: none;
  font-weight: 600;
}

.section {
  display: none;
}

.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
