* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', 'sans-serif';
}

body {
  background: #e5e5e5;
  min-height: 100vh;
  margin: 0;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #1f1f1f;
}

.logo {
  color: orange;
}

.logo span {
  color: orange;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu a {
  color: white;
  text-decoration: none;
}

.menu a.active {
  color: orange;
}

.btn-contact {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: white;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
}

/* TEXT */
.hero-text {
  max-width: 500px;
}

.hero-text h4 {
  font-size: 20px;
}

.hero-text h1 {
  font-size: 40px;
}

.hero-text h1 span {
  color: orange;
}

.hero-text h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-text p {
  margin: 20px 0;
  color: #555;
}

/* SOCIAL ICON */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

/* BULAT */
.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f1f;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER */
.social-icons a:hover {
  background: orange;
  transform: translateY(-5px);
}

/* BUTTON CV */
.btn-cv {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: orangered;
  color: black;
  border: 2px solid black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.btn-cv:hover {
  background: orange;
  color: white;
}

/* IMAGE */
.hero-img img {
  width: 300px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
}

/* STYLE ABOUT*/
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background: #000;
  color: white;
}

/* IMAGE */
.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-img img {
  width: 300px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px orange;
}

/* TEXT */
.about-text {
  max-width: 550px;
}

.about-text h3 {
  color: orange;
  position: relative;
}

.about-text h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: orange;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.about-text h1 {
  font-size: 40px;
  margin: 10px 0;
}

.about-text h1 span {
  color: orange;
}

.about-text p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* LIST */
.about-info {
  display: flex;
  gap: 30px;
  max-width: 600px; /* biar ga melebar ke kanan */
}

.about-info ul {
  list-style: none;
}

.about-info li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ddd;
}

/* ICON PANAH */
.about-info span {
  color: orange;
  margin-right: 8px;
}


/* SKILLS */
.skills {
  padding: 80px 10%;
  background: #0a0a0a;
  color: white;
  text-align: center;
}

.skills h2 {
  color: orange;
  margin-bottom: 40px;
}

/* TABLE */
.skills-table {
  width: 100%;
  max-width: 800px;
  margin: auto;
  border-collapse: collapse;
}

/* CELL */
.skills-table td {
  padding: 20px;
  border: 1px solid #333;
  vertical-align: top;
  text-align: left;
  transition: 0.3s;
}

/* HOVER TABLE */
.skills-table td:hover {
  background: #1f1f1f;
}

/* JUDUL */
.skills-table strong {
  color: orange;
  display: block;
  margin-bottom: 10px;
}

/* PARAGRAF */
.skills-table p {
  font-size: 14px;
  color: #aaa;
}

/* RESUME */
.resume {
  padding: 80px 10%;
  background: #000;
  color: white;
}

.section-title {
  text-align: center;
  color: orange;
  margin-bottom: 50px;
}

/* CONTAINER */
.resume-container {
  display: flex;
  gap: 50px;
}

/* COLUMN */
.resume-column {
  flex: 1;
}

/* TITLE */
.resume-title {
  color: orange;
  margin-bottom: 20px;
}

/* ITEM */
.resume-item {
  padding-left: 20px;
  border-left: 2px solid orange;
  position: relative;
  margin-bottom: 30px;
}

/* DOT */
.resume-item::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: orange;
  border-radius: 50%;
  left: -7px;
  top: 5px;
}

/* TEXT */
.resume-item h4 {
  font-size: 18px;
}

.resume-item h5 {
  font-size: 13px;
  color: #aaa;
  margin: 5px 0;
}

.resume-item p {
  font-size: 14px;
  color: #ccc;
}

/* PORTFOLIO */
.portfolio {
  padding: 80px 10%;
  background: #000;
  color: white;
  text-align: center;
}

/* TITLE */
.section-title {
  color: orange;
  margin-bottom: 10px;
}

.portfolio-desc {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 14px;
}

/* GRID */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.portfolio-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #222;
  transition: 0.3s;
  text-align: left;
}

/* HOVER */
.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: orange;
  box-shadow: 0 10px 30px rgba(255,165,0,0.3);
}

/* IMAGE */
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 20px;
}

/* TITLE */
.card-content h3 {
  color: orange;
  margin-bottom: 10px;
  font-size: 16px;
}

/* TEXT */
.card-content p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* TAG */
.tag {
  display: inline-block;
  font-size: 12px;
  color: orange;
  border: 1px solid orange;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-view {
  display: inline-block;
  padding: 8px 15px;
  background: orange;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

/* HOVER BUTTON */
.btn-view:hover {
  background: #ff8800;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */
.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background: #000;
  color: white;
  gap: 50px;
  min-height: 100vh;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  color: orange;
  margin-bottom: 15px;
  font-size: 32px;
}

.contact-left p {
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* RIGHT */
.contact-right {
  flex: 1;
}

/* FORM */
.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUT + TEXTAREA */
.contact-right input,
.contact-right textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  outline: none;
  border-radius: 12px;
  font-size: 15px;
  background: white;
  color: black;
}

/* TEXTAREA */
.contact-right textarea {
  height: 130px;
  padding: 14px 16px;
  resize: none;
}

/* SELECT BOX */
.select-box {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: white;
}

/* SELECT */
.select-box select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  color: black;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* FOCUS */
.contact-right input:focus,
.contact-right textarea:focus,
.select-box:focus-within {
  box-shadow: 0 0 8px orange;
}

/* BUTTON */
.contact-right button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: orange;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-right button:hover {
  background: #ff8800;
}