/* luna_style.css */

body {
  font-family: 'Arial', sans-serif;
  background: #fdf6f0;
  color: #333;
  margin: 0;
  padding: 1rem;
  text-align: center;
}

header h1 {
  color: #7a5c91;
  margin-bottom: 0.5rem;
}

header h2 {
  color: #68457a;
  margin-top: 0;
}

header p {
  font-style: italic;
}

.book-cover {
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

form {
  background: #fff;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

input, button {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background-color: #7a5c91;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #68457a;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  form {
    padding: 1rem;
    margin: 1rem auto;
  }
}
