body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #1b1410; /* coffee dark */
  color: #f5f5f5;
}

section {
  padding: 80px 10%;
  text-align: center;
}

h1, h2 {
  color: #c8a27a;
}

/* HERO */
.hero h1 {
  font-size: 3rem;
}
.hero h2 {
  color: #aaa;
}
.hero p {
  color: #ccc;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.pfp:hover {
  box-shadow: 0 0 25px rgba(200, 162, 122, 0.4);
}

/* GRID */
.skills-grid, .projects-grid, .cert-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* SKILLS */
.skill {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}
.skill img {
  width: 50px;
}
.skill:hover {
  transform: translateY(-8px);
}

/* PROJECTS */
.project-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}
.project-card:hover {
  transform: translateY(-10px);
}

/* CERT */
.cert-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
}

/* CONTACT */
.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  gap: 10px;
  background: #1a1a1a;
  padding: 15px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: #262626;
}   

.pfp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #2a2a2a;
  transition: 0.3s;
}

.pfp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 200, 150, 0.3);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.cert-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.cert-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 200, 150, 0.2);
}

.skill,
.project-card,
.cert-card,
.contact-item {
  background: #2a1f18;
  border-radius: 15px;
  transition: 0.3s;
}

.skill:hover,
.project-card:hover,
.cert-card:hover,
.contact-item:hover {
  background: #3a2a20;
  box-shadow: 0 0 20px rgba(200, 162, 122, 0.25);
}

body {
  background: radial-gradient(circle at top, #2a1f18, #1b1410);
}