/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0a0a0a;
}

/* Navbar */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #50586c;
  padding: 1rem;
  z-index: 10;
}

.nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #00adb5;
}

/* Welcome Section */
.welcome-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #50586c;
  text-align: center;
}

.welcome-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.welcome-section p {
  font-size: 1.5rem;
  color: #aaa;
}

/* Projects Section */
.projects-section {
  padding: 5rem 2rem;
  background: #dce2f0;
  text-align: center;
}

.projects-section-header {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #000000;
}

.projects-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.project {
  background: #50586c;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-title {
  padding: 1rem;
  font-size: 1.2rem;
}

.code {
  color: #dce2f0;
}

/* Button */
.btn-show-all {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.8rem 1.5rem;
  border: 2px solid #50586c;
  border-radius: 25px;
  color: #50586c;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-show-all:hover {
  background: #50586c;
  color: #dce2f0;
}

/* Contact Section */
.contact-section {
  padding: 5rem 2rem;
  background: #3e4556;
  text-align: center;
  height: 600px;
}

.contact-section-header h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.contact-section-header p {
  color: #aaa;
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-details {
  color: #1b243e;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details:hover {
  color: #fff;
}

/* Footer */
footer {
  background: #0a0a0a;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}

footer a {
  color: #00adb5;
  text-decoration: none;
}

/* HP landscape dan kecil */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .welcome-section h1 {
    font-size: 2rem;
  }

  .welcome-section p {
    font-size: 1rem;
  }

  .projects-flex {
    flex-direction: column;
    align-items: center;
  }

  .project {
    width: 90%;
  }

  .contact-section-header h2 {
    font-size: 2.5rem;
  }
}
