/* style.css */

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  color: #ddd;
  scroll-behavior: smooth;
}

header#hero {
  position: relative;
  height: 100vh;
  background: url('images/banner.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid  #4e4e4e;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #222;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav a {
  color: #00bfa6;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00bfa6;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #ffffff;
  transform: scale(1.08);
}


main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
}

h2 {
  color: #00bfa6;
  border-bottom: 2px solid #00bfa6;
  display: inline-block;
  margin-bottom: 1rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-list li {
  background-color: #222;
  padding: 8px 14px;
  border-radius: 6px;
  color: #fff;
}

#experience {
  padding: 2rem 0;
}

.experience-item {
  background-color: #1b1b1b;
  padding: 1rem;
  border-left: 4px solid #00bfa6;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.project {
  background-color: #1b1b1b;
  padding: 1rem;
  border-left: 4px solid #00bfa6;
  margin-bottom: 1rem;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 2rem 0;
  background-color: #111;
  color: #555;
}
