/* ================= GENERAL ================= */
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background: #121212;
  color: #e0e0e0;
}

/* ================= HERO ================= */
.hero-section {
  background: #1f1f1f;
  padding: 100px 0;
  color: #fff;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff7f50;
  margin-bottom: 20px;
}

.accent {
  color: #ff7f50;
}

.hero-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.hero-icons a:hover {
  color: #ff7f50;
}

/* ================= SCROLL NAV ================= */
.scroll-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  transition: opacity 0.3s;
  opacity: 0.8;
}

.scroll-nav button {
  border-radius: 50%;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.appear {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background: #1f1f1f;
}

.section-title {
  margin-bottom: 50px;
  font-weight: 600;
  color: #fff;
}

/* ================= SKILLS ================= */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.skill-category {
  font-size: 1.2rem;
  margin: 40px 0 20px 0;
  color: #ff7f50;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  transition: transform 0.3s;
}

.skill-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

.skill-item:hover {
  transform: scale(1.1);
}

/* ================= PROJECTS ================= */
.project-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background: #2a2a2a;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #e0e0e0;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255,127,80,0.5);
}

.project-card a {
  color: #ff7f50;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

/* ================= EDUCATION ================= */
.education-grid {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.education-item.card {
  background: #2a2a2a;
  color: #e0e0e0;
  border: none;
}

/* ================= CONTACT ================= */
.contact-icons a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: #e0e0e0;
  transition: color 0.3s;
}

.contact-icons a:hover {
  color: #ff7f50;
}

/* ================= FOOTER ================= */
footer {
  padding: 20px 0;
  background: #1f1f1f;
  color: #fff;
}
