/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0b0f14;
  color: #e8e8e8;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 20, 0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}

.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #cfcfcf;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #7cf7d4;
}

/* ===== HEADER ===== */
header {
  text-align: center;
  padding: 80px 20px 40px;
}

header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #7cf7d4;
  margin-bottom: 10px;
}

header p {
  color: #b5b5b5;
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  border-left: 4px solid #7cf7d4;
  padding-left: 12px;
  margin-bottom: 25px;
}

h3 {
  color: #7cf7d4;
}

/* ===== EDUCATION / SKILLS LISTS ===== */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 6px;
  color: #d6d6d6;
}

/* ===== PROJECTS ===== */
.project {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.project:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 247, 212, 0.4);
}

.project a {
  color: #7cf7d4;
  text-decoration: none;
  font-weight: 500;
}

/* ===== CONTACT ===== */
#contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

#contact input,
#contact textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: white;
  font-size: 14px;
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #7cf7d4;
}

#contact button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #7cf7d4;
  color: #0b0f14;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#contact button:hover {
  background: #5de0bf;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 40px;
}