/* Apply only to this page */
html.portfolio-page, 
html.portfolio-page body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #00c853;
  margin: 0;
  padding: 0;
}

/* Navbar */
html.portfolio-page header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #111;
  border-bottom: 2px solid #00c853;
  position: sticky;
  top: 0;
  z-index: 1000;
}

html.portfolio-page header.navbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}

html.portfolio-page nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

html.portfolio-page nav ul li a {
  text-decoration: none;
  color: #00c853;
  font-weight: 600;
  transition: color 0.3s;
}

html.portfolio-page nav ul li a:hover,
html.portfolio-page nav ul li a.active {
  color: #00e676;
}

/* Main content */
html.portfolio-page main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

html.portfolio-page h1, 
html.portfolio-page h2, 
html.portfolio-page p {
  margin-bottom: 15px;
}

/* Buttons */
html.portfolio-page .btn-main {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00c853;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s;
}

html.portfolio-page .btn-main:hover {
  background-color: #00e676;
}

/* Footer */
html.portfolio-page footer {
  text-align: center;
  padding: 20px 0;
  background-color: #111;
  border-top: 2px solid #00c853;
  margin-top: 40px;
}
