/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f0f0f;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Back to Home Button */
.back-home-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #1a1a1a;
  color: hsl(210, 96%, 55%);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.back-home-btn:hover {
  background-color: #333;
}

/* Header */
.projects-header {
  text-align: center;
  padding: 40px 20px;
  background-color: #121212;
  color: hsl(210, 96%, 65%);
}

.projects-header h1 {
  font-size: 2.5rem;
}

/* Main Projects Section */
.projects-container {
  padding: 40px 20px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.project-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 6px;
  border-left: 5px solid hsl(210, 96%, 65%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.project-item h2 {
  font-size: 1.8rem;
  color: hsl(210, 96%, 55%);
  margin-bottom: 10px;
}

.project-item p {
  color: #ccc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #121212;
  color: #999;
  margin-top: 40px;
}

.social-links {
  margin-bottom: 15px;
}

.social-links a {
  margin: 0 10px;
  color: hsl(210, 96%, 55%);
  font-weight: 500;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Responsive Styling */
@media screen and (max-width: 600px) {
  .projects-header h1 {
    font-size: 2rem;
  }

  .project-item {
    padding: 15px;
  }
}
