#home {
  position: relative;
  z-index: 10000; /* pastikan di atas loading */
  padding-bottom: 100px !important;
}



body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fcf1e2;
  color: #374221;
  margin: 0;
  overflow-x: hidden;
}



/* Loading Page Container */
#loading-page {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcf1e2;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-page.hidden {
  opacity: 0;
  visibility: hidden;
}


#loading-page.hidden .cup-container {
  animation: zoomOutCup 1s ease forwards;
}

@keyframes zoomOutCup {
  0% {
    transform: scale(1) rotate(0deg);
  }
  60% {
    transform: scale(3) rotate(0deg);
  }
  100% {
    transform: scale(8) rotate(0deg);
    opacity: 0;
  }
}

.main-content {
  opacity: 0;
  animation: showContent 1s ease 1s forwards; /* muncul lebih cepat */
}

@keyframes showContent {
  to { opacity: 1; }
}


@keyframes showContent {
  to { opacity: 1; }
}


/* Cup */
.cup-container {
  position: relative;
  width: 120px;
  height: 140px;
  animation: cupSwing 4s ease-in-out forwards;
}

/* Cup outline */
.cup-outline {
  position: relative;
  width: 100%;
  height: 100%;
  border: 4px solid #a6ba4c;
  border-radius: 0 0 50% 50%;
  overflow: hidden;
}

.matcha-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, #768822, #a6ba4c);
  animation: fillMatcha 3s ease-in-out forwards;
}

/* Cup swing animation (gerak kanan kiri) */
@keyframes cupSwing {
 0% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(0deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

/* Matcha fill animation */
@keyframes fillMatcha {
  from { height: 0%; }
  to { height: 96%; }
}


/* SIDEBAR FIX - HIDE ORIGINAL TEXT */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 100%;
    background-color: #48270a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    z-index: 10;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.menu-item {
    width: 40px;
    height: 100px;
    background-color: #a6ba4c;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* SEMBUNYIKAN TEXT ASLI */
    color: transparent !important;
    font-size: 0 !important;
}


/* Tulisan defaultnya TRANSPARAN */
.menu-item::after {
    content: attr(data-section);
    color: transparent; /* Transparent total */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Posisi tepat di tengah */
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    white-space: nowrap;
    text-decoration: none !important;
    opacity: 0; /* opacity 0 biar benar-benar tidak kelihatan */
    width: 100%; /* Lebar penuh */
    text-align: center; /* Text di tengah */
    padding-left: 30px;
}

/* Pas hover individual menu item, baru melebar dan muncul tulisan */
.menu-item:hover {
    width: 140px;
    background-color: #a6ba4c;
}

.menu-item:hover::after {
    color: #48270a; /* HANYA warna coklat */
    opacity: 1;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(166, 186, 76, 0.3);
}

/* Hilangkan style link default */
.menu-item:link,
.menu-item:visited,
.menu-item:active {
    text-decoration: none !important;
    color: transparent !important;
}

.menu-item:focus {
    outline: none;
    text-decoration: none !important;
}

/* === Perbaikan untuk dropdown Projects === */
.menu-link {
  display: block;
  width: 40px;
  height: 100px;
  background-color: #a6ba4c;
  border-radius: 15px;
  position: relative;
  transition: all 0.4s ease;
}

/* Saat hover tampil teksnya */
.menu-link::after {
  content: attr(data-section);
  color: transparent;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Hover efek sama kayak menu-item lain */
.menu-link:hover::after {
  color: #fff;
}

.menu-link:hover {
  width: 120px;
  background-color: #374221;
}


/* MAIN CONTENT */
.main-content {
    position: relative;
    z-index: 1;
    padding: 5rem 8% 5rem calc(8% + 80px); /* Kurangi sedikit padding */
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
}

section {
  margin-bottom: 6rem;
  position: relative;
}





/* PROJECTS */
.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #bcd985;
  border: none;
}

.btn-primary:hover {
  background-color: #eaa3a2;
}


/* ===== CONTACT SECTION UPDATE ===== */
.contact-layout {
    text-align: left;
    padding: 3rem 0;
    margin-left: 0;
}

/* Judul besar dengan h7 & h8 */
.contact-layout h7,
.contact-layout h8 {
    text-align: left;
    font-size: 160px;
    color: #768822;
    line-height: 130px;
    display: block;
    margin: 0;
    font-family: "Noto Serif Display", serif;
    font-weight: 600;
}

/* ===== CONTACT SECTION WITH MATERIAL ICONS ===== */
.contact-layout {
    text-align: left;
    padding: 3rem 0;
    margin-left: 0;
}

/* Judul besar dengan h7 & h8 */
.contact-layout h7,
.contact-layout h8 {
    text-align: left;
    font-size: 160px;
    color: #768822;
    line-height: 130px;
    display: block;
    margin: 0;
    font-family: "Noto Serif Display", serif;
    font-weight: 600;
}

/* Contact grid baru */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.contact-primary {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-secondary {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #374221;
}

.contact-item:hover {
    transform: translateY(-3px);
    color: #a6ba4c;
    text-decoration: none;
}

/* Material Icons Styling */
.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcf1e2;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #768822;
}

.contact-item:hover .contact-icon {
    background: #a6ba4c;
    color: white;
    transform: scale(1.1);
}

.material-icons {
    font-size: 1.5rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 600;
    color: #48270a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-value {
    color: #768822;
    font-size: 1rem;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374221;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-primary {
        order: 1;
    }
    
    .contact-secondary {
        order: 2;
    }
    
    .contact-layout h7,
    .contact-layout h8 {
        font-size: 120px;
        line-height: 100px;
    }
}

@media (max-width: 768px) {
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .material-icons {
        font-size: 1.3rem;
    }
    
    .contact-layout h7,
    .contact-layout h8 {
        font-size: 80px;
        line-height: 70px;
    }
}

/* Responsive contact */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-primary {
        order: 1;
    }
    
    .contact-secondary {
        order: 2;
    }
    
    .contact-layout h7,
    .contact-layout h8 {
        font-size: 120px;
        line-height: 100px;
    }
}


