/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}

/* FONTS (sesuaikan path font bila beda) */
@font-face {
  font-family: 'Instrument Serif';
  src: url('Font/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif Italic';
  src: url('Font/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('Font/InstrumentSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --serif: "Instrument Serif", serif;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* BODY / PAGE WRAPPER */
body {
  background: #c3ff00; /* neon green */
  font-family: var(--sans);
  color: #000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* wrapper supaya konten tidak langsung ketutupan navbar fixed */
.page-wrapper {
  padding-top: 110px; /* naikkan kalau navbar lebih tinggi */
}

/* NAVBAR fixed di atas */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  justify-content: center;
  padding: 6px 12px;
  background: transparent;
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 120px;
  align-items: center;
}
.navbar ul li img {
  width: 140px;
  height: auto;
  display: block;
  cursor: pointer;
}

/* PROJECT SECTION (full width image strips) */
.project-section {
  width: 100%;
  position: relative;
  overflow: visible;
}

/* gambar default full-width (horizontal full bleed) */
.project-image {
  display: block;
  width: 100vw;      /* full-bleed horizontally */
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  object-fit: cover;
  margin-bottom: -4px;
}

/* ---------- SUBNAV yang overlay di atas gambar section 1 ---------- */
/* NOTE: .subnav sekarang berada INSIDE #Illustrasi di HTML */
#Illustrasi { position: relative; }
#Illustrasi .subnav {
  position: absolute;
  top: 28px;         /* atur jarak dari atas gambar (turunkan/naikkan sesuai need) */
  left: 48px;        /* atur jarak dari kiri */
  z-index: 1300;     /* lebih tinggi dari gambar */
  display: flex;
  gap: 28px;
  align-items: center;
  pointer-events: auto;
}

/* sub nav item style */
.sub-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  color: rgba(0, 0, 0, 0.23);
  text-decoration: none;
  padding: 4px 70px;
  border-radius: 30px;
  transition: transform .12s ease, color .12s ease;
  margin-top: -20px;
  margin-left: -70px;
}
.sub-item:hover { transform: translateY(-4px); color: #000; }
.sub-item.active { color: #000; text-shadow: 0 6px 14px rgba(0,0,0,0.06); }

/* ---------- Section 2 MILO ---------- */
#museum {      
  width: 100vw;
  max-width: none;
}

/* SECTION 3 ricky */
#ricky .project-image {
  width: 100vw;
  max-width: none;
}

/* SECTION 4 sustainability */
#sustainability .project-image {
  width: 100vw;
  max-width: none;
}

/* ---------- NEXT WORK (folder links) ---------- */
.next-work-section {
  padding: 80px 0;
  background: url(branding/bg.png) center/cover no-repeat;
  position: relative;
}
.next-work-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.next-card img {
  width: 480px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease;
  filter: drop-shadow(0 20px 40px rgba(172, 0, 255, 0.28));
}
.next-card img:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 30px 70px rgba(172, 0, 255, 0.35));
}

/* ===== CONTACT / FOOTER SECTION (di bawah My Work) ===== */
.contact-section {
  background: #BFFF00;
  padding: 44px 0 64px;
  color: #000000;
  font-family: var(--sans, "Instrument Sans", sans-serif);
}

/* layout grid 3 kolom like mockup */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 520px 360px;
  gap: 28px 36px;
  align-items: start;
  width: min(1400px, 95%);
  margin: 0 auto;
  padding: 8px 0;
}

/* column base */
.footer-col { padding: 6px 12px; }

/* Titles use serif italic + neon green color */
.footer-title {
  font-family: var(--serif, "Instrument Serif", serif);
  font-style: italic;
  font-weight: 400;
  color: #AC00FF;               /* neon ungu */
  font-size: 40px;
  margin: 0 0 16px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* center title slightly smaller */
.center-title { font-size: 36px; }

/* paragraph text */
.footer-text {
  color: rgba(0, 0, 0, 0.95);
  font-size: 14px;
  line-height: 1.6;
  max-width: 560px;
}

/* FEEDBACK / SEARCH input */
.feedback-form { display:flex; justify-content:center; align-items:center; }
.search-box {
  display:flex;
  align-items:center;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 28px;
  padding: 10px 12px;
  box-shadow: 0 8px 26px rgba(172,0,255,0.12);
}

.search-box input[type="text"]{
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  padding: 8px 10px;
  background: transparent;
  color: #111;
  border-radius: 20px;
}
.search-box input::placeholder { color: #999; }

.search-btn{
  border: none;
  background: transparent;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 8px;
  margin-left: 8px;
  cursor: pointer;
}

.feedback-toast{
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: rgba(0,0,0,0.86);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  z-index: 3000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
}
.feedback-toast.show{
  opacity: 1;
  transform: translateY(0);
}


/* CONTACT LIST (right) */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon image */
.contact-list .icon {
  display: inline-flex;
  width: 22px;  /* ukuran icon */
  height: 22px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.contact-list .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.contact-line {
  color: #000000;
  font-size: 14px;
  line-height: 1.4;
}


/* Accessibility helper (visually hidden) */
.visually-hidden {
  position:absolute!important;
  height:1px; width:1px;
  overflow:hidden; clip:rect(1px,1px,1px,1px);
  white-space:nowrap; border:0; padding:0; margin:-1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .navbar ul { gap: 60px; }
  .navbar ul li img { width: 120px; }
  .sub-item { font-size: 32px; }
  .container.footer-inner { grid-template-columns: 1fr; gap: 24px; }
  #museum { min-height: 520px; }
  #museum .museum-image { width: 95%; max-width: 1100px; }
}
@media (max-width: 700px) {
  .navbar ul { gap: 24px; }
  .navbar ul li img { width: 100px; }
  .sub-item { font-size: 22px; }
  .page-wrapper { padding-top: 90px; }
  .next-card img { width: 320px; }
  #museum { min-height: 420px; }
  #museum .museum-image { width: 100%; max-width: none; border-radius: 0; }
}
