/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* Navigation Bar */
nav {
  background-color: #2e2630;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
}

.navbar {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar li {
  display: inline-block;
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #e74c3c;
}

header {
  background-color: #2e2630;
  color: white;
  padding: 40px 20px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  margin: 10px 0 5px;
  font-size: 32px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.socials a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.about h2,
.projects h2,
.contact h2 {
  font-size: 28px;
  color: #2e2630;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project {
  width: 300px;
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.project img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.project h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #2e2630;
}

.project a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #e74c3c;
  font-weight: bold;
}

.contact a {
  color: #e74c3c;
}

footer {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  background-color: #2e2630;
  color: white;
  font-size: 14px;
}

/* Mobile Responsive Navigation */
@media screen and (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    background-color: #2e2630;
    padding: 10px;
  }

  .navbar.show {
    display: flex;
  }

  .navbar li {
    display: block;
    margin: 10px 0;
  }

  .navbar a {
    font-size: 18px;
  }

  .project-list {
    flex-direction: column;
    align-items: center;
  }

  .project {
    width: 90%;
  }
}
