/* === Base Layout === */
body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant Garamond", "Segoe UI", serif;
  background: radial-gradient(ellipse at center, #0a0a0f 0%, #000000 100%);
  color: #e8e8e8;
  line-height: 1.7;
}

/* === Headings with Glow === */
h1, h2 {
  text-align: center;
  margin: 2em 0 0.5em;
  text-shadow: 0 0 8px rgba(102, 204, 255, 0.2);
}

h1 {
  font-size: 2.4em;
  letter-spacing: 1px;
  color: #ffffff;
}

h2 {
  font-size: 1.8em;
  color: #dddddd;
}

/* === Paragraphs === */
p {
  text-align: center;
  margin: 0.8em auto;
  max-width: 800px;
  padding: 0 1.5em;
  color: #bbbbbb;
  font-size: 1.1em;
}

.petition-button {
  display: inline-block;
  margin: 10px 0;
  padding: 12px 20px;
  background-color: #1e88e5;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.petition-button:hover {
  background-color: #1565c0;
}


/* === Links === */
a {
  color: #66ccff;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
  outline: none;
}

/* === Main Layout === */
main {
  padding: 2em 1em;
}

/* === LYRA Contact Form Styling === */
form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(102, 204, 255, 0.1);
  backdrop-filter: blur(4px);
}

label {
  display: block;
  margin-bottom: 0.3em;
  color: #cccccc;
  font-weight: 500;
  text-align: left;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1.2em;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #0f0f0f;
  color: #e8e8e8;
  font-size: 1em;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #66ccff;
  outline: none;
}

button[type="submit"] {
  background-color: #66ccff;
  color: #000;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #44aadd;
  transform: scale(1.03);
}

/* === Blockquote Styling for LYRA Monologue === */
blockquote {
  border-left: 4px solid #444;
  padding-left: 1.5em;
  margin: 2em auto;
  max-width: 760px;
  font-style: italic;
  opacity: 0.95;
  color: #cccccc;
}

/* === Footer Navigation === */
footer {
  margin-top: 4em;
  padding: 2em 1em;
  text-align: center;
  font-size: 0.9em;
  background-color: #111;
  border-top: 1px solid #333;
}

footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2em;
}

footer nav ul li {
  display: inline;
}

footer p {
  margin: 0.5em 0 0.2em;
  font-size: 0.85em;
  color: #777;
  text-align: center;
  line-height: 1.4;
}

footer p a {
  color: #66ccff;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}

/* === Responsive Enhancements === */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.4em;
  }

  p {
    font-size: 1em;
  }

  blockquote {
    font-size: 1em;
  }

  footer nav ul {
    flex-direction: column;
    gap: 0.5em;
  }
}

/* === Fade-In Animation === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.4s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
