/*
Theme Name: mufti
Theme URI: https://example.com
Author: Nama Kamu
Description: Tema WordPress sederhana bernama Mufti.
Version: 1.0
Text Domain: mufti
*/

* {
    box-sizing: border-box;
}

 /* 1. Reset, Variables, & Smooth Scroll */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* EFEK SMOOTH SCROLL (Untuk Anchor Links) */
        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary-color: #ffffff;
            --secondary-color: #1e1e1e;
            --font-heading: 'Oswald', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-family: var(--font-body);
            min-height: 300vh; /* Agar bisa scroll */
            margin: 0;
            letter-spacing: 0px;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 0px;
            font-size: 0.8rem;
        }

        ul.menuheader {
            display: contents;
            list-style: none;
        }

        ul.menuheader li a {
            font-size: 11px;
        }

        /* ============================================== */
        /* 2. Header & Navigasi (DESKTOP) */
        /* ============================================== */
        /* Arrow umum (desktop & mobile) */
        /* Section wrapper */
/* bungkus section overview */

.logo {
    width: 50%;
    padding-right: 19px;
}


.cv-premium-section-sub {
    letter-spacing: 0px!important;
}
.process-section {
       /* kalau mau sama kayak section lain */
  color: #fff;
  padding: 80px 0px;
  position: relative;
  z-index: 2;            /* biar di atas background lain */
}

/* grid item overview */
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 48px;
}

/* 1 box */
.process-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ikon + ukuran gambar */
.process-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* atau center kalau mau di tengah */
}

.process-icon img {
  max-width: 35px;      /* atur ukuran ikon di sini */
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
}

/* judul & teks */
.process-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.process-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #b3b3b3;
}

/* responsive */
@media (max-width: 768px) {
  .process-section {
    padding: 56px 16px;
  }

  .process-inner {
    gap: 32px;
  }

  .process-title {
    font-size: 1.4rem;
  }
}


.submenu-arrow,
.overlay-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* DESKTOP: li.nav-item yang open → arrow mutar */
.nav-item.open > a .submenu-arrow {
    transform: rotate(180deg);
}

