@font-face {
  font-family: "FontPertama";
  src: url("fonts/AlteHaasGroteskRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FontPertama";
  src: url("fonts/AlteHaasGroteskBold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "FontKedua";
  src: url("fonts/Velvelyne-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: "FontKedua";
  src: url("fonts/Velvelyne-Regular.ttf") format("truetype");
  font-weight: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff; /* kalau mau putih di area selain footer, biarkan; ganti kalau mau */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "FontPertama", sans-serif;
  background-color: #fff;
  color: #5c1833;
}

/* --- NAVIGATION BAR --- */
nav {
  display: flex;
  justify-content: flex-end;
  padding: 30px 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: inline-block;
  text-decoration: none;
  color: #5c1833;
  font-weight: 400;
  line-height: 110%;
  transition: 
    font-weight 0.2s ease,
    transform 0.2s ease;
  transform-origin: center;  
}

.works-link {
  display: inline-block;
  position: relative;
}

.dropdown {
  display: inline-flex;     /* mengikuti ukuran teks */
  flex-direction: column;   /* agar dropdown muncul di bawah anchor */
  align-items: center;      /* pusatkan anak-anaknya */
  position: relative;       /* anchor untuk dropdown */
}

.nav-menu a:hover {
  font-weight: 700;
  transform: scale(1.08);
}

.nav-image img.hitme-img {
  margin-left: -20px;
  top: 2px;
  width: 112px;
  height: auto;
  display: block;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-image:hover img.hitme-img {
  content: url("homepage-assets/hitmeup-bold.png");
  transform: scale(1);
  opacity: 1;
}

.dropdown-menu {
  font-family: "FontPertama", sans-serif;
  position: absolute;
  top: 100%;
  left: 10%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;          
  pointer-events: none; 
  padding-top: 10px;
  list-style: none;
  margin: 0;
  background: transparent;
  text-align: center;
  transition: 
    opacity 0.25s ease,
    transform 0.25s ease; 
}

.dropdown:hover > .dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto; 
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 5px 0;
  color: #5c1833;
  text-decoration: none;
  font-weight: 400;
  opacity: 0.7;   
  transition: 
    opacity 0.2s ease,
    font-weight 0.2s ease;
}

.dropdown-menu a:hover {
  font-weight: 700;
   opacity: 1;   
}

/* ---------- PRESET DOTS (fixed positions + subtle drift) ---------- */
.float-area {
  position: absolute;
  inset: 0;               /* cover the .intro area */
  pointer-events: none;
  z-index: 6;
}

/* all dots identical size & full opacity */
.float-dot {
  position: absolute;
  width: 20px;               /* SAME SIZE for all dots */
  height: 26px;
  border-radius: 50%;
  background: #5c1833;       /* dot color */
  opacity: 1;                /* full opacity */
  box-shadow: 0 6px 18px rgba(92,24,51,0.06);
  will-change: transform, opacity;
  transition: transform 20000ms cubic-bezier(.22,.9,.36,1), opacity 3s ease;
  transform-origin: center;
}

/* ensure .intro is the positioning context for .float-area */
.intro { position: relative; }

@media (max-width: 980px) {
  .float-dot { width: 18px; height: 18px; transition-duration: 16000ms; }
}


/* --- HOMEPAGE CONTENT --- */
.intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px;
  gap: 0px;
}

.left-image img {
  width: 490px;
  height: auto;
  max-width: 100%;
  margin-top: -300px;
  transform: translateY(-10px);
}

.right-image img {
  width: 600px;
  height: auto;
  max-width: 100%;
  margin-top: 8px;
  margin-right: -30px;
}



/* ===== ABOUT (2-column) ===== */
.about-section {
  position: relative;
   padding: 10px 90px 90px 90px;
  overflow: visible !important;
  background: #ffffff;
}

/* main two-column wrapper */
.about-2col {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;  /* kiri kecil, kanan besar */
  gap: 80px;
  overflow: visible;
}


/* ======================
   LEFT COLUMN FIXES
   ====================== */

/* area foto dan contact sejajar horizontal */
.photo-and-contact {
  display: flex;                /* berubah ke flex (bukan grid) */
  align-items: flex-start;
  gap: 30px;                    /* jarak antara foto & kontak */
  margin-bottom: 60px;
  overflow: visible;
}

/* foto LEBIH KECIL */
.profile-img {
  width: 130px !important;      /* kecilkan */
  height: 170px !important;
  object-fit: cover;
  border: none !important;      /* tanpa border */
}

/* adjust background paper behind foto */
.photo-stack::before {
  width: 135px;
  height: 115px;
  top: -12px;
  left: -8px;
}

.photo-stack::after {
  width: 135px;
  top: -20px;
  left: -5px;
}

/* paperclip position adjust */
.photo-stack .profile-img::before {
  right: -8px;
  top: -20px;
  width: 24px;
  height: 40px;
}

/* CONTACT TEXT — lebih kecil, lebih rapih */
.contact-list {
  margin-top: 8px;
  font-size: 10px;       
  line-height: 1;
  margin-left: 40px;
}

.contact-item {
  margin: 0 20px 15px 0;
}

.contact-item .muted {
  font-size: 8px;
  color: rgba(92,24,51,0.65);
  margin-bottom: 4px;
}



/* ======================
   RIGHT COLUMN BIG IMAGE
   ====================== */

.about-2col {
  max-width: 2000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 800px;  /* kanan lebih besar */
  gap: 70px;
}

.about-side-img {
  width: 100%;
  max-width: 680px;              /* BESARKAN */
  height: auto;
  margin-top: 40px;
  margin-left: 70px;
  display: block;
  border-radius: 10px;
  transform: translateX(10px);   /* sedikit geser kanan, opsional */
}


/* make left "hi," column narrow and fix alignment */
.intro-row {
  display: grid;
  grid-template-columns: 88px 1fr; /* left column narrow (for "hi,"), right column fills */
  gap: 24px;
  align-items: start;              /* align top edges so name sits level with hi */
}

/* tweak small "hi," */
.hi {
  margin: 30px 0 0 10px;
  font-family: "FontPertama", sans-serif;
  font-weight: normal;
  font-size: 20px;    /* adjust if you want smaller/larger */
  line-height: 1;
  padding-top: 6px;   /* fine-tune vertical position */
  text-align: left;
}

/* ensure the right column content sits at the top and uses column layout */
.intro-right {
  display: block;
  margin: 0;
}

/* "my name is" line: keep smaller, inline before the stacked bold name */
.intro-right .muted.small {
  margin: 20px 0 8px 0;
  font-size: 15px;
  line-height: 110%;
  color: rgba(92,24,51,0.95);
}

/* stacked name styling — smaller and aligned exactly as SS2 */
.intro-right .muted.small strong {
  display: inline-block;
  font-family: "FontKedua", "FontPertama", sans-serif;
  font-size: 26px;   /* adjust size to taste */
  line-height: 1;
  font-weight: 700;
  margin-left: 6px;  /* small offset from "my name is" */
}

/* paragraphs: make them narrower and start under 'my name is' block */
.desc .small {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 12px;
  max-width: 520px;  /* control line length */
}

.desc p {
  margin: 20px 0 16px 0;
  font-size: 12px;
  line-height: 110%;
  color: rgba(92,24,51,0.9);
  max-width: 520px;  /* same width as above so text block looks tidy */
}



/* === second & third name lines stacked === */
.intro-right .name-stack {
  font-family: "FontKedua", "FontPertama", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  display: block;
  margin-left: 110px;        /* align under 'vanessa' */
  margin-bottom: -3px;
}

/* reduce left spacing so the right column content sits visually under the "hi," baseline */
.intro-row .intro-right { padding-top: 2px; }

/* responsive: on small screens stack as single column (keeps readability) */
@media (max-width: 980px) {
  .intro-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hi { font-size: 28px; padding-top: 0; }
  .intro-right .muted.small strong { font-size: 22px; display:block; margin-left:0; }
  .desc p, .desc .small { max-width: 100%; font-size: 14px; }
}

/* === Replacement: split "my name is" + "vanessa" but keep same look === */
.name-line {
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
  margin: 0 0 2px 0;          /* keep same spacing as previous */
  font-size: 16px;
  color: rgba(92,24,51,0.95);
  line-height: 1;
}

/* prefix ("my name is") */
.name-prefix {
  display: inline-block;
  font-weight: 400;
  font-family: "FontPertama", sans-serif;
  margin-right: 6px;           /* small gap matching previous margin-left on strong */
  transform-origin: left center;
}

/* the actual "vanessa" strong */
.name-vanessa {
  display: inline-block;
  font-family: "FontKedua", "FontPertama", sans-serif !important;
  font-weight: 700 !important;
  font-size: 23px;
  line-height: 0.3;
  margin: 0;
  transform-origin: center;
}

/* responsive fallback */
@media (max-width: 980px) {
  .name-line { white-space: normal; }
  .name-prefix { display: block; margin-right: 0; margin-bottom: 4px; }
  .name-vanessa { display: block; margin-left: 0; font-size: 22px; }
}

/* === ganti font nama "vanessa / angeline / gunawan" === */
.name-stack,
.name-firstline strong,
.intro-right .muted.small strong {
  font-family: "FontKedua", "FontPertama", sans-serif !important;
  font-weight: 700 !important;
}

/* === hi dan my name is vanessa sejajar === */
.intro-row {
  display: grid;
  grid-template-columns: 90px auto;
  gap: 20px;
  align-items: start;
}

.hi {
  font-size: 20px;
  font-weight: 400;   /* tidak bold */
  margin: 0;
  padding-top: 6px;
}

.name-stack {
  font-size: 23px;
  line-height: 0.3;
  display: block;
  margin-left: 85px; /* biar sejajar di bawah "vanessa" */
  margin-bottom: -3px;
}

html {
  scroll-behavior: smooth;
}

/* ==== make header/nav always visible (fixed) ==== */
:root {
  --header-height: 84px; /* default height — tweak jika perlu */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 2000;
  display: block;
  background: transparent !important; /* transparan */
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* keep the nav inside header full height */
header nav {
  height: 100%;
  display: flex;
  align-items: center; /* vertically center nav items inside header */
  padding: 0 80px;     /* you may keep existing padding or tweak */
}

/* ensure nav-menu aligns same as before */
.nav-menu { gap: 36px; }

/* push page content below header so it isn't hidden */
main {
  padding-top: var(--header-height); /* reserves space for fixed header */
}

/* If you use anchor: make targeted sections respect header height */
section {
  scroll-margin-top: calc(var(--header-height) + 12px); /* small breathing room */
}

/* MOTION BUAT SI PROFIL MUKA SAYA HOHO*/
/* subtle floating motion for about-me photo stack */
@keyframes floatY {
  0%   { transform: translateY(0px) rotate(-3deg); }
  50%  { transform: translateY(-30px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(-3deg); }
}

/* apply to the image itself (gentle float) */
.photo-stack .profile-img {
  will-change: transform;
  animation: floatY 6.5s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

/* respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .photo-stack::before,
  .photo-stack::after,
  .photo-stack .profile-img,
  .photo-stack .profile-img::before {
    animation: none !important;
    transition: none !important;
  }
}

/*INI BUAT LINK SI CONTACT CONTACT EY*/
.contact-list a {
  color: #5c1833;
  text-decoration: none;
  font-size: 10px;
}

.contact-list a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/*MOTION VANESSA ANGELINE GNAWAN"*/
/* ==========================
   STEP SEQUENCE ANIMATION
   ==========================
   Total cycle: 12s (ubah di --name-cycle jika mau)
   TranslateY: -18px (ubah jika mau lebih subtle, mis. -10px)
   Easing: smooth cubic-bezier
*/

:root {
  --name-cycle: 12s;                 /* total durasi seluruh urutan */
  --name-rise: -18px;                /* jarak naik (negatif = ke atas) */
  --name-ease: cubic-bezier(.22,.9,.33,1);
}

/* pastikan elemen nama siap di-transform */
.name-vanessa,
.name-angeline,
.name-gunawan {
  display: inline-block;
  transform-origin: center;
  will-change: transform;
}

/* VANESSA
   - Naik selesai pada 16.66% (≈ 2s)
   - Tetap atas sampai 83.33% (≈ 10s)
   - Turun antara 83.33% - 100% (≈ 10s - 12s)
*/
@keyframes vanessaSeq {
  0%      { transform: translateY(0) rotate(-0.6deg); }
  16.66%  { transform: translateY(var(--name-rise)) rotate(1deg); } /* sudah di atas */
  83.33%  { transform: translateY(var(--name-rise)) rotate(1deg); } /* tetap atas */
  100%    { transform: translateY(0) rotate(-0.6deg); }             /* kembali bawah */
}

/* ANGELINE
   - Naik selesai pada 33.33% (≈ 4s)
   - Tetap atas sampai 66.66% (≈ 8s)
   - Turun antara 66.66% - 83.33% (≈ 8s - 10s)
*/
@keyframes angelineSeq {
  0%      { transform: translateY(0) rotate(-0.6deg); }
  33.33%  { transform: translateY(var(--name-rise)) rotate(1deg); } /* sudah di atas */
  66.66%  { transform: translateY(var(--name-rise)) rotate(1deg); } /* tetap atas */
  83.33%  { transform: translateY(0) rotate(-0.6deg); }             /* turun */
  100%    { transform: translateY(0) rotate(-0.6deg); }             /* tetap bawah */
}

/* GUNAWAN
   - Naik selesai pada 50% (≈ 6s)
   - Tetap atas sedikit sampai 66.66% (≈ 8s)
   - Turun antara 66.66% - 83.33% (≈ 8s - 10s) — lalu tetap bawah sampai loop
*/
@keyframes gunawanSeq {
  0%      { transform: translateY(0) rotate(-0.6deg); }
  50%     { transform: translateY(var(--name-rise)) rotate(1deg); }  /* sudah di atas */
  62.5%   { transform: translateY(var(--name-rise)) rotate(1deg); }  /* hold sedikit */
  75%  { transform: translateY(0) rotate(-0.6deg); }              /* turun */
  100%    { transform: translateY(0) rotate(-0.6deg); }              /* tetap bawah */
}

/* apply animations (semua menggunakan durasi total yang sama supaya sinkron) */
.name-vanessa {
  animation: vanessaSeq var(--name-cycle) var(--name-ease) infinite both;
}
.name-angeline {
  animation: angelineSeq var(--name-cycle) var(--name-ease) infinite both;
}
.name-gunawan {
  animation: gunawanSeq var(--name-cycle) var(--name-ease) infinite both;
}

/* reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .name-vanessa,
  .name-angeline,
  .name-gunawan {
    animation: none !important;
    transform: none !important;
  }
}

/* REVEAL EFFECT FOR RIGHT-SIDE IMAGE */
.reveal {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reveal img {
  width: 100%;
  height: auto;
  display: block;

  /* mulai tertutup */
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);

  transition: clip-path 1.6s ease, -webkit-clip-path 1.6s ease;
}

.reveal.active img {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}


@keyframes reveal-clip {
  from { clip-path: inset(0 0 100% 0); -webkit-clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0);   -webkit-clip-path: inset(0 0 0% 0); }
}

/* hargai prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal img { animation: none; clip-path: none; -webkit-clip-path: none; }
}



/* INI BUAT SECTION WORKS..*/
/* ===== WORKS SECTION ===== */
.works-section {
  position: relative;
  padding: 20px 90px 50px 90px;
  overflow: visible;
  background: #ffffff;
}

#works {
  scroll-margin-top: 60px !important;   /* atau 200–260px sesuai kenyamanan */
}

/* 2-column grid: kiri gambar (narrow), kanan konten */
.works-2col {
  max-width: 870px;
  margin-left: 20px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 120px;
  align-items: start;
}

/* LEFT visual stack */
.works-left { display: flex; align-items: flex-start; justify-content: flex-start; }
.visual-stack { position: relative; width: 240px; height: auto; }

.visual-stack {
  position: relative;
  width: 400px; /* sesuaikan nanti */
  height: 500px; /* sesuaikan nanti */
}

/* Base style */
.visual-stack .paper {
  position: absolute;
  width: 200px;
  height: auto;
  pointer-events: none;
}

/* layer belakang */
.paper-1 {
  top: 200px;
  left: 10px;
  z-index: 5;
}

/* layer tengah */
.paper-2 {
  top: 78px;
  left: 30px;
  z-index: 10;
}

/* layer depan */
.paper-3 {
  transform: rotate(0deg);
  top: -50px;
  left: 20px;
  z-index: 20;
}

/* paperclip */
.visual-clip {
  position: absolute;
  width: 26px;
  top: -70px;
  left: 170px;
  z-index: 30;
}

/* folder/base */
.visual-folder {
  position: absolute;
  width: 220px;
  bottom: -25px;
  left: 0;
  z-index: 999;
}


/* RIGHT content */
.works-right { padding-top: 80px; }

/* big title style (first item "layoooout") */
.works-title {
  font-size: 48px;
  color: #5c1833;
  margin: 20px 0 30px 0;
  font-weight: 700;
}

/* categories list */
.works-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -120px;
}

.work-item {
  margin: 34px 0;
}

/* category link appearance (big, spaced) */
.category-link {
  display: inline-block;
  text-decoration: none;
  color: #5c1833;
  font-family: "FontKedua";
  font-size: 42px;
  letter-spacing: -3%;
  transition: font-weight 120ms ease, transform 120ms ease, color 140ms ease;
  transform-origin: left;
}

/* hover and focus: become bold and slight lift */
.category-link:hover,
.category-link:focus {
  font-weight: 700;
  transform: translateY(-2px);
  color: #5c1833;
  outline: none;
  text-decoration: none;
  transform-origin: left center;
}

/* pointer cursor for better affordance */
.category-link { cursor: pointer; }

/* keyboard focus visible (accessibility) */
.category-link:focus-visible {
  outline: 3px solid rgba(92,24,51,0.9);
  outline-offset: 6px;
  transform-origin: left center;
}

/* OVERIDING SI TEKS KNP YA GAMAU BOLD DARI KIRI*/
.work-item {
  transform: none !important;
  transform-origin: left !important;
}

.work-item a,
.category-link {
  display: inline-block !important;
  transform-origin: left !important;
  transition: transform 0.18s ease, font-weight 0.18s ease, color 0.18s ease !important;
}

.work-item a:hover,
.category-link:hover {
  transform-origin: left !important;
  transform: scale(1.06) !important;
  font-weight: 700 !important;
}

/* smaller screens: stack columns */
@media (max-width: 980px) {
  .works-2col { grid-template-columns: 1fr; gap: 36px; padding: 24px; }
  .visual-stack { margin: 0 auto; width: 220px; }
  .visual-paper { left: 12px; top: 0; width: 160px; }
  .visual-clip { left: 42px; top: -10px; width: 44px; }
  .visual-folder { left: 18px; bottom: -8px; width: 180px; }
  .works-title { font-size: 34px; text-align: left; }
  .category-link { font-size: 28px; }
  .work-item { margin: 18px 0; }
}

.works-left { position: relative; }   /* konteks positioning untuk dots works */
.works-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}
.float-dot {
  position: absolute;
  width: 20px;
  height: 26px;
  border-radius: 50%;
  background: #5c1833;
  box-shadow: 0 6px 18px rgba(92,24,51,0.06);
  will-change: transform;
}


/* ===== FOOTER ===== */
.footer-section {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;

  /* background image (responsive) */
  background-image: url("homepage-assets/footer.jpg"); 
  background-repeat: no-repeat;
  background-size: cover;               /* COVER = responsif */
  background-position: center 30%;      /* ubah "top" ke % kalau mau crop naik */
  /* background-position: center 20%; */ /* contoh bila mau 'naikkan' crop */

  /* penting: jangan pakai padding negatif */
  padding: 0 0 25px;     /* atas:0, kanan:0, bawah:120px (ubah sesuai kebutuhan) */
  margin-top: 10px;
  /* pastikan footer cukup tinggi untuk menampung rotated panel */
  min-height: 200px;      /* naikkan kalau masih muncul putih (mis. 600px) */
  position: relative;
}

/* container di dalam footer */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 130px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;            /* konten di atas bg */
  box-sizing: border-box;
}

