/* ---- Google Fonts Used ---- */
/* 'Great Vibes', cursive;  -- For main headings */
/* 'Playfair Display', serif; -- For body text and subheadings */

/* ---- Color Palette using CSS Variables ---- */
:root {
  --deep-purple: #2c003e;
  --background-purple: #1a0024;
  --vibrant-pink: #ff00a0;
  --soft-lavender: #e0c8ff;
  --text-color: #f0e6ff;
}

/* ---- General Body Styling ---- */
body {
  background-color: var(--background-purple);
  color: var(--text-color);
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  margin: 0;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main,
header {
  max-width: 800px;
  width: 100%;
}

footer {
  font-family: 'Great Vibes', cursive;
  color: var(--soft-lavender);
}
/* ---- Typography ---- */
h1 {
  font-family: 'Great Vibes', cursive;
  color: var(--vibrant-pink);
  font-size: 5rem; /* 5 times the base font size */
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: normal;
  text-shadow: 0 0 10px var(--vibrant-pink);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; /* Bolder weight */
  font-style: italic;
  color: var(--soft-lavender);
  font-size: 2.5rem;
  border-bottom: 2px solid var(--vibrant-pink);
  padding-bottom: 10px;
}

h3 {
  font-family: 'Playfair Display', serif;
  color: var(--vibrant-pink);
  font-size: 1.8rem;
}

p {
  text-align: center;
}

/* ---- Links and Interactive Elements ---- */
a {
  color: var(--vibrant-pink);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--soft-lavender);
  text-decoration: underline;
  text-shadow: 0 0 5px var(--vibrant-pink);
}

/* ---- Card/Container Styling ---- */
.card {
  background-color: var(--deep-purple);
  border: 1px solid var(--vibrant-pink);
  border-radius: 8px;
  padding: 1.5em;
  margin-top: 2em;
  box-shadow: 0 4px 15px rgba(255, 0, 160, 0.2);
}
