/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

a {
  color: #0a66c2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
}

/* ===== NAV ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  font-size: 16px;
  font-weight: 500;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #111;
  margin: 4px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ccc;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-section h1 span {
  color: #0a66c2;
}

.hero-section p {
  font-size: 20px;
  margin-bottom: 20px;
}

.social-links a {
  margin: 5px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #0a66c2;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* ===== SECTIONS ===== */
.section-content {
  padding: 60px 30px;
  text-align: center;
}

.section-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.project-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* ===== FOOTER ===== */
footer {
  padding: 15px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #ececec;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .project-card-description {
    display: none;
  }

  .project-card {
    width: 100%;
  }
}

.skill-category {
  margin-top: 40px;
  text-align: center;
}

.skill-category h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.skill-badge {
  background: #e0e0e0;
  color: #111;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
  cursor: default;
}

.skill-badge:hover {
  background: #0a66c2;
  color: #fff;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .skill-badge {
    font-size: 13px;
    padding: 5px 10px;
  }
}