@media (max-width: 768px) {
    .contact-item {
        padding: 12px;
    }
    
    .contact-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }
    
    .contact-layout h7,
    .contact-layout h8 {
        font-size: 80px;
        line-height: 70px;
    }
}

@media (max-width: 480px) {
    .contact-layout h7,
    .contact-layout h8 {
        font-size: 60px;
        line-height: 55px;
    }
}



/* SVG jadi background */
#scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3; /* biar samar kayak background */
}

/* Tambahan supaya teks di atas terlihat elegan */
#home {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 0px;
}

#home h1 {
  color: #3a3a3a;
  font-weight: 700;
}

.aboutme-text h1 {
  font-size: 200px !important;
  color: #768822;
  line-height: 130px;
}

.aboutme-text h2 {
  font-size: 160px;
  color: #768822;
  line-height: 130px;
}



/* === CUSTOM LAYOUT UPDATE === */
.logo-img {
  width: 25px;
  height: auto;
  margin-bottom: 40px;
}




/* ===== ABOUT SECTION NEW LAYOUT ===== */
.about-layout {
    display: flex;
    align-items: flex-start; /* Ubah dari center ke flex-start */
    justify-content: space-between;
    gap: 60px;

}

.aboutme-text {
    text-align: right;
    flex: 1;
    margin-top: 100px; /* Kurangi margin top */
}

/* Container untuk judul About Me yang terpisah */
.about-title-container {
    text-align: right;
    margin-bottom: 40px;
}

.about-title-containertop {
    margin-bottom: 25px;
}


.about-title-bottom {
    font-family: "Noto Serif Display", serif;
    font-size: 160px;
    color: #768822;
    line-height: 130px;
    margin: 0;
    display: block;
}

.about-title-top {
    margin-bottom: -20px; /* Sedikit overlap untuk efek yang rapat */
}


/* Teks deskripsi */
.aboutme-text p {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: #374221;
    text-align: right;
    margin-bottom: 30px;
    margin-top: 20px;
}

/* Gambar about */
.about-img {
    margin-top: 50px; /* Sesuaikan dengan teks */
}

.about-img img {
    width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-title-top,
    .about-title-bottom {
        font-size: 140px;
        line-height: 115px;
    }
}

@media (max-width: 968px) {
    .about-layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .aboutme-text {
        text-align: center;
        margin-top: 50px;
        order: 2;
    }
    
    .about-title-container {
        text-align: center;
    }
    
    .about-title-top,
    .about-title-bottom {
        font-size: 120px;
        line-height: 100px;
    }
    
    .aboutme-text p {
        text-align: center !important;
    }
    
    .about-img {
        order: 1;
        margin-top: 0;
    }
    
    .about-img img {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .about-title-top,
    .about-title-bottom {
        font-size: 100px;
        line-height: 85px;
    }
    
    .aboutme-text p {
        font-size: 1.1rem !important;
    }
    
    .about-img img {
        width: 350px;
    }
}

@media (max-width: 480px) {
    .about-title-top,
    .about-title-bottom {
        font-size: 80px;
        line-height: 70px;
    }
    
    .aboutme-text p {
        font-size: 1rem !important;
    }
    
    .about-img img {
        width: 300px;
    }
}



/* ===== ABOUT TITLE VERTICAL LAYOUT ===== */
.about-title-container {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    margin-top: 40px;
}

.about-text,
.me-text {
    font-family: "Noto Serif Display", serif;
    font-size: 160px;
    font-weight: 600;
    color: #768822;
    line-height: 130px;
    display: block;
}

.about-text {
    margin-bottom: -20px; /* Sedikit overlap untuk estetika */
}

.me-text {
    margin-top: -20px; /* Sedikit overlap untuk estetika */
}

/* Hapus atau comment yang lama */
#about-title {
    display: none !important;
}

/* Pastikan aboutme-text tetap align right */
.aboutme-text {
    text-align: right;
    flex: 1;
    margin-top: 200px;
}

.aboutme-text p {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: #374221;
    text-align: right;
    margin-bottom: 30px;
}

.about-img img {
  width: 500px;
  height: auto;
  border-radius: 8px;
  margin-top: 200px;
}

/* SKILLS */
.skill-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.skill {
  display: flex;
  align-items: center;
  gap: 15px;
}

.skill span {
  width: 120px;
  font-weight: 600;
}

.skill .bar {
  flex: 1;
  height: 10px;
  background: #fcf1e2;
  border-radius: 5px;
  overflow: hidden;
}

.skill .bar div {
  height: 100%;
  background: linear-gradient(to right, #a6ba4c, #768822);
  border-radius: 5px;
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-info {
  padding: 15px;
  background-color: #fcf1e2;
}

/* ===== PROJECTS CAROUSEL STYLES - FIXED INDICATORS ===== */
.carousel-section {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
}


.carousel-item img {
    height: 350px !important;
    object-fit: cover !important;
}

.carousel-caption {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    border-radius: 0 0 20px 20px;
    padding: 30px 20px 20px;
    bottom: 0;
    left: 0;
    right: 0;
}

.carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.carousel-caption p {
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 0;
}

/* FIXED CAROUSEL INDICATORS - HILANGKAN LINGKARAN PUTIH */
.carousel-indicators {
    bottom: 10px !important;
}

.carousel-indicators [data-bs-target] {
    width: 40px; /* Lebar indicator */
    height: 4px; /* Tinggi indicator - buat seperti garis */

    background-color: rgba(166, 186, 76, 0.5) !important;

    border: none !important; /* HILANGKAN BORDER */
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: #a6ba4c !important; /* Warna aktif - hijau matcha */
    opacity: 1;
    transform: scale(1.1);
}

/* Hapus style border default Bootstrap */
.carousel-indicators button {
    border: none !important;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 40px;
    height: 4px;
    padding: 0;
    margin: 0 5px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #a6ba4c;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(166, 186, 76, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #a6ba4c;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-section {
        margin-top: 40px;
        border-radius: 15px;
    }
    
    .carousel-item img {
        height: 350px !important;
        object-fit: cover !important;
    }
    
    .carousel-caption {
        padding: 20px 15px 15px;
    }
    
    .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Indicators lebih kecil di mobile */
    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 3px;
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 350px !important;
        object-fit: cover !important;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 25px;
        height: 2px;
    }
}



