@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap');

:root{
  --orange:#ff5b2e;
  --green:#08a957;
  --green-dark:#087e45;
  --cream:#f2f0e6;
  --black:#050505;
  --white:#f8f7ef;
  --yellow:#ffffcf;
  --line:rgba(0,0,0,.7);
  --font:"Archivo", Arial, Helvetica, sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--cream);color:var(--black)}
img{display:block;max-width:100%}
a{color:inherit}



/* ---------------------------------------- NAVBAR MENU ----------------------------------------*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  z-index: 9999;

  display: grid;

  /* HITAM MENGIKUTI PANJANG BRAND */
  grid-template-columns: max-content 1fr;

  background: var(--orange);
  border-bottom: 1px solid #111;

  font-size: 20px;
}

/* BANDUNG — GO */
.brand {
  height: 35px;

  display: flex;
  align-items: center;

  padding: 0 28px;

  background: #050505;
  color: var(--orange);

  text-decoration: none;

  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.06em;

  white-space: nowrap;
}

/* GARIS DI TENGAH */
.brand i {
  display: block;

  width: 95px;
  height: 3px;

  margin: 0 8px;

  background: var(--orange);

  flex-shrink: 0;
}

/* NAVIGASI SAMA RATA */
.nav-links {
  height: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
}

.nav-links a {
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;
  background: var(--orange);

  text-decoration: none;

  font-size: 20px;
  font-weight: 400;

  letter-spacing: -0.03em;

  white-space: nowrap;
}

.nav-links .map-link {
  font-size: 20px;
  font-weight: 400;
}

/* HOVER */
.nav-links a:hover {
  background: #050505;
  color: var(--orange);
}

/* MOBILE */
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #111;
  font-size: 20px;
}



/* ----------------------------------------- PAGE MENU -----------------------------------------*/
.menu-section {
  padding: 50px 0 0;
  background: var(--cream);
  position: relative;
}

/* TITLE */
.menu-title {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-size: clamp(65px, 11vw, 120px);
  line-height: 0.78;
  letter-spacing: -0.09em;
  font-weight: 900;
  margin: 0 auto 45px;
  padding: 0;
  transform: translateX(-10px);
}

/* MEDIA / FOTO */
.menu-media {
  width: 100%;
  /* DIBUAT LEBIH PANJANG KE BAWAH */
  height: calc(100vh + 100px);
  min-height: 900px;
  position: relative;
  overflow: hidden;
}

.menu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  display: block;
}

/* DARK GRADIENT */
.menu-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 30%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0.65) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* MAIN IMAGE TITLE */
.menu-overlay-title {
  position: absolute;
  z-index: 3;
  right: 4%;
  width: 40%;
  top: 35%; /* DITURUNKAN */
  background: #000;
  color: #fff;
  padding: 10px 15px;
  box-sizing: border-box;
  text-align: justify;
  text-align-last: justify;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  font-weight: 900;
}

/* SMALL TEXT */
.menu-small {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
  bottom: 30px;
}

/* LEFT */
.menu-small.left {
  left: 30px;
  font-style: italic;
}

/* ACTION AREA */
.menu-action {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 45px;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* DESCRIPTION */
.menu-small.right {
  position: static;
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  width: 100%;
}

/* MAP BUTTON */
.menu-map-button {
  position: static;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  transition: all 0.25s ease;
}

/* HOVER */
.menu-map-button:hover {
  background: #000;
  color: #fff;
}



/* ------------------------------------ PAGE 01 MAP DETAILS ------------------------------------*/
.green-section{
  min-height:1240px;
  padding:55px 20px 55px;
  text-align:center;
  position:relative;
  overflow:hidden;
  background:var(--green);
}

/* ----- PAPER TEXTURE ----- */
.paper-texture{
  background-color:var(--green);

  background-image:
    /* Tekstur Dasar */
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.025) 0 1px,
      transparent 1px 4px
    ),

    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.018) 0 1px,
      transparent 1px 5px
    ),

    /* Lipatan Diagonal Besar */
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 30%,
      rgba(255,255,255,.045) 30.5%,
      rgba(255,255,255,.015) 34%,
      transparent 38%
    ),

    linear-gradient(
      70deg,
      transparent 0%,
      transparent 62%,
      rgba(0,0,0,.035) 62.5%,
      rgba(255,255,255,.025) 66%,
      transparent 70%
    ),

    /* Lipatan Horizontal */
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 42%,
      rgba(255,255,255,.025) 43%,
      rgba(0,0,0,.025) 45%,
      transparent 47%
    ),

    /* Warna Dasar */
    linear-gradient(
      90deg,
      rgba(255,255,255,.035),
      rgba(0,0,0,.025)
    );
}

/* ----- FOTO ATAS ----- */
.green-top-photo{
  width:55px;
  height:72px;

  margin:0 auto 50px;

  overflow:hidden;
}

