/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(to bottom, #5dbb86 0%, #ffffff 100%);
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0077cc;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Hero Section */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.home h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.home p {
  font-size: 1.25rem;
  color: #555;
}

.intro-img img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  margin-top: 2rem;
  object-fit: cover;
}

/* About Section */
.about {
  padding: 6rem 2rem;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.about-img img {
  margin-top: 2rem;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

/* Skills Section */
.skills {
  padding: 6rem 2rem;
  text-align: center;
}

.skills-content {
  max-width: 800px;
  margin: 2rem auto 0;
}

.skills-content img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.skills-text h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.skills-content ul {
  list-style: none;
  padding: 0;
}

.skills-content ul li {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Project Section */
.project {
  padding: 6rem 2rem;
  text-align: center;
}

.project-content {
  max-width: 800px;
  margin: 2rem auto 0;
}

.project-content img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.project-text h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.project-text p {
  font-size: 1rem;
  color: #666;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  background: #ffffff;
  color: #aaa;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
}
