/* ---------- General Styles ---------- */
body {
  background: linear-gradient(to right, #ffdde1, #ee9ca7); /* soft pink gradient */
  font-family: 'Verdana', sans-serif;
  margin: 0;
  padding: 0;
  color: #2c003e;
}

/* Navigation bar */
nav {
  background-color: #ff69b4; /* bright pink */
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #4b0082; /* purple hover */
}

/* ---------- Home Page ---------- */
.home {
  text-align: center;
  padding: 60px 20px;
}

.home h1 {
  font-size: 36px;
  color: #8a2be2;
}

.home p {
  font-size: 18px;
  color: #4a235a;
  margin-top: 15px;
}

/* ---------- About Me Page ---------- */
.about {
  background-color: rgba(255,255,255,0.8);
  margin: 40px auto;
  padding: 30px;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  text-align: center;
}

.about h2 {
  font-size: 28px;
  color: #d81b60;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}

/* ---------- Contact Page ---------- */
.contact {
  background-color: rgba(255,255,255,0.9);
  margin: 40px auto;
  padding: 30px;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  text-align: center;
}

.contact h2 {
  font-size: 26px;
  color: #6a1b9a;
}

.contact p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #4a235a;
}

.contact input,
.contact textarea {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid #ba68c8;
  border-radius: 10px;
  font-size: 16px;
}

.contact button {
  background-color: #ba68c8;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background-color: #8e24aa;
  transform: scale(1.05);
}

/* ---------- Footer ---------- */
footer {
  background-color: #ff69b4;
  text-align: center;
  color: white;
  padding: 15px;
  position: fixed;
  width: 100%;
  bottom: 0;
  font-size: 14px;
}