/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
  font-weight: 300;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #111;
  padding: 20px 0;
  color: white;
}
.logo {
  font-size: 28px;
  font-weight: 600;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 300;
}

/* Hero */
.hero {
  padding: 60px 0;
  background: linear-gradient(to right, #2b5876, #4e4376);
  color: white;
}
.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 500px;
}
.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
.hero-text p {
  margin-top: 10px;
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: white;
  color: #2b5876;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
}
.hero-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
.about, .projects, .contact {
  padding: 60px 0;
  text-align: center;
}

/* Projects */
.projects .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.project {
  background: white;
  padding: 20px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contact */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.contact-links a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.contact-links a:hover img {
  transform: scale(1.2);
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
  }
}