/* ===== COMPACT LAYOUT FIXES ===== */

/* Main content overall spacing */
.main-content {
    padding: 2rem 8% 2rem calc(8% + 80px) !important;
}

/* Section spacing reduction */
section {
    margin-bottom: 3rem !important;
    padding: 2rem 0 !important;
}

/* Projects section specific */
#projects {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Carousel compact */
.carousel-section {
    margin: 2rem 0 !important;
    border-radius: 15px;
    overflow: hidden;
    width: 700px;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-inner {
    padding: 0;
    height: 100%;
}

.carousel-item {
    height: 100%; 
    position: relative;
}

.carousel-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 8px;
}

.projects-detail-section .container,
#projects .container {
    padding-top: 100px !important;
    padding-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-detail {
    padding: 0 !important;
}

.project-main-title {
    font-size: 2.5rem !important; /* Sedikit lebih kecil */
    margin-bottom: 0.5rem !important;
}

.project-text {
    padding: 0 !important;
    margin: 0 !important;
}

.project-text p {
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
}

/* Logotype layout specific fixes */
.logotype-layout {
    margin-top: 0 !important;
}

.logotype-layout .project-text {
    margin-bottom: 1.5rem !important;
}

.logotype-layout .project-image {
    height: 350px !important;
}

/* Software section compact */
.software-section {
   min-height: auto !important;
}

.software-container h4 {
    margin-bottom: 1.5rem !important;
    color: #48270a;
}

.software-grid {
    margin-bottom: 2rem !important;
    gap: 1rem !important;
}

.horizontal-accordion {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    gap: 1rem !important;
}

/* Responsive compact layout */
@media (max-width: 968px) {
    .main-content {
        padding: 1.5rem 5% 1.5rem calc(5% + 80px) !important;
    }
    
    section {
        margin-bottom: 2rem !important;
        padding: 1.5rem 0 !important;
    }
    
    .carousel-item img {
         height: 350px !important;
         object-fit: cover !important;;
    }
    
    .logotype-layout .project-image {
        height: 350px !important;
        padding-left: 40px !important;
    }
    
    .project-main-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem 4% 1rem calc(4% + 80px) !important;
    }
    
    section {
        margin-bottom: 1.5rem !important;
        padding: 1rem 0 !important;
    }
    
    .carousel-item img {
        height: 350px !important;
        object-fit: cover !important;
    }
    
    .logotype-layout .project-image {
        height: 300px !important;
        padding-left: 20px !important;
    }
    
    .project-main-title {
        font-size: 1.8rem !important;
    }
    
}

@media (max-width: 480px) {
    .main-content {
        padding: 0.5rem 3% 0.5rem calc(3% + 80px) !important;
    }
    
    section {
        margin-bottom: 1rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .carousel-item img {
        height: 350px !important;
        object-fit: cover !important;
    }
    
    .logotype-layout .project-image {
        height: 250px !important;
        padding-left: 10px !important;
    }
    
    .project-main-title {
        font-size: 1.5rem !important;
    }
}






/* ===== PROJECTS DETAIL SECTION - LOGOTYPE LAYOUT ===== */
.projects-detail-section {
    padding: 40px 0 !important; /* Kurangi padding section */

}

.project-detail {
    margin-bottom: 60px !important; /* Kurangi margin antar project */
    margin-top: 0 !important;
}

.project-detail:last-child {
    margin-bottom: 0;
}

/* ===== PROJECTS DETAIL SECTION - STATIONARY LAYOUT ===== */
.project-header h2 {
    padding-top: 50px;
    margin-bottom: 10px;
    text-align: center;
}

.project-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem !important; /* Sedikit lebih kecil */
    font-weight: 600;
    color: #de8887;
    margin: 0 0 15px 0 !important; /* Kurangi margin bawah */
    line-height: 1.1;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.project-text {
    padding: 15px 0 !important; /* Kurangi padding */
    margin: 0 !important;
}

.project-text p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374221;
    margin-bottom: 30px;
    text-align: justify;
}


/* ===== MODAL STYLES UTK STATIONARY ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    animation: zoomIn 0.3s;
    /* Center vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;

    /* Center caption below image */
    position: absolute;
    top: calc(50% + 350px); /* Adjust based on image height */
    left: 50%;
    transform: translateX(-50%);
    font-family: "Poppins", sans-serif;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive modal */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 95%;
        max-width: 95%;
    }
    
    #modalCaption {
        width: 95%;
        max-width: 95%;
        top: calc(50% + 200px);
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

.project-tag {
    background: #a6ba4c;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: #768822;
    transform: translateY(-2px);
}

.project-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #eaa3a2 0%, #de8887 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .project-main-title {
        font-size: 3rem;
    }
 
    .reverse-layout {
        direction: ltr;
    }
    
    .project-text {
        padding: 0;
        order: 2;
    }
    
    .project-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .projects-detail-section {
        padding: 60px 0;
    }
    
    .project-detail {
        margin-bottom: 70px;
    }
    
    .project-main-title {
        font-size: 2.5rem;
    }
    
    .project-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .image-placeholder span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .project-main-title {
        font-size: 2rem;
    }
    
    .project-category {
        font-size: 0.9rem;
    }
    
    .project-tags {
        gap: 8px;
    }
    
    .project-tag {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .image-placeholder {
        height: 250px;
    }
}



/* ===== FIX SPACING ISSUES ===== */

/* Kurangi margin section secara keseluruhan */
#projects {
    margin-bottom: 2rem !important;
    padding: 0 !important;
}

#projects-detail .container > * {
    margin-top: 0 !important;
}

/* Perbaiki container projects */
#projects .container {
    padding-top: 0;
    margin-top: 0;
    margin-top: 0 !important;

}

.carousel-section,
.project-header h1 {
    padding-top: 0px !important;
}
.project-content,
.project-text {
    margin-bottom: 0 !important;
}



/* Perbaiki projects title */
#projects-title {
    font-size: 160px !important;
    color: #768822 !important;
    margin-bottom: 1.5rem !important;
    margin-top: 100px !important;
    padding-left: 0px !important;
}