/* hit me text */
.footer-hit {
  font-family: "FontKedua";
  font-size: 90px;
  font-weight: 70;
  color: #DDF75A;
  transform: rotate(-deg);
  line-height: 0.9;

  /* jangan pakai margin-top besar; kontrol vertikal lewat padding/min-height footer */
  margin: 0;                 /* reset */
  padding-top: 250px;         /* kalau butuh kecilkan/tingkatkan, atur di sini */
}

/* naik/turunkan letter 'u' */
.footer-hit .u-up {
  display: inline-block;
  transform: translateY(-18px) rotate(-7deg);
}

/* ---------- CONTACT columns in footer (new) ---------- */
.footer-right {
  display: flex;
  align-items: left;      /* supaya kolom vertikal center relatif to panel */
  justify-content: flex-start;
  padding-right: 110px;      /* geser kontak sedikit ke kiri / ke dalam */
  padding-top: 280px;
  box-sizing: border-box;
  pointer-events: auto;
  z-index: 90;
}

.contact-details {
  display: flex;
  gap: 80px;                /* jarak antar kolom */
  align-items: left;      /* center vertically inside footer-right */
}

/* each column */
.contact-column {
  display: flex;
  flex-direction: column;
  gap: 20px;                /* jarak antar field di tiap kolom */
  text-align: left;
  min-width: 200px;         /* jaga lebar agar rapi */
  box-sizing: border-box;
}

