:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --text: #1e293b;
    --primary: #f59e0b;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* NAV */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* HERO */
.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;


}
.hero::before {
  content: "</> function() { return true; }";
  position: absolute;
  font-size: 120px;
  color: rgba(0,0,0,0.03);
  top: 10%;
  left: 10%;
  transform: rotate(-15deg);
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    color: #64748b;
}

/* BUTTON */
.btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

/* SECTION */
section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

/* CARD */
.glass-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* SKILLS */
.skill-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-size: 40px;
}

.skill-icons i {
    color: black;
    background: #f1f5f9;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.skill-icons i:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary);
    color: white;
}

/* TEXT SKILL */
.skill-text {
    padding: 12px 16px;
    background: #1e293b;
    color: white;
    border-radius: 10px;
    font-size: 14px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 80px; /* horizontal lebih lebar */
  margin-top: 20px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

/* Icon panah */
.about-item span {
  color: #3b82f6;
  font-size: 20px;
}

/* Label (Website:, Umur:) */
.about-item b {
  min-width: 90px; /* Biar sejajar */
  display: inline-block;
}

/* Value */
.about-item div {
  color: #334155;
}

/* Mobile tetap rapi */
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}