/* Perbaiki project detail spacing */
.project-detail {
    margin-bottom: 3rem !important;
    margin-top: 0px !important;
}

.project-detail:first-child {
    margin-top: 0 !important;
}


/* Perbaiki logotype layout spacing */
.logotype-layout .project-text {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.logotype-layout .project-image {
    margin-top: 0 !important;
    padding-top: 0 !important;
}



/* Perbaiki software section spacing */
.software-section {
    padding: 1rem 0 !important;
    margin-top: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #projects {
        margin-bottom: 1.5rem !important;
    }
    
    #projects-detail {
        padding: 1.5rem 0 !important;
    }
    
    .project-detail {
        margin-bottom: 2rem !important;
    }
    
}

@media (max-width: 480px) {
    #projects {
        margin-bottom: 1rem !important;
    }
    
    #projects-detail {
        padding: 1rem 0 !important;
    }
    
    .project-detail {
        margin-bottom: 1.5rem !important;
    }
}



/* ===== STATIONARY OVERLAPPING IMAGES STYLES WITH REAL IMAGES ===== */
.project-image {
    position: relative;
    height: 400px;
    width: 400px;
    
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-item {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    overflow: hidden;
    background: #f8f5f0; /* Fallback background */
}

/* Image styles */
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Image overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 39, 10, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.image-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hover effects */
.image-item:hover .image-overlay {
    opacity: 1;
}

.image-item:hover .project-img {
    transform: scale(1.05);
}

/* Main image - yang paling besar di belakang */
.main-image {
    width: 85%;
    height: 85%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Overlapping image pertama */
.overlapping-image {
    width: 65%;
    height: 65%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* Overlapping image kedua (untuk stationary) */
.overlapping-image-2 {
    width: 55%;
    height: 55%;
    top: 10%;
    right: 20%;
    z-index: 3;
    transform: rotate(3deg);
}

/* Hover effects untuk overlapping images */
.image-stack:hover .main-image {
    transform: rotate(-2deg);
}

.image-stack:hover .overlapping-image {
    transform: rotate(-8deg) translateX(-10px);
}

.image-stack:hover .overlapping-image-2 {
    transform: rotate(6deg) translateY(-5px);
}

/* ===== LOGOTYPE LAYOUT FIX ===== */
.logotype-layout {
    display: block !important; /* Override grid layout */
}


.logotype-layout .project-image {
    width: 100%;
    position: relative;
    height: 500px;
    margin-left: 0;
    padding-left: 80px; /* Padding kiri untuk gambar */
}

/* Image stack untuk logotype */
.logotype-layout .image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
}

.logotype-layout .main-image {
    width: 70%;
    height: 70%;
    top: 10%;
    left: 0;
    z-index: 2;
    transform: rotate(-3deg);
}

.logotype-layout .overlapping-image {
    width: 60%;
    height: 60%;
    bottom: 5%;
    right: 10%;
    z-index: 3;
    transform: rotate(5deg);
}

/* Hover effects untuk logotype */
.logotype-layout .image-stack:hover .main-image {
    transform: rotate(-5deg) translateY(-5px);
}

.logotype-layout .image-stack:hover .overlapping-image {
    transform: rotate(8deg) translateX(10px) translateY(-5px);
}

/* Pastikan gambar tetap align kiri */
.logotype-layout .project-image .image-stack {
    margin-left: 0;
    margin-right: auto;
}

/* Responsive untuk logotype layout */
@media (max-width: 968px) {
    .logotype-layout .project-image {
        height: 400px;
        padding-left: 40px;
    }
    
    .logotype-layout .main-image {
        width: 75%;
        height: 75%;
    }
    
    .logotype-layout .overlapping-image {
        width: 65%;
        height: 65%;
    }
}

@media (max-width: 768px) {
    .logotype-layout .project-image {
        height: 350px;
        padding-left: 20px;
    }
    
    .logotype-layout .main-image {
        width: 80%;
        height: 80%;
    }
    
    .logotype-layout .overlapping-image {
        width: 70%;
        height: 70%;
    }
}

@media (max-width: 480px) {
    .logotype-layout .project-image {
        height: 300px;
        padding-left: 10px;
    }
    
    .logotype-layout .main-image {
        width: 85%;
        height: 85%;
    }
    
    .logotype-layout .overlapping-image {
        width: 75%;
        height: 75%;
        right: 5%;
    }
}


/* ===== ELEGANT MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.4s ease;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 241, 226, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    z-index: 10001;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.modal-header {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10002;
}

.close-modal {
    background: rgba(72, 39, 10, 0.95);
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border: none !important;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10003;
}

.close-modal:hover {
    background: #48270a;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.modal-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.5s ease;
    background: transparent;
}

/* Efek blur pada konten dibelakang modal */
body.modal-open {
    overflow: hidden;
}

body.modal-open .main-content {
    filter: blur(5px);
    transition: filter 0.3s ease;
}


.zoom-text {
  display: inline-block;
  position: center;
  height: 2.5rem;
}

.main-content h5 {
  
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;

  text-align: center;
  font-size: 60px;
  color: #eaa3a2;
  margin-top: 80px;
  margin-bottom: 1px;
}

.main-content h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;

  text-align: center;
  font-size: 60px;
  color: #eaa3a2;
  margin-top: 2px;
}

.zoom-text span {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: scale(0.8);
  color: #768822;
  font-size: 80px;
  font-weight: 700;
  animation: zoomCycle 9s ease-in-out infinite;
}

.zoom-text span:nth-child(1) { animation-delay: 0s; }
.zoom-text span:nth-child(2) { animation-delay: 3s; }
.zoom-text span:nth-child(3) { animation-delay: 6s; }

@keyframes zoomCycle {
  0%, 20% { opacity: 0; transform: scale(0.8); }
  25%, 45% { opacity: 1; transform: scale(1); }
  50%, 100% { opacity: 0; transform: scale(1.1); }
}

/* ===== TYPING EFFECT FIXES ===== */
#about-title,
#projects-title,
#software-title h4 {
    text-align: left !important;
  font-family: "Noto Serif Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  min-height: 60px; /* Pastikan ada space meski kosong */
}