/* each field */
.contact-item { 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* small label (telp / email etc) */
.contact-item .label {
  font-size: 11px;
  color: #DDF75A;  /* bisa set jadi slightly muted maroon, atau #DDF75A jika mau terang */
  opacity: 0.75;
  margin-bottom: 3px;
}

/* value (nomor / alamat) */
.contact-item .value {
  font-size: 13px;
  color: #DDF75A;
  line-height: -3%;
  letter-spacing: 0;
}

.contact-item a.value {
  color: #DDF75A;
  text-decoration: none;
}

.contact-item a.value:hover {
  opacity: 0.7;
}

/* Responsive: stack column on small screens */
@media (max-width: 980px) {
  .footer-right { padding-right: 24px; }
  .contact-details {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .contact-column { min-width: 100%; text-align: left; }
  .contact-item .label { text-align: left; }
  .contact-item .value { text-align: left; }
}


/* responsive tweaks (sesuaikan bila perlu) */
@media (max-width: 980px) {
  .footer-section { padding: 40px 20px 90px; min-height: 420px; background-position: center center; }
  .footer-hit { font-size: 60px; transform: rotate(-6deg); padding-top: 16px; }
  .contact-panel::before { top: 28px; height: 320px; width: calc(100% - 10px); }
}

/* ========= RESPONSIVE HELPERS ========== */

/* small-breakpoints */
:root {
  --bp-mobile: 980px;   /* main breakpoint (tablet+mobile) */
}

/* 1) NAV: transform to hamburger on small screens */
/* HAMBURGER FIX: pastikan 3 bar tersusun vertikal dan terlihat */
.hamburger {
  display: none;                 /* default hidden on desktop */
  align-items: center;
  justify-content: center;
  flex-direction: column;        /* IMPORTANT: stack bars vertically */
  gap: 5px;                      /* spacing between bars */
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 5000;                 /* above header content */
}

/* the three little bars */
.hamburger .hamburger-bar {
  display: block;
  width: 20px;                   /* bar width */
  height: 1.5px;                   /* bar thickness */
  border-radius: 0px;
  background: #5c1833;           /* same maroon color */
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease;
}

/* show hamburger on small screens (match your breakpoint) */
@media (max-width: 980px) {
  .hamburger { display: inline-flex; }   /* becomes visible on mobile */
  .nav-menu { display: none !important; } /* hide desktop menu */
}

/* optional: visual open state (rotate to X) */
/* add/remove class 'open' on button when toggled in JS if you want the animation */
.hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* mobile nav panel (hidden by default) */
.mobile-nav {
  display: none; /* toggled by JS with class .open */
  position: fixed;
  right: 18px;
  top: calc(var(--header-height,84px) + 10px);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(92,24,51,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 4000;
}

/* mobile nav list inside panel */
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.mobile-nav li { margin: 8px 0; }
.mobile-nav a { color: #5c1833; text-decoration:none; font-weight:600; }

/* 2) make global layout adapt */
@media (max-width: 1200px) {
  /* reduce paddings for medium screens */
  nav { padding: 22px 28px; }
  .intro { padding: 60px 28px; flex-direction: column; gap: 28px; align-items: flex-start; }
  .left-image img { width: 360px; margin-top: -160px; }
  .right-image img { width: 420px; margin-right: 0; margin-top: 0; }

  .about-2col { grid-template-columns: 1fr 1fr; gap: 34px; padding: 24px; }
  .works-2col { grid-template-columns: 1fr 1fr; gap: 30px; margin-left: 0; }
}

/* 3) MOBILE / SMALL: stack everything, hide decorative dots or reduce */
@media (max-width: 980px) {
  /* NAV: show hamburger, hide inline menu */
  .nav-menu { display: none !important; }
  .hamburger { display: inline-flex; }

  /* show mobile nav placeholder (JS will populate with .nav-menu items) */
  .mobile-nav { display: none; } /* will be toggled open by JS */

  /* layout stacks */
  .intro { padding: 34px 20px; flex-direction: column; align-items: center; }
  .left-image, .right-image { order: 0; text-align:center; }
  .left-image img { width: 60%; margin: 0 auto; transform:none; }
  .right-image img { width: 80%; margin: 10px auto 0; }

  /* ABOUT: stack columns vertically */
  .about-2col { grid-template-columns: 1fr; padding: 20px; gap: 20px; max-width: 920px; }
  .contact-list { margin-left: 0; display: flex; flex-wrap:wrap; gap:12px; }

  /* WORKS slides: stack */
  .works-2col { grid-template-columns: 1fr; gap: 22px; padding: 18px; }
  .visual-stack { width: 260px; margin: 0 auto; }

  /* FOOTER: stack and reduce sizes */
  .footer-content { flex-direction: column; padding: 28px 20px; align-items: flex-start; }
  .footer-hit { font-size: 44px; padding-top: 8px; transform: rotate(-6deg); }

  /* reduce font sizes for readability on small screens */
  .work-title { font-size: 28px; }
  .category-link { font-size: 20px; }

  /* ensure images are responsive */
  img { max-width: 100%; height: auto; }

  /* ensure header fixed height smaller */
  header { height: 64px; }
  :root { --header-height: 64px; }
  main { padding-top: var(--header-height); }
}

/* 4) extra small screens - tighten spacing */
@media (max-width: 480px) {
  .footer-hit { font-size: 34px; }
  .hi { font-size: 20px; }
  .name-vanessa, .name-stack { font-size: 20px; margin-left: 0; }
  .nav-image img.hitme-img { width: 88px; }
}