/* MOBILE: parent .overlay-menu-item-has-children yang open → arrow mutar */
.overlay-menu-item-has-children.overlay-open .overlay-arrow {
    transform: rotate(180deg);
}


        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            padding: 0 0 0 40px;
            height: 100px; /* Tinggi default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background-color: transparent; /* Awalnya transparan */
            transition: background-color 0.4s ease-in-out, height 0.4s ease-in-out;
        }

        .navbar.scrolled {
            background-color: var(--secondary-color); /* Berubah saat di-scroll */
            height: 80px; /* Lebih kecil saat di-scroll */
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .logo {
            width: auto;
            display: flex; /* Untuk memposisikan gambar di tengah */
            align-items: center;
            transition: transform 0.4s ease-in-out; /* Animasi untuk logo */
        }

        .logo img {
            width: 60px; /* Ukuran default */
            height: auto;
            transition: width 0.4s ease-in-out; /* Animasi untuk ukuran gambar logo */
        }

        .navbar.scrolled .logo img {
            width: 40px; /* Lebih kecil saat di-scroll */
        }

        .imagine-more {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navbar-right {
            display: flex;
            align-items: stretch;
        }

        .nav-item {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
            background-color: transparent; /* Tetap transparan atau ikuti parent */
            position: relative;
            transition: background-color 0.4s ease-in-out;
        }

        .nav-item:not(:last-child) {
            border-right: 1px solid rgba(255, 255, 255, 0.1); /* Border lebih lembut */
            transition: border-color 0.4s ease-in-out;
        }

        .navbar.scrolled .nav-item:not(:last-child) {
            border-right: 1px solid #383838;
        }

        /* Gaya Kolom PROJECTS */
        .projects-column {
            padding: 0 30px;
            flex-direction: column;
        }

        .projects-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-size: 12px;
        }

        .plus-icon {
            font-size: 1.5rem;
            line-height: 1;
            margin-bottom: 5px;
            display: block;
        }

        /* Gaya Kolom MENU */
        .menu-column {
            width: 100px;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .menu-toggle-text {
            font-weight: normal;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 12px;
        }

        .menu-toggle-icon {
            display: block;
            width: 85px;
            height: 0.8px;
            background: var(--primary-color);
            box-shadow: 0 8px 0 var(--primary-color), 0 -8px 0 var(--primary-color);
        }

        /* Sembunyikan Ikon Burger Mobile di desktop */
        .burger-icon {
            display: none;
        }

        /* ============================================== */
        /* 3. Submenu Styles (DESKTOP) */
        /* ============================================== */
        .submenu {
            list-style: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 100%;
            background-color: var(--secondary-color);
            padding: 10px 0;
            z-index: 90;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            border-top: 2px solid var(--primary-color);
            text-align: center;
        }

        .submenu li a {
            display: block;
            padding: 8px 15px;
            white-space: nowrap;
            font-size: 0.75rem;
        }

        .projects-column:hover > .submenu {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================== */
        /* 4. Hero Section (Konten Utama) */
        /* ============================================== */
        .hero-section {
            position: relative;
            min-height: 100vh; /* Menggunakan 100vh karena header transparan */
            display: flex;
            align-items: flex-end;
            justify-content: center;
            /*overflow: hidden;  Penting untuk parallax */
        }

        .hero-background {
            position: absolute;
            /* PARALLAX SETUP: Posisikan lebih tinggi dan buat lebih tinggi */
            top: -20%;
            height: 120%;
            left: 0;
            width: 100%;
            /* Akan digerakkan oleh JS */
            will-change: transform;
        }

        .hero-background img {
            width: 100%;
            height: 100%; /* Menyesuaikan container (120%) */
            object-fit: cover;
            object-position: top center;
           
           /* filter: brightness(0.6);*/
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 5;
            text-align: center;
            padding-bottom: 10vh;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 7vw;
            line-height: 1;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Logo di atas hero section */
        .hero-logo-large {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2; /* Di bawah header tetap, tapi di atas hero content */
            opacity: 0.2; /* Untuk efek watermark */
            pointer-events: none; /* Agar tidak mengganggu interaksi */
        }

        .hero-logo-large img {
            width: clamp(200px, 40vw, 600px); /* Ukuran responsif */
            height: auto;
        }

        /* ============================================== */
        /* 5. Menu Responsive (SLIDE DOWN OVERLAY) */
        /* ============================================== */
        .responsive-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            z-index: 200;
            transform: translateY(-100%); /* Awalnya di atas viewport */
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            padding: 20px;
            text-align: center;
        }

        .responsive-menu-overlay.is-open {
            transform: translateY(0);
        }

        .overlay-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px 20px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .overlay-logo {
            font-weight: bold;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .close-btn {
            background: none;
            border: none;
            color: var(--primary-color);
            padding: 8px 15px;
            cursor: pointer;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
            font-size: 0.8rem;
        }

        .overlay-nav-links {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 50px 0;
            flex-grow: 1;
            justify-content: center;
            overflow-y: auto;
        }

        .overlay-nav-links a {
            font-family: var(--font-heading);
            font-size: 3vw;
            line-height: 1;
            letter-spacing: 2px;
            transition: color 0.2s;
            text-transform: uppercase;
            text-shadow: 1px 1px 0 #fff, -1px -1px 0 rgba(0,0,0,0.5); 
        }

        .overlay-submenu {
            list-style: none;
            padding: 0;
            margin-top: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        }

        .overlay-submenu.is-open {
            max-height: 300px;
            padding: 10px 0;
        }

        .overlay-submenu li a {
            font-family: var(--font-body);
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            padding: 10px 0;
            display: block;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
            text-transform: none;
            text-shadow: none;
        }

        .overlay-footer {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .overlay-footer p {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .contact-link {
            font-weight: bold;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        /* ============================================== */
        /* 6. Konten Misi (OUR MISSION) */
        /* ============================================== */
        .mission-container {
            max-width: 1000px;
            padding: 20px 20px;
            margin: auto;
        }

        .mission-header {
            display: inline-block;
            padding: 8px 15px;
            margin-bottom: 30px;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            text-transform: uppercase;
            font-size: 0.85em;
            letter-spacing: 0px;
            font-weight: bold;
            margin-top: 40px;
        }

        .mission-text {
            font-size: 1.5em;
            line-height: 1.5;
            font-weight: 300;
        }

        /* ============================================== */
        /* 7. Proyek (OUR PROJECTS) */
        /* ============================================== */
        .ourprojects {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .project-header {
            margin-bottom: 50px;
        }

        .project-header h1 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1;
            margin: 0 0 10px 0;
            text-transform: capitalize;
        }

        .project-header h1 span.plus {
            font-size: 1em;
            font-weight: 300;
            margin: 0 10px;
        }

        .project-header p {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.7;
            margin-top: 15px;
        }

        .project-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .project-item {
               flex: 1 1 100%;
    position: relative;
    height: 373px;
    overflow: hidden;
    background-color: #1a1a1a;
    min-height: auto;
    cursor: pointer;
    width: 373px;
    border-radius: 20px;
        }

        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease-out;
        }

        .project-caption {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.4);
            transition: background-color 0.4s ease-out;
            z-index: 10;
        }

        .caption-title {
            color: #ffffff;
            padding: 8px 15px;
            font-size: 1.4rem;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
            transition: transform 0.4s ease-out;
        }

        .caption-button {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 700;
            padding: 10px 20px;
            border: 2px solid #ffffff;
            background: transparent;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out, background 0.2s;
        }

        .caption-button:hover {
            background: #ffffff;
            color: #000000;
        }

        .project-item:hover .project-caption {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .project-item:hover .caption-title {
            transform: translateY(-20px);
        }

        .project-item:hover .caption-button {
            opacity: 1;
            transform: translateY(0);
        }

        .project-item:hover img {
            transform: scale(1.05);
        }

        /* ============================================== */
        /* 8. Tentang Kami (ABOUT US) */
        /* ============================================== */
          .aboutus-page {
      padding: 60px 20px 80px;
      background-color: #181717;
    }

    .aboutus-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 32px;
      align-items: flex-start;
    }

    /* LEFT COPY */
    .aboutus-copy {
      flex: 0 0 320px;
    }

    .aboutus-copy h2 {
      font-size: clamp(32px, 4vw, 44px);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .aboutus-copy p {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
      max-width: 380px;
    }

    /* RIGHT CARDS */
    .aboutus-cards {
      flex: 1;
      display: flex;
      gap: 16px;
      min-height: 320px;
    }

    .aboutus-card {
      position: relative;
      flex: 1;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      min-height: 260px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition:
        flex 0.6s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-end;
      outline: none;
    }

    .aboutus-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        transparent 40%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .aboutus-card.active {
      flex: 4; /* card aktif melebar */
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    }

    .aboutus-card.active::before {
      opacity: 1;
    }

    .aboutus-card:hover:not(.active) {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    .aboutus-card-content {
      position: relative;
      padding: 20px 24px;
      color: #fff;
      opacity: 0;
      transform: translateY(10px);
      transition:
        opacity 0.4s ease 0.1s,
        transform 0.4s ease 0.1s;
      max-width: 540px;
    }

    .aboutus-card.active .aboutus-card-content {
      opacity: 1;
      transform: translateY(0);
    }

    .aboutus-card-title {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .aboutus-card-text {
      font-size: 13px;
      line-height: 1.5;
      color: #e5e5e5;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .aboutus-inner {
        flex-direction: column;
      }

      .aboutus-copy {
        flex: 1;
      }

      .aboutus-cards {
        min-height: 260px;
      }
    }

    @media (max-width: 768px) {
      .aboutus-cards {
        flex-direction: column;
      }

      .aboutus-card {
        flex: 1 0 220px;
      }

      .aboutus-card.active {
        flex: 1 0 260px; /* tidak terlalu ekstrem di mobile */
      }
    }

        .aboutus {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px;
            text-align: center;
           
        }

        .text-content {
            max-width: 800px;
            margin: 0 auto 50px auto;
            padding: 0 10px;
        }

        .text-content h1 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: clamp(2.2rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .text-content p {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-weight: 400;
            line-height: 1.7;
            opacity: 0.9;
        }

        .golf-ball-image {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            position: relative;
        }

        .golf-ball-image img {
            max-width: 400px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.1));
        }

        .scroll-down-indicator {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
        }

        .scroll-down-indicator::after {
            content: '⌄';
            font-size: 24px;
            line-height: 1;
            color: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
        }










/* Tinggi slider (desktop) */
.news-slider-track,
.news-slider .slide,
.news-slider .slide .slide-inner,
.slide-visual-wrapper,
.slide-visual {
    height: 800px;
}

/* TRACK */
.news-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.news-slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
}

/* SLIDE BASIC */
.news-slider .slide {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    /* animasi halus */
    transition:
        transform 0.6s cubic-bezier(.25,.8,.25,1),
        opacity 0.6s cubic-bezier(.25,.8,.25,1),
        flex-basis 0.6s cubic-bezier(.25,.8,.25,1);
}

/* supaya inner fill height */
.news-slider .slide .slide-inner {
    height: 100%;
}

/* WIDTH: tengah 80%, kiri/kanan 10% */
.news-slider .slide.center {
    flex: 0 0 80%;
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.news-slider .slide.left,
.news-slider .slide.right {
    flex: 0 0 10%;
    transform: scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

/* VISUAL (background image) */
.slide-visual-wrapper {
    height: 100%;
}

.slide-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.slide-visual.no-image {
    background-color: #333;
}

/* OVERLAY TEKS DI DALAM GAMBAR */
.slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.75) 100%
    );
    color: #fff;
}
/* TRACK bisa digeser */
.news-slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    will-change: transform;
}

/* slide slot */
.news-slider .slide {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.6s cubic-bezier(.25,.8,.25,1),
        opacity 0.6s cubic-bezier(.25,.8,.25,1),
        flex-basis 0.6s cubic-bezier(.25,.8,.25,1);
}

/* PORSI WIDTH: center 80%, kiri & kanan 10% */
.news-slider .slide.center {
    flex: 0 0 80%;
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.news-slider .slide.left,
.news-slider .slide.right {
    flex: 0 0 10%;
    transform: scale(0.9);
    opacity: 0.6;
    z-index: 1;
}

/* TANGGAL + JUDUL */
.slide-date {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

.slide-title-big {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

/* Biar judul tengah terasa lebih dominan */
.news-slider .slide.left .slide-title-big,
.news-slider .slide.right .slide-title-big {
    font-size: 18px;
    line-height: 1.3;
}

/* PANAH (kalau dipakai) */
.news-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.45);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    z-index: 3;
}
.news-slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}
.news-slider-nav.prev { left: 16px; }
.news-slider-nav.next { right: 16px; }

/* DOTS */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, background-color 0.25s ease;
}
.slider-dots button.is-active {
    width: 22px;
    background: #333;
}

/* RESPONSIVE: biar nggak terlalu tinggi di mobile */
@media (max-width: 1024px) {
    .news-slider-track,
    .news-slider .slide,
    .news-slider .slide .slide-inner,
    .slide-visual-wrapper,
    .slide-visual {
        height: 600px;
    }

    .slide-title-big {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .news-slider-track,
    .news-slider .slide,
    .news-slider .slide .slide-inner,
    .slide-visual-wrapper,
    .slide-visual {
        height: 450px;
    }

    /* di mobile: 1 slide penuh */
    .news-slider .slide {
        flex: 0 0 100% !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .slide-overlay {
        padding: 20px 18px 24px;
    }

    .slide-title-big {
        font-size: 22px;
    }
}































.founder-section {
  padding: 80px 20px;
  margin:auto;
  width: 80%;
 
}

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.founder-left {
  flex: 1.2;
}

.founder-title {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.founder-title span {
  font-weight: 700;
}

.founder-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 40px;
}

.founder-info {
  margin-top: 20px;
}

.founder-role {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.founder-name {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}

/* RIGHT */
.founder-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.founder-photo {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .founder-inner {
    flex-direction: column;
    text-align: left;
  }

  .founder-right {
    order: -1;
  }

  .founder-photo {
    max-width: 380px;
  }
}

@media (max-width: 600px) {
  .founder-photo {
    max-width: 100%;
  }
}




        /* ============================================== */
        /* 9. Jurnal (JOURNAL) */
        /* ============================================== */
        .jurnalset {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px 80px 20px;
            background-color: #1a1a1a;
        }

        .jurnalset-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 40px;
            color: #fff;
        }

        .jurnalset-header .logo h1 {
            font-size: 3em;
            font-weight: 700;
            letter-spacing: -2px;
        }

        .jurnalset-header .all-journal-link {
            font-size: 1em;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jurnalset-header .all-journal-link::after {
            content: '→';
            font-size: 1.2em;
        }

        .jurnalset-main-content {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr;
        }

        .jurnalset-featured-branding {
            background-color: #1a1a1a;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            text-align: center;
        }

        .jurnalset-featured-branding img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jurnalset-cards {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr;
        }

        .jurnal-card {
            background-color: #1a1a1a;
            color: #fff;
            padding: 15px;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        .jurnal-card-image {
            width: 100%;
            height: 180px;
            background-color: #333;
            margin-bottom: 15px;
            overflow: hidden;
            border-radius: 3px;
        }

        .jurnal-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jurnal-card .date {
            font-size: 0.8em;
            color: #888;
            margin-bottom: 5px;
        }

        .jurnal-card .title {
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .jurnal-card .read-more {
            font-size: 0.9em;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-top: auto;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .jurnal-card .read-more::after {
            content: '→';
            font-size: 1.2em;
        }


        /* ============================================== */
        /* 10. Gaya Scroll Indicator */
        /* ============================================== */
        #scroll-indicator {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 1;
            transition: opacity 1.5s ease-in-out;
            z-index: 1000;
        }

        .scroll-text {
            font-size: 0.7rem;
    letter-spacing: 0px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 11px;
    color: white;
        }

        .scroll-arrow-container {
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .scroll-line {
            width: 1px;
            height: 100%;
            background-color: white;
        }

        .scroll-arrow {
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid white;
            transform: translateY(-5px);
        }

        .fade-out {
            opacity: 0 !important;
            pointer-events: none;
        }

        /* ============================================== */
        /* 11. Media Queries (RESPONSIVE) */
        /* ============================================== */

        /* Desktop / Tablet Besar (min-width: 768px) */
        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 120px;
            }

            .project-gallery {
                flex-wrap: nowrap;
            }

            .project-item {
                flex: 1 1 calc(50% - 10px);
            }

            .jurnalset-main-content {
                grid-template-columns: 2fr 1fr;
            }
        }

        /* Desktop Besar (min-width: 992px) */
        @media (min-width: 992px) {
            .jurnalset-main-content {
                grid-template-columns: 2fr 1fr;
            }
            .jurnalset-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile (max-width: 767px) */
        @media (max-width: 767px) {
            .navbar {
                padding: 15px 20px;
                height: auto;
                justify-content: space-between;
            }
            
            .desktop-only {
                display: none !important;
            }

            .burger-icon {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 30px;
                height: 25px;
                cursor: pointer;
            }

            .burger-icon span {
                display: block;
                height: 2px;
                width: 100%;
                background: var(--primary-color);
            }

            .menu-toggle {
                display: none;
            }

            .navbar-right {
                background: none;
            }

            .hero-content h1 {
                font-size: 10vw;
            }

            .navbar-left {
                gap: 0;
            }

            .menu-column {
                width: auto;
            }

            .mission-container {
                padding: 40px 10px;
            }

            .mission-text {
                font-size: 1.5em;
                padding: 0 10px;
            }

          

            .jurnalset-header {
                flex-direction: column;
                align-items: flex-start;
                padding-bottom: 20px;
            }

            .jurnalset-header .logo h1 {
                font-size: 2.2em;
                margin-bottom: 10px;
            }

            .jurnalset-featured-branding h2 {
                font-size: 3em;
            }

            .hero-logo-large {
                display: none;
            }
        }


        /* WRAPPER */
.wrap-footer {
  background: radial-gradient(circle at top left, #333 0, #111 45%, #000 100%);
  color: #f5f5f5;
  padding: 64px 24px 32px;
  margin-top: 100px;
}

/* INNER CONTAINER */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP AREA LAYOUT */
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 64px;
}

/* LEFT GRID (THE STUDIO, LONDON, CONTACT, CONNECT) */
.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 48px;
  column-gap: 40px;
}

.footer-info-block {
  font-size: 14px;
}

.footer-heading {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #d0d0d0;
}

.footer-text {
  margin: 0 0 24px;
  line-height: 1.7;
  color: #f5f5f5;
}

/* CTA LINK WITH CIRCLE ARROW */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  text-decoration: none;
  color: #f5f5f5;
}

.footer-cta:hover .cta-circle-arrow,
.footer-submit:hover .cta-circle-arrow {
  transform: translateX(2px);
}

/* circle-arrow */
.cta-circle-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #f5f5f5;
  position: relative;
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-circle-arrow::before,
.cta-circle-arrow::after {
  content: "";
  position: absolute;
  background: #f5f5f5;
}

.cta-circle-arrow::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
}

.cta-circle-arrow::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* CONNECT LIST */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li + li {
  margin-top: 4px;
}

.footer-links-list a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-links-list a:hover {
  text-decoration: underline;
}

/* FORM SIDE */
.footer-form-block {
  font-size: 14px;
}

.footer-form {
  margin-top: 24px;
}

.footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-field label {
  font-size: 13px;
  color: #e0e0e0;
}

.footer-field input,
.footer-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  padding: 6px 0;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.footer-field input:focus,
.footer-field textarea:focus {
  border-bottom-color: #f5f5f5;
}

.footer-field textarea {
  resize: vertical;
}

/* Divider & submit row */
.footer-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.footer-divider {
  flex: 1;
  height: 1px;
  background: #666;
}

.footer-submit {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f5f5f5;
  font-size: 14px;
  cursor: pointer;
}

/* BOTTOM BAR */
.footer-bottom {
  display: grid;
  grid-template-columns: 1.3fr 1.6fr 1.1fr;
  align-items: center;
  gap: 16px;
  padding-top: 48px;
  margin-top: 32px;
  border-top: 1px solid #333;
  font-size: 12px;
  color: #d0d0d0;
}

.footer-bottom-left,
.footer-bottom-nav,
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-left a,
.footer-bottom-nav a {
  color: #d0d0d0;
  text-decoration: none;
}

.footer-bottom-nav {
  justify-content: center;
  gap: 24px;
}

.footer-bottom-right {
  justify-content: flex-end;
}

.footer-brand span:last-child {
  font-style: italic;
}

/* META LINE */
.footer-meta {
  margin-top: 24px;
  font-size: 11px;
  color: #9a9a9a;
}

/* ----------------- RESPONSIVE ----------------- */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom-nav {
    justify-content: flex-start;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap-footer {
    padding: 48px 16px 24px;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }

  .footer-form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-nav {
    gap: 16px;
  }
}


/* ===== FILTER NAV ===== */

.project-filter {
    margin: 2rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1rem;
}

.project-filter .filter-btn {
    position: relative;
    background: none;
    border: none;
    color: #777;
    font: inherit;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.04em;
    text-transform: none;
    transition: color 0.25s ease, transform 0.2s ease;
}

.project-filter .filter-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: width 0.25s ease;
}

.project-filter .filter-btn:hover {
    color: #eee;
    transform: translateY(-2px);
}

.project-filter .filter-btn.active {
    color: #ffffff;
}

.project-filter .filter-btn.active::after {
    width: 100%;
}

/* ===== GRID PROJECTS ===== */

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Kartu dasar */
.project-item {
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.project-item.is-hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Hover look premium */
.project-item img {
    display: block;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-item:hover img {
    transform: scale(1.06);
}

.project-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
    color: #fff;
    pointer-events: none;
}

.project-caption .caption-title {
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.project-caption .caption-button {
    pointer-events: auto;
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.project-caption .caption-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}



.breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 1.5rem 0 1rem;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-sep {
    margin: 0 0.4rem;
    color: #555;
}

.breadcrumb-current {
    color: #5b5b5b;
    letter-spacing: 0px;
}




.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #fff;
  color: #000;
}






/* SELALU sembunyikan template detail di bawah gallery */
.project-detail-template {
    display: none !important;
}

/* ==== PROJECT MODAL WRAPPER ==== */
.project-modal {
    position: fixed;
    inset: 0;              /* top:0; right:0; bottom:0; left:0 */
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* backdrop terpisah biar bisa klik tutup */
.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

/* ISI modal */
.project-modal-inner {
    position: relative;
    max-width:80%;
    width: 100%;
    max-height: 90vh;
    color: #000000;
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 2.2rem;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);

    z-index: 1;

    /* animasi masuk */
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* KETIKA MODAL DIBUKA */
.project-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.project-modal.is-open .project-modal-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* tombol close */
.project-modal-close {
  position: absolute;
    top: 1rem;
    right: 1.3rem;
    border: none;
    background: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    background-color: #000000;
    height: 50px;
    width: 50px;
    border-radius: 100%;
}
p.popup-info a {
    color: #000000;
    text-decoration: underline;
}
/* konten detail */
.project-detail-popup {
    color: #fff;
}

.project-detail-title {
    font-size:3.7rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0em;
    margin: 0 0 1.2rem;
}

.project-detail-hero img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.project-detail-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.project-detail-gallery-item img {
    width: 100%;
    border-radius: 10px;
}

.popup-image-wrapper {
  margin: auto;
  width: 90%;
  overflow: hidden;
  border-radius: 16px;
}

.popup-image {
  width: 100%;
  height: auto;           /* biar proporsi asli terjaga */
  border-radius: 16px;
  image-rendering: auto;  /* pastikan browser tidak mem-blur */
  object-fit: contain;    /* tampil sesuai ukuran aslinya tanpa cropping */
}



.project-detail-popup img.popup-image {
    width: 100%;
    height: auto;
}
.popup-grid {
    display: flex;
    margin: auto;
    width: 80%;
    padding: 90px 0px;
    color: #000000;
}
.popup-paragraph p {
  letter-spacing: 0px;
    font-size: 1.3em;
    line-height: 33px;
    font-weight: 300;
}

.project-modal-inner::-webkit-scrollbar {
  width: 6px;                 /* lebar scrollbar */
}

.project-modal-inner::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);  /* track tipis */
}

.project-modal-inner::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.35);  /* batang scroll */
  border-radius: 999px;
}

.project-modal-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.6);
}