/* Software title khusus */
.software-title h4 {
  display: block !important;
  width: 100% !important;
}

/* Non-animated software title */
.software-title {
  animation: none !important;
  border-right: none !important;
  width: auto !important;
  white-space: normal !important;
}

/* Atau buat class khusus */
.software-title-static {
  font-family: "Noto Serif Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #556b2f;
  margin-bottom: 50px;
  text-align: center;
  /* Tidak ada animasi typing */
}

/* Pastikan elemen terlihat saat loading */
#about-title:empty::before,
#projects-title:empty::before,
#software-title:empty::before {
  content: "​"; /* Zero-width space untuk maintain height */
}

/* Animation untuk contact section */
#contact h7,
#contact h8 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}


/* === ✨ TYPING EFFECT STYLE ✨ === */

/* Buat judul (About Me, Projects, Contact) */
#about-title,
#projects-title,
#contact-title {
  font-family: "Noto Serif Display", serif; /* atau font lain yang kamu pilih */
  font-size: 3rem;
  font-weight: 600;
  color: #556b2f; /* hijau matcha yang lembut */
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #a6ba4c; /* efek kursor ketik */
  width: 0; /* awalnya tak terlihat */
  animation: typing-cursor 0.7s steps(1) infinite;

}

/* Efek kursor yang berkedip */
@keyframes typing-cursor {
  50% {
    border-color: transparent;
  }
}

/* Saat teks sedang diketik (JS akan ubah width-nya otomatis nanti) */
.typing {
  animation: blink-cursor 0.7s steps(1) infinite;
}

@keyframes blink-cursor {
  50% {
    border-color: transparent;
  }
}

/* Untuk layout section agar teks ketikan kelihatan rapi */
section {
  padding: 100px 0;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* Responsive agar tetap bagus di HP */
@media (max-width: 768px) {
  #about-title,
  #projects-title,
  #contact-title {
      display: block;
      text-align: left;
      margin-bottom: 1.5rem;
  }
}



/* ===== SOFTWARE SECTION FIX ===== */
.software-section {
    padding: 2px 0;
    margin-top: 2px;
    background: #fcf1e2;
}

.software-container h4 {
    text-align: left !important;
}

.software-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px; /* Normal padding, jangan dikurangi */
    /* HAPUS margin-left: -10px */
    /* HAPUS padding-left: 10px */
}

.software-title {
    font-family: "Noto Serif Display", serif;
    font-size: 3rem;
    font-weight: 600;
    color: #556b2f;
    margin-bottom: 50px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #a6ba4c;
    width: 0;
    animation: typing-cursor 0.7s steps(1) infinite;
}

/* Software Skills Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.software-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0e6df;
}

.software-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(166, 186, 76, 0.15);
}

.software-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #da5e5c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.software-percentage {
    font-size: 1rem;
    color: #768822;
    font-weight: 500;
}



/* Progress Bar Styles */
.progress-container {
    height: 10px;
    background: #f0e6df;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar-software {
    height: 100%;
    background: linear-gradient(to right, #de8887, #eaa3a2);
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
    width: 0%;
}


/* Horizontal Accordion Fix */
.horizontal-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 2px;
}

.horizontal-accordion-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #f0e6df;
    transition: all 0.3s ease;
    margin-bottom: 0px;
}

.horizontal-accordion-header {
    padding: 18px 20px;
    background: #a6ba4c;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 70px;
}

.horizontal-accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    flex: 1;
}

.horizontal-accordion-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.horizontal-accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.horizontal-accordion-content.active {
    padding: 20px;
    max-height: 350px;
    opacity: 1;
}

/* ===== TIMELINE ITEMS ===== */
.timeline-item {
   border-left: none !important;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-weight: 700;
    color: #48270a;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-title {
    font-weight: 600;
    color: #374221;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-subtitle {
    color: #768822;
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-style: italic;
}

.timeline-badge {
     display: none !important;
}

/* ===== SOFTSKILLS GRID ===== */
.softskills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.softskill-item {
    background: #f8f5f0;
    padding: 18px 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: #374221;
    transition: all 0.3s ease;
    border: 1px solid #f0e6df;
    font-family: "Poppins", sans-serif;
}

