/* General Page Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #FADADD, #CBA0E3); /* pastel pink → lavender */
  color: #FFFFFF;
  text-align: center;
  cursor: url('images/prpl_cursor.png'), auto;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.navbar a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #FFD700; /* gold hover effect */
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
  color: #FFFFFF;
}

.hero-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background-color: #D88CA4; /* rose/mauve accent */
  color: #FFFFFF;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: #FFD700; /* gold hover */
  transform: scale(1.05);
}

/* About Section */
.about {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.about h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

/* Profile Picture */
.profile-pic {
  width: 180px;       /* small, neat size */
  height: 180px;
  border-radius: 50%; /* perfect circle */
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: block;
  margin: 20px auto;
}

/* Project Cards */
.project-card {
  background: linear-gradient(135deg, #FADADD, #CBA0E3);
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin: 1.5rem 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.project-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.project-card p {
  line-height: 1.6;
}

/* Extra Activities */
.activities {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

.activity-card {
  background: linear-gradient(135deg, #FADADD, #CBA0E3);
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin: 1.5rem 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.activity-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.resume-download {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.resume-download .btn {
  display: inline-block;
  padding: 15px 25px;
  background: #AEC6CF; /* pastel blue */
  color: #000; /* dark text for contrast */
  border-radius: 12px; /* rounded corners */
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* soft shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.resume-download .btn:hover {
  background: #87CEEB; /* sky blue hover */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}



/* Footer */
footer {
  margin-top: 6rem; /* pushes footer down */
  text-align: center;
  font-size: 0.9rem;
  color: #FFFFFF;
}