.left-conten {
    width: 50%;
  
}











.right-conten {
  
    width: 50%;
}

.pd-popup {
    padding-top: 40px;
    margin: auto;
    width: 100%;
    text-align: center;
    line-height: 47px;
    color: #000000;
}

.all-works-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c0c0c0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: 0.3s ease;
  padding-top: 40px;
    padding-bottom: 20px;
}

.all-works-btn .arrow-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.all-works-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.all-works-line {
  width: 100%;
  height: 1px;
  background: #333333;
  margin-top: 8px;
}








.news-page {
    padding: 100px 0;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.news-subtitle {
    font-size: 16px;
    opacity: 0.7;
}

.news-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.news-item {
    background: #1e1e1e;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-thumb img {
    width: 100%;
    height: 327px;
    object-fit: cover;
}

.news-info {
    padding: 20px 24px;
}

.news-meta {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.news-item-title {
    margin: 0 0 12px;
    font-size: 22px;
}

.news-item-title a {
    color: #086043;
    font-size: 1.3em;
}
.news-item-title a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.news-excerpt {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 15px;
}

.news-readmore {
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
}

.news-pagination {
    text-align: center;
    margin-top: 50px;
}

.news-pagination a,
.news-pagination span {
    margin: 0 6px;
    color: #fff;
}



.news-page {
    padding: 80px 0 100px;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-title {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.news-subtitle {
    font-size: 14px;
    opacity: .7;
}

.news-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
     display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
    gap: 24px;
    align-items: flex-start;
    background: #252525;
    border-radius: 18px;
    overflow: hidden;
    padding: 20px;
}

.news-thumb img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.news-info {
    color: #fff;
}

.news-meta {
    font-size: 12px;
    letter-spacing: 0em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 8px;
}

.news-item-title {
    font-size: 22px;
    margin: 0 0 8px;
}

.news-caption {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 10px;
}

.news-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: .9;
}

.news-footer-line {
    margin-top: 14px;
}

.news-source-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: underline;
}

.news-pagination {
    margin-top: 40px;
    text-align: center;
}

.news-pagination a,
.news-pagination span {
    margin: 0 4px;
}




.news-detail-page {
    padding: 80px 0 100px;
}

.news-detail {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.news-detail-hero {
    margin-bottom: 24px;
}

.news-detail-meta {
    font-size: 12px;
    letter-spacing: 0em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 8px;
}

.news-detail-title {
font-size: 38px;
    line-height: 1.2;
    margin: 22px 0px 22px;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.news-detail-caption {
    font-size: 14px;
    opacity: .8;
}

.news-detail-image-wrap {
    margin: 26px 0 22px;
}

.news-detail-image {
    width: 100%;
    border-radius: 14px;
}

.news-detail-photo-source {
    font-size: 12px;
    opacity: .7;
    margin-top: 6px;
}

.news-detail-photo-source a {
    color: #fff;
    text-decoration: underline;
}

.news-detail-body {
    font-size: 15px;
    line-height: 1.8;
    opacity: .95;
}

.news-detail-body p {
    margin-bottom: 1rem;
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 35px;
    padding-top: 18px;
    font-size: 13px;
}

.news-detail-nav a {
    color: #fff;
    text-decoration: none;
}

.news-detail-nav a:hover {
    text-decoration: underline;
}


p.card-caption {
    text-transform: initial;
    line-height: 21px;
}







span.news-date {
    letter-spacing: 0px;
}
.news-share {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.news-share-label {
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .7;
    margin-right: 6px;
}

.news-share-btn {
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.news-share-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}




/* gaya default (di dalam artikel) */
.news-share {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

/* tombol share seperti sebelumnya */
.news-share-label {
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .7;
    margin-right: 6px;
}

.news-share-btn {
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.news-share-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* === POSISI FIXED DI KIRI (DESKTOP) === */
@media (min-width: 992px) {
    .news-share.fixed-share {
        position: fixed;
        left: 100px;          /* jarak dari kiri */
        top: 50%;            /* tengah secara vertikal */
        transform: translateY(-50%);
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        background: transparent;
        z-index: 50;
    }

    .news-share.fixed-share .news-share-label {
        margin-right: 0;
        margin-bottom: 6px;
    }
}





.news-filter-form {
    margin-bottom: 24px;
}

.filter-select-wrapper {
    position: relative;
    display: inline-block;
}

.filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    padding: 10px 40px 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
}

.filter-select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}




.news-detail {
    position: relative; /* penting untuk mode stop-bottom */
}

/* sudah ada ini sebelumnya, biarkan */
@media (min-width: 992px) {
    .news-share.fixed-share {
        position: fixed;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        background: transparent;
        z-index: 50;
    }

    /* mode berhenti di atas footer */
    .news-share.stop-bottom {
        position: absolute;
        left: 24px;
        top: auto;
        bottom: 40px;      /* jarak dari bawah artikel; sesuaikan selera */
        transform: none;
    }
}






/* ==== CV PAGE ==== */

.cv-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px 60px;
    color: #f5f5f5;
}

/* HERO */
.cv-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.cv-hero-left {
    flex: 1 1 55%;
}

.cv-hero-right {
    flex: 1 1 35%;
}

.cv-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cv-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbbbbb;
    margin-bottom: 15px;
}

.cv-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
}

.cv-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.cv-contact li {
    margin-bottom: 5px;
}
.space-header {
    height: 100px;
}
/* Button CV */
.cv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.cv-btn:hover {
    background: #fff;
    color: #000;
}

/* Sections */
.cv-section {
    margin-bottom: 25px;
    background-color: #252525;
    padding: 45px 45px;
    border-radius: 15px;
    border: 1px solid #363636;
}
span.current-page {
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    background-color: #086043;
    padding: 12px 16px;
    border-radius: 100%;
}
.cv-section-title {
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
    color: #086043;
    font-weight: 700;
}
ul.cv-list li {
    color: #909090;
    line-height: 26px;
    list-style: none;
}
/* Item */
.cv-item {
    margin-bottom: 18px;
    line-height: 20px;
}

.cv-item-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.cv-item-header h3 {
    font-size: 16px;
    margin: 0;
    color: #ededed;
    font-weight: 300;
}
section.aboutus-page {
    display: none;
}
.cv-item-meta {
    font-size: 13px;
    color: #aaaaaa;
}

.cv-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
}

