/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Public Sans", sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
  color: #000;
  padding: 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: bold;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  border-bottom: 4px solid #000;
  padding-bottom: 10px;
}

/* Layout */
header,
nav,
main,
footer {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #ff6b6b;
  padding: 40px;
  margin-bottom: 20px;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
}

/* Owner Photo */
.owner-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #000;
  margin-bottom: 20px;
}

/* Navigation */
nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  background-color: #4ecdc4;
  padding: 20px;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: #000;
  color: #4ecdc4;
  padding: 5px;
}

/* Sections */
section {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
}

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

.project-card {
  background-color: #ffe66d;
  padding: 20px;
  border: 4px solid #000;
  box-shadow: 4px 4px 0 #000;
  .project-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid #000;
    margin-bottom: 10px;
  }
}

/* Social */
#social ul {
  list-style-type: none;
  display: flex;
  gap: 10px;
}

#social ul li a {
  color: #000;
  text-decoration: none;
  background-color: #ff6b6b;
  padding: 10px;
  border: 2px solid #000;
}

/* Skills */
#skills ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#skills ul li {
  background-color: #ff6b6b;
  padding: 10px;
  border: 2px solid #000;
}

/* Experience and Education */
.experience-item,
.education-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #4ecdc4;
  border: 2px solid #000;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin-bottom: 10px;
  }
}
