
/* style.css - Cybersecurity Portfolio Theme */

body {
  margin: 0;
  padding: 0;
  font-family: 'Fira Code', monospace;
  background-color: #0d1117;
  color: #c9d1d9;
  line-height: 1.6;
  scroll-behavior: smooth;
}

header.hero {
  background: linear-gradient(135deg, #0a0f1c, #001f3f);
  text-align: center;
  padding: 80px 20px 50px;
  color: #00ffcc;
  box-shadow: 0 0 20px #00ffcc33;
  position: relative;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ffcc;
  margin-bottom: 15px;
}

header.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header.hero p {
  font-size: 1.1rem;
  color: #9bffec;
}

nav {
  background-color: #161b22;
  text-align: center;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px #00000066;
}

nav a {
  color: #58a6ff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffcc;
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #00ffcc;
  border-bottom: 2px solid #00ffcc44;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: '▹';
  color: #00ffcc;
  margin-right: 8px;
}

.project {
  background-color: #161b22;
  padding: 15px;
  border-left: 4px solid #00ffcc;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #00ffcc22;
  border-radius: 6px;
}

.project h3 {
  margin-top: 0;
  color: #58a6ff;
}

.project p {
  color: #c9d1d9;
}

.project a {
  display: inline-block;
  margin-top: 8px;
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.project a:hover {
  text-decoration: underline;
}

a {
  color: #58a6ff;
  text-decoration: none;
}

a:hover {
  color: #00ffcc;
  text-decoration: underline;
}

.resume-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #00ffcc;
  color: #00ffcc;
  background: transparent;
  border-radius: 5px;
  transition: background 0.3s;
}

.resume-btn:hover {
  background-color: #00ffcc22;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  background: #0d1117;
  border: 1px solid #333;
  color: #c9d1d9;
  border-radius: 4px;
}

button {
  padding: 10px;
  background-color: #00ffcc;
  border: none;
  border-radius: 4px;
  color: #0d1117;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #00e6b8;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #0d1117;
  color: #777;
  border-top: 1px solid #333;
}