/* List bullet */
.cv-list {
    margin: 6px 0 0 18px;
    padding: 0;
    font-size: 14px;
    color: #d0d0d0;
}

/* Skills */
.cv-skills {
    display: grid;
    gap: 20px;
}

.cv-skill-group h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cv-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cv-tags li {
    font-size: 13px;
    border: 1px solid #444;
    padding: 4px 10px;
    border-radius: 999px;
}

/* Project link */
.cv-link {
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cv-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.cv-link:hover::after {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .cv-page {
        margin-top: 40px;
    }
    .cv-hero {
        flex-direction: column;
    }
}



.cv-hero-3col {
       display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 35px;
    align-items: start;
    padding: 17px 45px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    background-color: #086043;
    border-radius: 15px;
}

.cv-col {
    color: #f5f5f5;
}

/* FOTO */
.cv-photo img {
    width: 80%;
    max-width: 260px;
    border-radius: 12px;
    border: 1px solid #444;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    border-radius:100%;
}

/* NAMA */
.cv-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* TITLE */
.cv-title {
  font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #20ba87;
    margin-bottom: 18px;
}

/* DESKRIPSI */
.cv-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 520px;
}

/* KONTAK */
.cv-contact {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 14px;
}

.cv-contact li {
    margin-bottom: 6px;
    color: #dddddd;
}

