/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f8f8f8;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

.contact-links {
  margin-top: 10px;
}

.contact-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
}

.contact-links a:hover {
  text-decoration: underline;
}

/* Navigation */
.project-nav {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  z-index: 100;
}

.project-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.project-nav ul li {
  margin: 0 15px;
}

.project-nav ul li a {
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
}

.project-nav ul li a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  max-width: 900px;
  margin: 0 auto;
}

.project {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 80px; /* Adjust this to match your nav height + padding */
}

.project h2 {
  color: #007acc;
  margin-bottom: 10px;
}

.project h3 {
  margin-top: 15px;
  margin-bottom: 8px;
  color: #333;
}

.project ul {
  margin: 10px 0 15px 20px;
}

.project ul li {
  margin-bottom: 8px;
}

.project ul li ul li {
  list-style-type: disc;
  margin-left: 20px;
}

p,
li {
  font-size: 1rem;
  color: #444;
}

/* Project Link */
.project-link {
  display: inline-block;
  margin-bottom: 15px;
  font-weight: bold;
  color: #007acc;
  text-decoration: none;
}

.project-link:hover {
  text-decoration: underline;
}

/* Highlighted "Why Hire Me" Section */
.highlight-section {
  background-color: #e6f2ff; /* subtle blue highlight */
  padding: 25px;
  padding: 25px 80px 25px 80px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-section h2 {
  color: #007acc;
  margin-bottom: 15px;
}

.highlight-section p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Resume Download Button */
.resume-download {
  margin-top: 20px;
  text-align: center;
}

.resume-download a {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007acc;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.resume-download a:hover {
  background-color: #005fa3;
}