.green-top-photo img{
  width:100%;
  height:100%;

  object-fit:cover;

  filter:grayscale(1) contrast(.8);
  mix-blend-mode:multiply;
}

    /* EFEK HIJAU FOTO ATAS */
    .green-bottom-photo::after{
      content:"";
      position:absolute;
      inset:0;
      background:#08a957;
      opacity:.8;
      mix-blend-mode:multiply;
      pointer-events:none;
    }

/* ----- LABEL ----- */
.green-section .section-label{
  font-size:12px;
  letter-spacing:.04em;

  margin-bottom:18px;
}


/* ----- MAIN TITLE ----- */
.green-section h2{
  font-size:clamp(38px,5vw,68px);
  line-height:.82;
  letter-spacing:-.07em;
  font-weight:900;
}


/* ----- DESKRIPSI ----- */
.green-description{
  max-width:650px;

  margin:42px auto 50px;

  font-size:14px;
  line-height:1.4;
}

/* ----- FEATURE ----- */
.green-feature{
  width:min(900px,95%);

  margin:auto;

  display:grid;
  grid-template-columns:1fr 240px 1fr;

  align-items:center;

  gap:35px;
}

/* ----- FOTO TENGAH ----- */
.green-feature img{
  width:240px;
  height:310px;

  object-fit:cover;

  margin:auto;
}

/* ----- OVAL ----- */
.oval-info{
  width:180px;
  min-height:52px;

  margin:auto;

  border:1px solid #111;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:7px;

  padding:6px 14px;
}

    /* angka / MAP */
    .oval-info strong{
      font-size:15px;
    }

    .oval-info small{
      font-size:8px;
    }


/* ----- LOCATION ----- */
.green-location{
  margin-top:20px;
}

.green-location p{
  font-size:12px;

  margin-bottom:18px;
}

.green-location h3{
  font-size:clamp(42px,6vw,75px);
  line-height:.78;
  letter-spacing:-.07em;
  margin:0;
  padding-bottom:70px;
}

/* ----- FOTO BAWAH ----- */
.green-bottom-photo{
  position:absolute;

  width:55px;
  height:72px;

  left:50%;
  bottom:50px;

  transform:translateX(-50%);
  margin:0;

  overflow:hidden;
}

.green-bottom-photo img{
  width:100%;
  height:100%;

  object-fit:cover;

  filter:grayscale(1) contrast(.8);
  mix-blend-mode:multiply;
}

    /* EFEK HIJAU FOTO BAWAH */
    .green-bottom-photo::after{
      content:"";
      position:absolute;
      inset:0;
      background:#08a957;
      opacity:.8;
      mix-blend-mode:multiply;
      pointer-events:none;
    }



/* --------------------------------------- PAGE 02 PLACE ---------------------------------------*/
.lineup-section{
  position:relative;
  width:100%;
  height:760px;
  min-height:760px;

  background:#000;

  overflow:hidden;
}

/* ----- GIF / FOTO ----- */
.lineup-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lineup-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lineup-photo .foto-bawah {
    z-index: 1;
}

.lineup-photo .foto-atas {
    z-index: 2;
}

/* ----- BLACK GRADIENT ----- */
.lineup-gradient{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,.08) 45%,
      rgba(0,0,0,.35) 60%,
      rgba(0,0,0,.72) 78%,
      rgba(0,0,0,.95) 100%
    );
}

/* ----- TEXT DI BAWAH ----- */
.lineup-copy{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:45px;
  transform:translateX(-50%);
  width:min(720px,88%);
  text-align:center;
  color:#f6f3e8;
}

    /* LABEL */
    .lineup-copy .section-label{
      margin-bottom:14px;
      font-size:11px;
      font-weight:700;
      letter-spacing:.04em;
    }

    /* DESKRIPSI */
    .lineup-copy > p:not(.section-label){
      max-width:620px;
      margin:0 auto;
      font-size:14px;
      line-height:1.35;
    }


    
/* -------------------------------------- PAGE 03 GALLERY --------------------------------------*/
.gallery-section {
  min-height: 1100px;
  padding: 90px 30px 100px;
  background: var(--cream);
  overflow: hidden;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 65px;
}