/* BUTTON */
.cv-btn {
    display: inline-block;
    padding: 13px 20px;
    font-size: 13px;
    border: 1px solid #ffffff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 600;
    transition: 0.3s 
ease;
    border-radius: 5px;
}

.cv-btn:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cv-hero-3col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cv-photo img {
        margin: 0 auto;
    }

    .cv-contact {
        text-align: center;
    }
}



/* Jika halaman CV aktif → beri warna merah */


.page-template-page-cv .menu-cv > a {
    color: #ff3b3b !important;
    border-bottom: 2px solid #ff3b3b;
    padding-bottom: 4px;
}


.hero-content p {
    font-size: 1.4em;
    padding-top: 20px;
    padding-bottom: 50px;
}

ul#menu-menu-utama {
    display: flex;
}





ul.menuheader li.active > a,
ul.menuheader li.current-menu-item > a,
ul.menuheader li.current_page_item > a {
    font-weight: 600;
    border-bottom: 2px solid #fff;  /* ganti sesuai desain */
    /* atau bisa: color, background, dll */
}
.menuheader a.is-active {
    font-weight: 600;
    border-bottom: 2px solid #086043;
    /* background-color: #086043; */
    padding: 32px 9px;
    color: #086043;
    border-radius: 2px;
}








.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 kolom */
    gap: 24px; /* jarak antar card */
    width: 100%;
    margin-top: 40px;
}