.softskill-item:hover {
    background: #a6ba4c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 186, 76, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .software-section {
        padding: 60px 0;
    }
    
    .software-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .software-item {
        padding: 20px;
    }
    
    .accordion-header {
        padding: 18px 20px;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content.active {
        padding: 20px;
    }
    
    .softskills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .softskill-item {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .timeline-item {
        padding-left: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .software-title {
        font-size: 2rem;
    }
    
    .software-name {
        font-size: 1.1rem;
    }
    
    .softskills-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ===== HORIZONTAL ACCORDION COMPACT ===== */
.horizontal-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.horizontal-accordion-item {
   border: none !important;
}

.horizontal-accordion-header {
    padding: 18px 20px;
    background: #a6ba4c;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 70px;
}

.horizontal-accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    flex: 1;
}

.horizontal-accordion-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.horizontal-accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.horizontal-accordion-content.active {
    padding: 20px;
    max-height: 350px;
    opacity: 1;
}

/* Timeline items lebih compact */
.timeline-item {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px solid #a6ba4c; /* Garis lebih tipis */
    position: relative;
}

.timeline-year {
    font-weight: 600;
    color: #48270a;
    font-size: 0.9rem; /* Font lebih kecil */
    margin-bottom: 5px;
}

.timeline-title {
    font-weight: 600;
    color: #374221;
    margin-bottom: 3px;
    font-size: 0.95rem; /* Font lebih kecil */
}

.timeline-subtitle {
    color: #768822;
    font-size: 0.85rem; /* Font lebih kecil */
    margin-bottom: 2px;
    font-style: italic;
}

.timeline-badge {
    position: absolute;
    left: -8px; /* Posisi disesuaikan */
    top: 3px;
    width: 16px; /* Badge lebih kecil */
    height: 16px;
    background: #a6ba4c;
    border-radius: 50%;
    border: 2px solid white;
}

/* Softskills grid lebih compact */
.softskills-grid {
    display: grid;
    grid-template-columns: 1fr; /* Satu kolom saja */
    gap: 8px;
}

.softskill-item {
    background: #f8f5f0;
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #374221;
    transition: all 0.3s ease;
    border: 1px solid #f0e6df;
    font-size: 0.9rem; /* Font lebih kecil */
}

/* Software grid lebih compact */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.software-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0e6df;
}

.software-name {
    font-size: 1rem; /* Font lebih kecil */
    font-weight: 600;
    margin-bottom: 12px;
    color: #374221;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive untuk screen kecil */
@media (max-width: 1200px) {
    .horizontal-accordion {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .horizontal-accordion-header {
        padding: 12px 15px;
        min-height: 55px;
    }
    
    .horizontal-accordion-header h3 {
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    .horizontal-accordion {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .horizontal-accordion-header {
        min-height: 50px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .horizontal-accordion-header h3 {
        font-size: 0.95rem;
    }
    
    .horizontal-accordion-content.active {
        padding: 15px;
        max-height: 300px;
    }
    
    .timeline-item {
        padding-left: 15px;
        margin-bottom: 12px;
    }
}


/* ===== PROJECTS DROPDOWN STYLES ===== */
.projects-dropdown-container {
    position: relative;
}

.menu-link {
    position: relative;
    width: 40px;
    height: 100px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    /* SEMBUNYIKAN TEXT ASLI */
    color: transparent !important;
    font-size: 0 !important;
}

/* Tulisan Projects (transparent default) */
.menu-link::after {
    content: attr(data-section);
    color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    white-space: nowrap;
    text-decoration: none !important;
    opacity: 0;
    width: 100%;
    text-align: center;
    padding-left: 30px;
}

/* Dropdown arrow */
.dropdown-arrow {
    color: transparent;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: absolute;
    right: 8px;
    transform: rotate(0deg);
}

/* Hover effects */
.projects-dropdown-container:hover .menu-link {
    width: 140px;
    background-color: #a6ba4c;
}

.projects-dropdown-container:hover .menu-link::after {
    color: #48270a;
    opacity: 1;
}

.projects-dropdown-container:hover .dropdown-arrow {
    color: #48270a;
    transform: rotate(90deg);
}

.projects-dropdown-container:hover .menu-link {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(166, 186, 76, 0.3);
}

/* Dropdown menu */
.projects-dropdown {
    position: absolute;
    top: 0;
    left: 140px; /* Sesuai dengan lebar menu-item saat hover */
    background: #a6ba4c;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 150px;
}

/* ===== PROJECTS DROPDOWN STYLES ===== */
.projects-dropdown-container {
    position: relative;
}

.menu-link {
    position: relative;
    width: 40px;
    height: 100px;
    background-color: #a6ba4c;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    /* SEMBUNYIKAN TEXT ASLI */
    color: transparent !important;
    font-size: 0 !important;
}

/* Tulisan Projects (transparent default) */
.menu-link::after {
    content: attr(data-section);
    color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    white-space: nowrap;
    text-decoration: none !important;
    opacity: 0;
    width: 100%;
    text-align: center;
    padding-left: 30px;
}

/* Dropdown arrow */
.dropdown-arrow {
    color: transparent;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: absolute;
    right: 8px;
    transform: rotate(0deg);
}

/* Hover effects */
.projects-dropdown-container:hover .menu-link {
    width: 140px;
    background-color: #a6ba4c;
}

.projects-dropdown-container:hover .menu-link::after {
    color: #48270a;
    opacity: 1;
}

.projects-dropdown-container:hover .dropdown-arrow {
    color: #48270a;
    transform: rotate(90deg);
}

.projects-dropdown-container:hover .menu-link {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(166, 186, 76, 0.3);
}

/* Dropdown menu */
.projects-dropdown {
    position: absolute;
    top: 0;
    left: 140px; /* Sesuai dengan lebar menu-item saat hover */
    background: #a6ba4c;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 150px;
}

.projects-dropdown-container:hover .projects-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}




/* Pastikan menu-item lain tetap sama */
.menu-item {
    width: 40px;
    height: 100px;
    background-color: #a6ba4c;
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* SEMBUNYIKAN TEXT ASLI */
    color: transparent !important;
    font-size: 0 !important;
}

/* Tulisan defaultnya TRANSPARAN */
.menu-item::after {
    content: attr(data-section);
    color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    white-space: nowrap;
    text-decoration: none !important;
    opacity: 0;
    width: 100%;
    text-align: center;
    padding-left: 30px;
}

/* Pas hover individual menu item, baru melebar dan muncul tulisan */
.menu-item:hover {
    width: 140px;
    background-color: #a6ba4c;
}

.menu-item:hover::after {
    color: #48270a;
    opacity: 1;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(166, 186, 76, 0.3);
}

/* Hilangkan style link default */
.menu-item:link,
.menu-item:visited,
.menu-item:active {
    text-decoration: none !important;
    color: transparent !important;
}

.menu-item:focus {
    outline: none;
    text-decoration: none !important;
}


/* ===== POSTER SERIES LAYOUT ===== */
.project-headerposterseries h1 {
    padding-left: 228px;
}

.poster-series-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    overflow: visible
}



.poster-series-layout:last-child {
    margin-bottom: 0;
}

/* First row: Images on left, Accordion on right */
.first-row {
    direction: ltr;
}

/* Second row: Accordion on left, Images on right */
.second-row {
    direction: rtl;
}

.first-row .poster-accordion-side {
    padding-left: 40px;
    padding-right: 230px; /* Sesuaikan dengan padding images */
}

.second-row > * {
    direction: ltr;
}

.second-row .poster-accordion-side {
    padding-left: 230px; /* Sesuaikan dengan padding images */
    padding-right: 40px;
}

/* Images Side */
.poster-images-side-tiny {
    display: flex;
    justify-content: center;
    padding-left: 230px;
}

.poster-images-side-creativity {
    display: flex;
    justify-content: center;
    padding-left: 0px;
    padding-right: 230px;
}

/* POSTER CREATIVITY COMES FROM A CONFLICT OF IDEAS */
.poster-image-pair-tiny {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    width: 500px; /* TAMBAHKAN WIDTH FIXED */
}

.poster-image-pair-creativity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
    width: 500px; /* TAMBAHKAN WIDTH FIXED */
}

.poster-image-item.portrait {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #f8f5f0;
    aspect-ratio: 2/3; /* Portrait ratio */
    width: 240px; /* TAMBAHKAN WIDTH FIXED */
    height: 360px; /* TAMBAHKAN HEIGHT FIXED */
}

.poster-image-item.portrait:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.poster-image-item.portrait .project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.poster-image-item.portrait:hover .project-img {
    transform: scale(1.05);
}

/* Image overlay untuk poster */
.poster-image-item.portrait .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 39, 10, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.poster-image-item.portrait:hover .image-overlay {
    opacity: 1;
}

.poster-image-item.portrait .image-overlay i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.poster-image-item.portrait .image-overlay span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Accordion Side */
.poster-accordion-side {
    display: flex;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 10;
    padding: 0 40px; /* Tambahkan padding kiri-kanan */
    padding-left: 100px;
}

.poster-accordion-side .accordion {
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    margin: 20px 0; /* Tambahkan margin atas-bawah */
    margin-bottom: 100px;
}

.poster-accordion-side .accordion-item {
    border: none !important;
}

.poster-accordion-side .accordion-button {
    background: #a6ba4c;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.poster-accordion-side .accordion-button:not(.collapsed) {
    background: #768822;
    color: white;
}

.poster-accordion-side .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.3);
}

.poster-accordion-side .accordion-button:not(.collapsed)::after {
    transform: scale(1.3) rotate(-180deg);
}

.poster-accordion-side .accordion-button:hover {
    background: #768822;
}

.poster-accordion-side .accordion-body {
    padding: 30px;
    background: white;
    font-family: "Poppins", sans-serif;
    min-height: 90px; /* Sesuaikan sesuai kebutuhan */
    overflow: visible;
    margin: 10px 0; /* Tambahkan margin */
}

.poster-accordion-side .accordion-body p {
    color: #374221;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.poster-accordion-side .accordion-body strong {
    color: #48270a;
    font-weight: 600;
}

.poster-accordion-side .project-tags {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.poster-accordion-side .project-tag {
    background: #eaa3a2;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.poster-accordion-side .project-tag:hover {
    background: #de8887;
    transform: translateY(-2px);
}

/* Responsive Design untuk Poster Series */
@media (max-width: 968px) {
    .poster-series-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .first-row,
    .second-row {
        direction: ltr !important;
    }
    
    .poster-image-pair {
        max-width: 400px;
        gap: 15px;
    }
    
    .poster-accordion-side .accordion-button {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .poster-accordion-side .accordion-body {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .poster-series-layout {
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .poster-image-pair {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 15px;
    }
    
    .poster-image-item.portrait {
        aspect-ratio: 3/4;
    }
    
    .poster-accordion-side .accordion-button {
        padding: 18px;
        font-size: 1rem;
    }
    
    .poster-accordion-side .accordion-body {
        padding: 20px;
    }
    
    .poster-accordion-side .accordion-body p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .poster-image-item.portrait .image-overlay i {
        font-size: 1.5rem;
    }
    
    .poster-image-item.portrait .image-overlay span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .poster-series-layout {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .poster-image-pair {
        max-width: 100%;
        gap: 12px;
    }
    
    .poster-accordion-side .accordion-button {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .poster-accordion-side .accordion-body {
        padding: 18px;
    }
    
    .poster-accordion-side .project-tags {
        gap: 8px;
    }
    
    .poster-accordion-side .project-tag {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

/* ===== EXPERIMENTAL ILLUSTRATION LAYOUT ===== */

.illustration-item {
    margin-bottom: 100px;
    position: relative;
}

.illustration-item:last-child {
    margin-bottom: 0;
}

.illustration-content.reversed {
    direction: rtl;
}

.illustration-content.reversed > * {
    direction: ltr;
}

/* First Illustration - Experimental Layout */


.first-illustration .illustration-image .image-item {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.first-illustration .illustration-image .project-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}


.first-illustration .illustration-text::before {
 display: none !important;
}

/* Second Illustration - More Experimental Padding */




.second-illustration .illustration-text::after {
    display: none !important;
}

/* Illustration Image Styles */
.illustration-image .image-item {
    aspect-ratio: 1/√2 !important; /* Rasio A4: 1:√2 (1:1.414) */
    width: 100% !important;
    max-width: 400px !important; /* Maksimum lebar */
    height: auto !important;

    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #f8f5f0;
    transform: rotate(-1deg);
}

.illustration-image .image-item:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}



.second-illustration .illustration-image .image-item:hover {
    transform: rotate(0deg) translateY(-10px);
}

.illustration-image .project-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease;
}

.illustration-image .image-item:hover .project-img {
    transform: scale(1.08);
}


.illustration-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    color: #48270a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.illustration-project {
    padding-top: 100px !important;
    margin-bottom: 4rem;
    padding-left: 230px !important;
    padding-right: 230px !important;
}

.illustration-content {
    display: grid;
    grid-template-columns: 500px 1fr; /* Image fixed, text flexible */
    gap: 80px;
    align-items: start;
}

.first-illustration .illustration-content {
    grid-template-columns: 500px 1fr;
    gap: 60px;
}

.first-illustration .illustration-text {
    padding: 20px 0 0 40px;
    position: relative;
    min-width: 300px;
    /* FIX TEXT OVERFLOW */
    overflow: visible !important;
    max-width: 100%;
}

@media (max-width: 968px) {
    .illustration-project {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
    
    .illustration-content {
        grid-template-columns: 1fr; /* UBAH KE 1 COLUMN DI TABLET */
        gap: 40px;
    }
    
    .first-illustration .illustration-content {
        grid-template-columns: 1fr;
    }
    
    .first-illustration .illustration-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .first-illustration .illustration-text {
        padding: 20px 0 0 90px !important;
        min-width: auto; /* HAPUS MIN-WIDTH */
        width: 100%;
    }
    
    /* PASTIKAN TEXT DAPAT MEMBUNGKUS DENGAN BAIK */
    .illustration-text p {
        text-align: justify !important;
        margin-bottom: 1.2em !important;
        line-height: 1.7 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .illustration-project {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .first-illustration .illustration-text {
        padding: 20px 0 0 20px;
    }
    
    .illustration-title {
        font-size: 1.8rem;
    }
    
    .illustration-text p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }
    
    /* PASTIKAN TEXT TIDAK TERPOTONG */
    .illustration-text {
        overflow: visible !important;
    }
    
    .illustration-text p {
        overflow: visible !important;
        white-space: normal !important;
    }
}

@media (max-width: 480px) {
    .illustration-project {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .first-illustration .illustration-text {
        padding: 15px 0 0 15px;
    }
    
    .illustration-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .illustration-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
}

.first-illustration .illustration-title::after {
    display: none !important;
}

.second-illustration .illustration-title {
    text-align: right;
    padding-right: 0px;
}

.second-illustration .illustration-title::before {
    display: none !important;
    content: none !important;
}

.second-illustration .illustration-content {
    display: grid;
    grid-template-columns: 1fr 500px; /* Text kiri, Image kanan */
    gap: 60px;
    align-items: start;
}

.second-illustration .illustration-image {
    width: 500px;
    flex-shrink: 0;
}

.second-illustration .illustration-text p {
    padding: 0 !important;
    min-width: auto !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .second-illustration .illustration-content {
        grid-template-columns: 1fr 400px;
    }
    
    .second-illustration .illustration-image {
        width: 400px;
    }
}

@media (max-width: 968px) {
    .first-illustration .illustration-text,
    .second-illustration .illustration-text {
        padding: 20px 0 0 90px !important;
        text-align: justify !important;
    }
    
    .second-illustration .illustration-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .second-illustration .illustration-text {
        padding: 0 !important;
        text-align: center;
    }
    
    .second-illustration .illustration-text p {
        text-align: justify !important;
    }
}

.illustration-text p {
    text-align: justify !important;
    padding: 0 !important;
}

/* Project Tags for Illustration */
.illustration-text .project-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.illustration-text .project-tag {
    background: linear-gradient(135deg, #a6ba4c, #768822);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    border: none;
}

.illustration-text .project-tag:hover {
    background: linear-gradient(135deg, #eaa3a2, #de8887);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(234, 163, 162, 0.3);
}

/* Image Overlay */

.illustration-image {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}



.illustration-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 39, 10, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.illustration-image .image-item:hover .image-overlay {
    opacity: 1;
}

.illustration-image .image-overlay i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.illustration-image .image-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design untuk Illustration */
@media (max-width: 968px) {
    .illustration-image .image-item {
        max-width: 350px !important;
    }
}

@media (max-width: 768px) {
    .illustration-image .image-item {
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .illustration-image .image-item {
        max-width: 250px !important;
    }
}

@media (max-width: 768px) {
    .illustration-item {
        margin-bottom: 70px;
    }
    
    .illustration-content {
        gap: 30px;
    }
    
    .illustration-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .illustration-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .illustration-image .project-img {
        height: 300px;
    }
    
    .illustration-image .image-overlay i {
        font-size: 1.8rem;
    }
    
    .illustration-image .image-overlay span {
        font-size: 0.85rem;
    }
    
    .illustration-text .project-tags {
        margin-top: 25px;
        gap: 10px;
    }
    
    .illustration-text .project-tag {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .illustration-item {
        margin-bottom: 50px;
    }
    
    .illustration-content {
        gap: 25px;
    }
    
    .illustration-title {
        font-size: 1.6rem;
    }
    
    .illustration-image .project-img {
        height: 250px;
    }
    
    .illustration-text .project-tags {
        gap: 8px;
    }
    
    .illustration-text .project-tag {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}


/* ===== MORE ARTWORKS SECTION - SIMPLE VERSION ===== */
#more-artworks {
    padding: 80px 0;
}

.more-artworks-header {
    text-align: center;
    margin-bottom: 60px;
}

.more-artworks-title {
    font-family: "Noto Serif Display", serif;
    font-size: 3rem;
    font-weight: 600;
    color: #48270a;
    margin: 0;
}

.artworks-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Group kiri dan kanan */
.artwork-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Item artwork - SIMPLE VERSION */
.artwork-item {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    aspect-ratio: 2/3; /* Portrait ratio */
    
    /* HILANGKAN shadow dan efek hover kompleks */
    box-shadow: none !important;
    transition: transform 0.3s ease;
    
    /* HILANGKAN cursor pointer dan click events */
    cursor: default !important;
    pointer-events: none !important;
}

/* HILANGKAN semua overlay dan efek klik */
.artwork-overlay {
    display: none !important;
}

.artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* HILANGKAN transform scale pada hover */
    transition: none !important;
}

/* HILANGKAN efek hover yang kompleks */
.artwork-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

.artwork-item:hover .artwork-img {
    transform: none !important;
}

/* Variasi posisi untuk efek staggered - SIMPLE ROTATION */
.left-group .artwork-item:nth-child(1) {
    margin-right: 15px;
}

.right-group .artwork-item:nth-child(1) {
    margin-top: 15px;
    margin-left: 15px;
}



/* Responsive Design */
@media (max-width: 968px) {
    .artworks-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .more-artworks-title {
        font-size: 2.5rem;
    }
    
    .artwork-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .artwork-item {
        width: 180px;
        height: 240px;
    }
    
    /* Reset rotations di mobile - buat lebih subtle */
    .left-group .artwork-item,
    .right-group .artwork-item {
        margin: 0 5px !important;
    }
}

@media (max-width: 768px) {
    #more-artworks {
        padding: 60px 0;
    }
    
    .more-artworks-title {
        font-size: 2rem;
    }
    
    .artwork-group {
        gap: 20px;
    }
    
    .artwork-item {
        width: 160px;
        height: 210px;
    }
}

@media (max-width: 480px) {
    .artwork-group {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .artwork-item {
        width: 200px;
        height: 265px;
        margin: 0 !important;
    }
    
    .more-artworks-title {
        font-size: 1.8rem;
    }
}