/* ================================
   LUXURY BLACK THEME - style.css
   (Black base + muted gold accent)
=================================== */
:root {
  --black: #000000;
  --black-soft: #0b0b0c;
  --card: #0f0f10;
  --ivory: #eae8e4;
  --muted: #9a9a9a;
  --gold: #bda76a;
  --border: rgba(189, 167, 106, 0.12);
  --radius: 14px;
  --max-width: 1100px;
  --gap: 28px;
  --trans: 0.32s ease;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 22px
}

.section {
  padding: 80px 0
}

.section-title,
.section__title {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 28px;
}

/* NAVBAR */
.navbar {
  position: auto;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.navbar .container.navbar-container,
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0
}

.navbar-logo img {
  height: 40px;
  display: block
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center
}

.navbar-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color var(--trans);
}

.navbar-links a:hover,
.navbar-links .active {
  color: var(--gold)
}

/* HERO */
.hero {
  padding-top: 120px;
  padding-bottom: 60px
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start
}

.hero h1 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ivory)
}

.hero p {
  color: var(--muted);
  max-width: 70ch;
  margin-bottom: 20px
}

.cta-btn,
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--trans)
}

.cta-btn {
  background: var(--gold);
  color: #000
}

.cta-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-3px)
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ivory)
}

.hero__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6)
}

.hero__card .meta-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px
}

/* WHY / SERVICES / GRID SYSTEM */
.why-grid,
.service-grid,
.projects-grid,
.services-grid,
.pricing-grid,
.education-list,
.experience-wrapper {
  display: grid;
  gap: 20px;
}

/* sensible grid presets */
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
}

.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
}

.projects__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

.education-list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.experience-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

/* CARD STYLES */
.skills-item1,
.skills-item2,
.skills-item3,
.service-card,
.why-item,
.project-card,
.service,
.price-card,
.education-item,
.experience-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.project-card:hover,
.skills-item1:hover,
.skills-item2:hover,
.skills-item3:hover,
.why-item:hover,
.service-card:hover,
.project__card:hover,
.service:hover,
.price-card:hover,
.education-item:hover,
.experience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(189, 167, 106, 0.25);
  box-shadow: 0 18px 50px rgba(189, 167, 106, 0.06);
}

/* project / service text */
.project-title {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600
}

/* ===== TECH STACK ===== */
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-tech li {
  background: #111;
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
}

.project-desc {
  font-size: 0.95rem;
  margin-bottom: 18px;
  opacity: 0.8;
}

.project-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #a8894e;
  color: #a8894e;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.project-button:hover {
  background: #a8894e;
  color: #000;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-tech li {
  background: #111;
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
}


/* SKILLS LIST */
.skills-list {
  list-style: disc;
  padding-left: 20px;
  max-width: 720px;
  color: var(--muted)
}

.skills-item {
  margin-bottom: 8px;
  font-weight: 400
}

/* EDUCATION */
.education-major {
  font-size: 16px;
  font-weight: 600
}

.education-year {
  font-size: 14px;
  color: var(--muted)
}

/* EXPERIENCE */
.experience-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600
}

.experience-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted)
}

/* PRICING */
.price-card h3 {
  font-size: 18px;
  margin-bottom: 8px
}

.price-card h4 {
  font-size: 20px;
  color: var(--gold);
  margin-top: 12px
}

/* CONTACT */
/* CONTACT SECTION */
.contact-section {
    background: #0d0d0d;
    padding: 80px 0;
    color: #e6e6e6;
}

.contact-container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.contact-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.contact-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px;
    color: #c4c4c4;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border: 1px solid #d4af37;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #c7c7c7;
}

.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: #0d0d0d;
    background: #d4af37;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #b7932f;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.65);
}

/* FOOTER */
.contact-footer {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
}

.contact-footer p {
    color: #888;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* FOOTER */
.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 36px
}

/* SMALL UI HELPERS */
.muted {
  color: var(--muted)
}

.center {
  text-align: center
}

.kv {
  display: flex;
  gap: 18px;
  align-items: center
}

/* RESPONSIVE */
@media (max-width:1000px) {
  .hero .container {
    grid-template-columns: 1fr
  }

  .hero__card {
    order: 2
  }

  .hero {
    padding-top: 100px
  }
}


  /* simplify navbar on tiny screens; replace later with hamburger */
  .section {
    padding: 56px 0
  }

  .section-title,
  .section__title {
    font-size: 20px
  }

  .project__title,
  .service__title {
    font-size: 16px
  }

  .hero h1 {
    font-size: 26px
  }

  .container {
    padding: 0 16px
  }

/* ====== HOME / HERO ====== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  padding-top: 90px;
  /* offset navbar */
}

.home-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  text-align: center;
}

.home-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.home-subtitle {
  color: #b8b8b8;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.home-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.35s ease;
  border: 1px solid #6f6f6f;
}

.primary-btn {
  background: #caaa52;
  color: #000;
  border-color: #caaa52;
}

.primary-btn:hover {
  background: transparent;
  color: #caaa52;
}

.secondary-btn {
  background: transparent;
  color: #fff;
}

.secondary-btn:hover {
  border-color: #caaa52;
  color: #caaa52;
}

/* ===== STATS ===== */
.home-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  color: #caaa52;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  color: #b8b8b8;
  font-size: 15px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .home-title {
    font-size: 34px;
  }

  .home-subtitle {
    font-size: 16px;
  }

  .home-stats {
    flex-direction: column;
    gap: 25px;
  }
}

.hero-image {
  width: 150px;
    height: 150px;
    object-fit: cover;   /* biar wajah tidak ketarik */
    border-radius: 50%;  /* ini yang bikin lingkaran */
    display: block;
    margin: 0 auto;
     border: 4px solid #caaa52;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

/* Efek interaktif */
.hero-img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px #caaa52(255, 215, 0, 0.6);
    border-color: #caaa52;
}