.gallery-header .section-label {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.gallery-header h2 {
  font-size: clamp(80px, 12vw, 170px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  font-weight: 900;
}

/* ----- GALLERY GRID ----- */
.gallery-grid {
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 850px;
  margin: 0 auto;
}

/* ----- GALLERY ITEM ----- */
.gallery-item {
  position: absolute;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transform: scale(1.12);

  transition:
    transform 1.1s cubic-bezier(.2, .65, .25, 1),
    filter 0.6s ease;
}

/* ----- HOVER ----- */
.gallery-item:hover img {
  transform: scale(1);
  filter: brightness(0.88);
}

/* ----- FOTO 01 BESAR KIRI ----- */
.gallery-main {
  left: 0;
  top: 0;

  width: 48%;
  height: 510px;
}

/* ----- FOTO 02 POTRAIT TENGAH ----- */
.gallery-portrait {
  left: 51%;
  top: 0;

  width: 23%;
  height: 620px;
}

/* ----- FOTO 03 KECIL KANAN ATAS ----- */
.gallery-small-one {
  right: 0;
  top: 0;

  width: 22%;
  height: 270px;
}

/* ----- FOTO 04 KECIL KANAN BAWAH ----- */
.gallery-small-two {
  right: 0;
  top: 300px;

  width: 22%;
  height: 270px;
}

/* ----- FOTO 05 LANDSCAPE BAWAH ----- */
.gallery-landscape {
  left: 13%;
  top: 550px;

  width: 35%;
  height: 270px;
}

/* HOVER */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0);

  transition: background 0.5s ease;

  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.05);
}

/* ----- GALLERY PURPOSE ----- */
.gallery-purpose {
  position: absolute;

  right: 0;
  top: 650px;

  width: 47%;

  box-sizing: border-box;

  padding: 20px 10px 20px 10px;

  text-align: right;

  z-index: 10;
}

.gallery-purpose p {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;

  margin: 0;
}



/* ------------------------------------- PAGE 04 OPEN MAP --------------------------------------*/
.map-cta-section{
  min-height:650px;
  background:#000;
  color:#fff;
  padding:95px 6vw;
}

.map-cta-section h2{
  font-size:clamp(75px,12vw,175px);
  line-height:.72;
  letter-spacing:-.085em;
  margin:25px 0 60px
}

.map-cta-section>p:not(.section-label){
  max-width:370px;
  font-size:13px;
  line-height:1.25;
  margin-bottom:25px
}

.cream-button{
  display:inline-block;
  background:var(--yellow);
  color:#111;
  text-decoration:none;
  padding:12px 55px;
  font-size:12px
}



/* ------------------------------------------- FOOTER ------------------------------------------*/
.footer-section{
  min-height:650px;
  background:var(--orange);
  padding:40px 25px 20px;
  position:relative;
}

.footer-content{
  height:560px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
}

.footer-title h2{
  font-size:clamp(72px,11vw,160px);
  line-height:.78;
  letter-spacing:-.08em;
  margin:0;
}

/* ----- SOCIAL ----- */
.footer-social{
  display:flex;
  gap:30px;
  margin-top:70px;
}

.footer-social a{
  color:#111;
  font-size:34px;
  transition:.3s ease;
}

.footer-social a:hover{
  transform:translateY(-4px);
  opacity:.75;
}

/* ----- FOOTER BAWAH ----- */
.footer-section footer{
  position:absolute;
  bottom:18px;
  left:25px;
  right:25px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:10px;
}


@media(max-width:760px){

  .navbar{
    grid-template-columns:1fr 40px;
    height:38px;
  }

  .nav-links,
  .nav-about{
    display:none;
  }

  .menu-toggle{
    display:block;
    justify-self:end;
  }

  .menu-section{
    padding-top:54px;
  }

  .menu-title{
    font-size:15vw;
  }

  .menu-media{
    height:72vh;
    min-height:520px;
  }

  .menu-overlay-title{
    right:10px;
    top:40%;
    max-width:72%;
    font-size:34px;
  }

  .menu-small.right{
    width:55%;
    right:12px;
  }

  .menu-map-button{
    left:15px;
    right:15px;
    text-align:center;
    bottom:15px;
  }

  .green-section{
    min-height:1050px;
  }

  .green-feature{
    grid-template-columns:1fr;
    gap:25px;
  }

  .green-feature img{
    width:190px;
    height:250px;
  }

  .green-feature .oval-info{
    max-width:310px;
    margin:auto;
  }

  .lineup-section{
    min-height:720px;
  }

  .lineup-heading{
    font-size:11vw;
    grid-template-columns:1fr 1fr;
  }

  .lineup-heading span:nth-child(3){
    display:none;
  }

  .lineup-heading strong{
    grid-column:1/-1;
  }

  .lineup-photo{
    height:680px;
  }

  .place-marquee{
    overflow:hidden;
    justify-content:flex-start;
    gap:25px;
    white-space:nowrap;
  }

  .gallery-section{
    padding:70px 15px;
  }

  .gallery-header{
    display:block;
  }

  .gallery-grid{
    min-height:900px;
  }

  .gallery-large{
    width:72%;
    height:480px;
  }

  .gallery-one{
    width:45%;
    height:260px;
    right:0;
    top:430px;
  }

  .gallery-two{
    width:43%;
    height:250px;
    left:12%;
    bottom:0;
  }

  .footer-contact{
    display:block;
  }

  .footer-contact p{
    text-align:left;
    margin-top:25px;
  }

  .footer-section footer{
    position:static;
    margin-top:70px;
    display:block;
  }

  .footer-section footer span{
    display:block;
    margin-top:8px;
  }

}