/* Style card */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Caption Overlay */
.project-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}
/* Icon WhatsApp di menu */
.menu-item.menu-whatsapp > a::before {
  font-family: "Font Awesome 6 Brands"; /* sesuaikan dengan versi yang kamu pakai */
  content: "\f232"; /* kode icon WhatsApp */
  margin-right: 8px;
  font-size: 1.1em;
}
.caption-title {
    font-size: 18px;
    font-weight: 600;
}

.caption-button {
    font-size: 14px;
    text-decoration: underline;
    color: #fff;
    padding-top: 6px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .project-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk tablet */
    }
}

@media (max-width: 600px) {
    .project-gallery {
        grid-template-columns: 1fr; /* 1 kolom untuk mobile */
    }
    .project-item {
    width: 100%;
}
.mission-text {
        font-size: 1.2em;
        padding: 0 10px;
        line-height: 33px;
    }
    .project-detail-title {
    font-size: 1.3rem;
}
.project-modal-close {
    height: 35px;
    width: 35px;
}
a.overlay-link {
        margin-right: 12px;
        font-size: 16px;
    }
.logo img {
    width: 40px;
    font-size: 15px;
}
.news-title {
    font-size: 28px;
    letter-spacing: 0px;
}
.news-filter-form {
    margin: auto;
}
.news-item {
    display: block;
}
.news-item {
    background: #1e1e1e;
    padding: 0px 20px;
}
.news-detail-title {
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.news-detail-page {
    padding: 80px 0 100px;
    margin: auto;
    width: 88%;
}
.left-conten {
    width: 100%;
}
.right-conten {
    width: 100%;
}
.popup-grid {
    display: flow-root;
    margin: auto;
    width: 100%;
    padding: 20px 0px;
    color: #000000;
}
.project-modal-inner {
    position: relative;
    max-width: 85%;
    width: 100%;
    max-height: 90vh;
    color: #000000;
    background: #ffffff;
    border-radius: 18px;
    padding: 0px;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    z-index: 1;
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform 0.35s 
ease, opacity 0.35s 
ease;
}
.left-conten {
    width: 100%;
    padding-bottom: 29px;
}
.popup-grid {
    display: flow-root;
    margin: auto;
    width: 100%;
    padding: 20px 20px;

}
.popup-paragraph p {
    letter-spacing: 0px;
    font-size: 1em;
    line-height: 27px;
    font-weight: 300;
    padding-top: 7px;
}
.popup-paragraph p
Specificity: (0,1,1)
 {
    letter-spacing: 0px;
    font-size: 1em;
    line-height: 24px;
    font-weight: 300;
    padding-top: 7px;
}
.founder-section {
    padding: 80px 20px;
    margin: auto;
    width: 99%;
}
a.all-works-btn {
        font-size: 12px;
        padding-left: 12px;
        padding-top: 0px;
    }
.process-title {
        font-size: 1.2rem;
    }
   .process-section {
        padding: 6px 8px;
    }
    .project-header h1 {
    font-size: clamp(2rem, 7vw, 5rem);
}
.project-header p {
    font-size: 1rem;
    line-height: 24px;
}
.text-content h1 {
    font-weight: 700;
    font-size: clamp(1rem, 5vw, 4rem);
    line-height: 30px;
}
    .burger-icon {
  
        width: 40px;
        height: 20px;
     
    }
    .overlay-submenu li a {
    font-size: 14px;
}
a.overlay-main-link.submenu-toggle {
    font-size: 16px;
}
}






/*SASS*/
.cv-theme-modern { font-family: "Roboto", sans-serif; }
.cv-theme-minimal { font-family: "Helvetica", sans-serif; }
.cv-theme-creative { font-family: "Poppins", sans-serif; }

.cv-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 16px;
  box-sizing: border-box;
}

