/* ----- Body & Typography ----- */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ----- Header & Navigation ----- */
header {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

p, li {
  text-align: justify; /* justifies the text */
  text-justify: inter-word; /* better spacing between words */
}

header h1 {
  margin: 0;
  font-size: 2em;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

nav a:hover {
  background-color: #34495e;
}

nav a.active {
  background-color: #ecf0f1;
  color: #2c3e50;
}

/* ----- Main content ----- */
main {
  max-width: 900px;
  margin: 30px auto;
  padding: 60px 20px 20px 20px; /* top padding added */
  min-height: calc(100vh - 160px); /* ensures footer stays at bottom for short pages */
}


section {
  margin-bottom: 40px;
}

/* ----- Section Titles ----- */
h2 {
  color: #2c3e50;
  margin-top: 30px;
  border-bottom: 2px solid #2c3e50;
  display: inline-block;
  padding-bottom: 5px;
}

/* ----- Lists ----- */
ul {
  margin-left: 20px;
  list-style-type: disc;
}

/* ----- Projects Section ----- */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ----- Photo Styling ----- */
.home-photo {
  width: 200px;
  height: 200px;
  object-fit: cover; /* ensures image fills the circle nicely */
  border-radius: 50%;
  display: block;
  margin: 20px auto;
  border: 3px solid #2c3e50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ----- Footer ----- */
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px; /* extra breathing space */
  font-style: italic;
  font-size: 1em;
}
/* ----- Links ----- */
a {
  color: #2980b9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