.cv-container {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 32px;
  box-sizing: border-box;
}

.cv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.cv-name {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.cv-position {
  margin: 4px 0 0;
  font-size: 16px;
  opacity: 0.8;
}

.cv-header-contact p {
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.cv-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}

.cv-sidebar {
  border-right: 1px solid #e5e7eb;
  padding-right: 16px;
}

.cv-content {
  padding-left: 8px;
}

.cv-section {
  margin-bottom: 20px;
}

.cv-section-title {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.cv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 14px;
}

.cv-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

.cv-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cv-timeline-item {
  position: relative;
  padding-left: 16px;
}

.cv-timeline-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #9ca3af;
}

.cv-item-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Responsif (mobile) */
@media (max-width: 768px) {
  .cv-body {
    grid-template-columns: 1fr;
  }

  .cv-sidebar {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-right: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .cv-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-header-contact p {
    text-align: left;
  }
}

/* Untuk print (A4 sederhana) */
@media print {
  body {
    background: #ffffff !important;
  }

  .cv-wrapper {
    padding: 0;
    box-shadow: none;
  }

  .cv-container {
    box-shadow: none;
    border-radius: 0;
  }
}









.cv-theme-modern {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cv-theme-modern .cv-container {
  border-top: 6px solid #2563eb; /* biru */
}

.cv-theme-modern .cv-section-title {
  color: #2563eb;
  font-weight: 600;
}

.cv-theme-modern .cv-name {
  color: #111827;
}

.cv-theme-modern .cv-position {
  color: #4b5563;
}

.cv-theme-modern .cv-list li::before {
  color: #2563eb;
}

.cv-theme-modern .cv-timeline-item::before {
  background: #2563eb;
}






.cv-theme-minimal {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.cv-theme-minimal .cv-container {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #e5e7eb;
}

.cv-theme-minimal .cv-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
  flex-direction: column;
  align-items: flex-start;
}

.cv-theme-minimal .cv-body {
  display: block;
}

.cv-theme-minimal .cv-sidebar {
  border-right: none;
  padding-right: 0;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.cv-theme-minimal .cv-content {
  padding-left: 0;
}

.cv-theme-minimal .cv-section-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
  margin-bottom: 6px;
}

.cv-theme-minimal .cv-list li::before {
  display: none;
}

.cv-theme-minimal .cv-list li {
  padding-left: 0;
}

.cv-theme-minimal .cv-timeline-item::before {
  display: none;
}

.cv-theme-minimal .cv-timeline-item {
  padding-left: 0;
}





/* Tambah desain sesuai selera */
