/* Warna yang Diambil dari Desain:
   - Warna Utama Background (Abu-abu Tua Kekuningan): #B0A89A
   - Warna Aksen (Cokelat Jingga): #C79069
   - Warna Background Deskripsi (Krem Hangap): #efe7df
   - Warna Lingkaran Icon: #E6F0F3
*/

:root {
    --color-text-dark: #333;
    --color-background-light: #f7f7f7;
    --color-accent-1: #A9B29C; /* Interior Design BG */
    --color-accent-2: #C79069; /* Architecture & Consultation BG/Accent */
    --color-desc-bg: #efe7df; /* Warna Krem/Cokelat Muda untuk Deskripsi */
    --color-icon-circle: #E6F0F3;
    --color-icon-border: #A3C4CC;
    --color-white: #fff;
    --color-footer-bg: #222;
}

/* GLOBAL STYLES */
html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0;
    padding: 0;
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    /* PERBAIKAN 1: Mencegah scroll/overflow horizontal di body secara global */
    overflow-x: hidden; 
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 40px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
}

/* --- IMAGE PLACEHOLDER (GAMBAR UMUM) --- */
.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* ATURAN: Memastikan tag <img> mengisi wadah (object-fit: cover untuk gambar non-hero) */
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


/* 1. NAVIGASI (Gaya Desktop Default) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%; 
    position: relative; 
    z-index: 1001;     
}

/* --- LOGO IMAGE PLACEHOLDER (NAVBAR) --- */
.logo-image-placeholder {
    width: 180px; 
    height: 70px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ATURAN: Memastikan tag <img> logo navbar terlihat */
.logo-image-placeholder img {
    max-height: 100%;
    width: auto;
    object-fit: contain; 
}

/* PERBAIKAN: Pastikan menu navigasi default (desktop) selalu terlihat */
.nav-menu {
    display: block !important; 
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    font-size: 1em;
}

/* --- GAYA BURGER ICON (DISEMBUYIKAN DI DESKTOP) --- */
.menu-toggle {
    display: none; /* <-- Sembunyikan secara default di desktop */
    background: none;
    border: none; 
    cursor: pointer;
    padding: 0; 
    z-index: 1002; 
    
    width: 40px; 
    height: 40px;
    
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px; 
    margin: 4px auto; 
    background-color: var(--color-text-dark); 
    transition: all 0.3s ease-in-out;
}

/* 2. HERO SECTION */
.hero-section {
    padding: 20px 2% 5% 2%; 
}

.hero-spacer {
    height: 0px; 
    margin-bottom: 0px;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; 
    gap: 15px;
    /* MODIFIKASI DESKTOP: Untuk menghilangkan padding 2% di kiri/kanan dari .hero-section */
    margin-left: -2%; 
    margin-right: -2%;
    width: 104%; /* 100% + 2% kiri + 2% kanan */
}

.large-hero-image {
    grid-column: 1 / 3; 
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ATURAN KHUSUS: Untuk gambar hero utama agar tidak terpotong */
.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Kunci: Memastikan gambar tidak terpotong dan menjaga rasio */
}

/* --- PERBAIKAN AKHIR: Memastikan hero-description-moved full width & rata --- */
.hero-description-moved {
    grid-column: 1 / 3; 
	/* Menggunakan margin negatif untuk mengimbangi padding 2% dari .hero-section */
    margin-left: -2%; 
    margin-right: -2%;
    width: 104%; 
    
    padding: 50px 0; /* Hapus padding horizontal di sini */
    margin-top: 0; 
    background-color: var(--color-desc-bg); 
    text-align: center;
    color: #444; 
    max-width: none !important; 
}

.hero-description-moved .studio-name-header {
    font-size: 1.5em; 
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.hero-description-moved .tagline-sub {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #777;
}

.hero-description-moved .main-desc {
    font-size: 1em;
    margin: 10px auto;
    max-width: 850px; 
    line-height: 1.8;
    /* Tambahkan padding horizontal untuk memastikan teks tidak menempel ke tepi layar */
    padding: 0 2%; 
}

/* 3. PORTOFOLIO SECTION (Index Page) */
.portfolio-section {
    display: flex;
    gap: 20px;
    padding: 5% 2%; 
}

.project-card {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.project-card h2 {
    font-weight: 400;
}

.project-image {
    height: 300px;
    width: 100%;
    margin: 20px 0;
}

.explore-button {
    display: inline-block;
    padding: 10px 20px;
    /* border: 1px solid var(--color-text-dark); <-- DIUBAH MENJADI: */
    border: none; /* MODIFIKASI: Menghilangkan border kotak hitam */
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* 4. OUR SERVICES SECTION */
.services-section {
    padding-bottom: 40px;
}
.service-container {
    display: flex;
    flex-direction: column;
}

.service-card {
    display: flex;
    color: var(--color-white);
    margin-bottom: 0;
    align-items: center; 
}

.service-card.interior-design {
    flex-direction: row; 
    background-color: var(--color-accent-1);
}

.service-card.architecture {
    flex-direction: row; 
    background-color: var(--color-accent-2);
}

.service-text {
    flex: 1;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	text-align: center;
}

.service-text h3 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1.5em;
    margin-top: 0;
    /* PERUBAHAN 1: Mengurangi margin bawah h3 agar lebih rapat dengan p */
    margin-bottom: 8px; 
}

.service-text p {
    /* PERUBAHAN 1: Menghilangkan margin atas p agar lebih rapat dengan h3 */
    margin-top: 0; 
    margin-bottom: 0; 
    padding: 0 10px; /* Menambahkan padding horizontal agar teks tidak terlalu mepet ke tepi */
    text-align: center;
}

.service-text ul {
    list-style: none; 
    padding: 0;
    margin: 15px auto 0 auto;
    font-size: 1.1em;
    max-width: 300px; 
    text-align: left;
}

.service-text ul li {
    margin-bottom: 10px;
    padding-left: 0; 
    position: relative;
}

.service-text ul li:before {
    content: none;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.service-image-1, .service-image-2 {
    flex: 1;
    height: 350px; 
}

/* 5. HOW WE WORK SECTION */
.how-we-work-section {
    padding: 5% 2%; 
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; 
    gap: 2%;
    margin-top: 40px;
}

.step-card {
    width: 18%; 
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: transparent; 
    border: 1px solid var(--color-icon-border);
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* --- IKON HOW WE WORK (UKURAN DIPERBESAR) --- */
.process-icon { 
    width: 64px; 
    height: 64px; 
    object-fit: contain; 
    padding: 10px; 
}

.step-text {
    font-size: 0.9em;
    color: #555;
}

/* 6. CONSULTATION SECTION */
.consultation-section {
    background-color: #F3F0EC;
    padding: 60px 0;
    text-align: center;
}

.consultation-section h2 {
    margin-top: 0;
    color: var(--color-accent-2); 
    font-size: 2em;
    font-weight: 500;
}

.consultation-section p {
    max-width: 800px;
    margin: 10px auto;
}

.no-wrap-text {
    white-space: nowrap; 
    max-width: none !important; 
}

/* --- CTA BUTTON UMUM (WARNA AKSE & CENTERING) --- */
.cta-button {
    /* Centering Aman: Tetap inline-block agar text-align: center dari parent bekerja */
    display: inline-block; 
    
    /* MODIFIKASI: Menggunakan Warna Aksen (Cokelat Jingga) */
    background-color: var(--color-accent-2); 
    color: var(--color-white); 
    padding: 15px 30px;
    font-weight: bold;
    
    margin-top: 30px; 
    
    /* MODIFIKASI: Border mengikuti warna background */
    border: 2px solid var(--color-accent-2); 
    text-transform: uppercase;
    transition: background-color 0.3s;
    
    /* PENAMBAHAN: Sudut melengkung */
    border-radius: 5px; 
}

.cta-button:hover {
    background-color: #A97A53; /* Warna hover yang lebih gelap */
    border-color: #A97A53;
}

/* 7. FOOTER */
.footer {
    display: flex;
    flex-direction: column; 
}

/* --- PERUBAHAN WARNA: FOOTER TOP (DARK -> WHITE) --- */
.footer-top {
    padding: 60px 2%; 
    background-color: var(--color-white); /* DIUBAH: Background menjadi PUTIH */
    color: var(--color-text-dark); /* DIUBAH: Text menjadi HITAM */
    text-align: center;
}

.social-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto; 
}

/* --- PERUBAHAN INSTAGRAM ICON PLACEHOLDER --- */
.instagram-icon-placeholder {
    width: 40px;
    height: 40px;
    /* Border diubah menjadi HITAM */
    border: 1px solid var(--color-text-dark);
    border-radius: 50%;
    margin: 10px auto 5px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Hapus ikon kamera '📷' yang dibuat dengan pseudo-element */
.instagram-icon-placeholder::before {
    content: none; 
}

/* Aturan baru untuk gambar di dalam placeholder */
.instagram-icon-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar mengisi lingkaran */
    border-radius: 50%;
}

/* PERUBAHAN 2: Style untuk handle Instagram (Memperbesar Font) */
.instagram-handle {
    font-size: 1.2em; 
    font-weight: 600;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 2%; 
    background-color: var(--color-desc-bg); 
    color: var(--color-text-dark);
    font-size: 0.9em;
}

.footer-logo {
    flex-grow: 0; 
    align-self: flex-start; 
}

/* --- LOGO STUDIO FOOTER --- */
.footer-logo-img { 
    height: 40px; 
    width: auto;
    display: block;
    object-fit: contain;
}

.contact-info {
    text-align: right;
    align-self: flex-end; 
    font-size: 1.1em;
}

.contact-info p {
    margin: 5px 0;
    line-height: 1.4;
}


/* Warna khusus untuk CTA di Footer/Get In Touch Section (tetap background gelap) */
.footer-cta-button {
    background-color: var(--color-footer-bg) !important; 
    color: var(--color-white) !important;
    border-color: var(--color-footer-bg) !important;
}
.footer-cta-button:hover {
    background-color: #444 !important;
}


/* ------------------------------------------------------------------- */
/* --- GAYA KHUSUS HALAMAN PORTOFOLIO (RESIDENTIAL/COMMERCIAL) --- */
/* ------------------------------------------------------------------- */

/* WRAPPER KONTEN UNTUK MENJAMIN LEBAR RATA 1200px (Memerlukan perubahan di HTML) */
.section-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%; 
}

/* Header Halaman Portofolio (Background Krem) */
.portfolio-page-header {
    background-color: var(--color-desc-bg);
    /* MODIFIKASI: Padding Horizontal Dihapus dari luar */
    padding: 20px 0; 
    text-align: center;
}

.portfolio-title-text {
    font-size: 1.2em;
    font-weight: 500;
    margin: 10px 0;
    text-transform: uppercase;
}

/* Grid Kontainer (2 Kolom) */
.project-grid-section {
    padding: 60px 2%; 
}

.project-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px; 
    margin: 0 auto;
}

.project-item {
    text-align: left;
    position: relative; /* Diperlukan untuk anchoring tombol, biarkan saja */
}

/* --- PERBAIKAN: GAYA DEFAULT GAMBAR PORTOFOLIO (RESIDENTIAL/UMUM) --- */
.project-thumb {
    width: 100%;
    height: 300px; /* Tinggi Normal (Horizontal/Persegi) */
    max-width: 100%; 
    margin: 0 0 0; 
}

/* --- GAYA KHUSUS: GAMBAR VERTIKAL RAMPING (KHUSUS COMMERCIAL) --- */
.commercial-thumb {
    height: 450px; /* Tinggi vertikal */
    max-width: 75%; /* Buat ramping */
    margin: 0 auto 0; /* Centering gambar di dalam grid item */
}


/* --- MODIFIKASI: PROJECT BUTTON (DI BAWAH GAMBAR, TIDAK MENIMPA, PUTIH, TANPA BORDER) --- */
.project-button {
    /* Hapus Positioning Absolut agar berada di Aliran Normal */
    position: static; 
    left: auto; 
    bottom: auto; 
    transform: none; 

    /* GAYA FISIK BARU */
    display: block; /* Agar memenuhi lebar parent */
    width: 100%; 
    max-width: 100%; 

    text-align: center;
    padding: 12px 20px; 
    
    /* Tambahkan margin di atas agar ada jarak dari gambar */
    margin-top: 20px; 
    
    /* GAYA VISUAL SESUAI PERMINTAAN */
    background-color: var(--color-white); /* Warna Putih Solid */
    color: var(--color-text-dark); 
    text-transform: uppercase;
    font-size: 0.9em; 
    font-weight: 600;
    
    /* Border Dihilangkan */
    border: none; 

    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 2px; 
}

.project-button:hover {
    /* Gaya Hover yang sedikit kontras */
    background-color: #f0f0f0; 
}

/* Bagian GET IN TOUCH di Halaman Portofolio (Warna Cokelat Accent 2) */
.consultation-section.get-in-touch-section {
    background-color: var(--color-accent-2); 
    color: var(--color-white);
    /* MODIFIKASI: Padding Horizontal Dihapus dari luar */
    padding: 80px 0;
}

.consultation-section.get-in-touch-section h2, 
.consultation-section.get-in-touch-section p {
    color: var(--color-white); 
}

/* --- OVERRIDE KHUSUS: CTA BUTTON DI DALAM SECTION GET-IN-TOUCH (WARNA KONTRAS) --- */
.get-in-touch-section .cta-button {
    /* Background Putih / Krem */
    background-color: var(--color-desc-bg); 
    color: var(--color-text-dark); /* Teks Cokelat Tua */
    border: 2px solid var(--color-text-dark); /* Border Cokelat Tua */
    /* Pastikan centering bekerja */
    display: inline-block; 
}

.get-in-touch-section .cta-button:hover {
    background-color: var(--color-white); 
    color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

/* ------------------------------------------------------------------- */
/* --- GAYA KHUSUS HALAMAN DETAIL PROYEK --- */
/* ------------------------------------------------------------------- */

.project-detail-header {
    background-color: var(--color-desc-bg);
    padding: 20px 2%; 
}

.detail-header-content {
    display: flex;
    justify-content: space-between;
    /* PENTING: Mengatur rata tengah vertikal untuk semua elemen utama (Back & project-info) */
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.arrow-icon {
    font-size: 1.5em;
    line-height: 1;
    margin-right: 5px;
}

/* SOLUSI FINAL: Judul di Tengah, Kategori di Kanan, dan Semuanya Sejajar */
.project-info {
	flex-grow: 1;
    text-align: center; /* Judul H1 tetap di tengah */
    position: relative; /* PENTING: Menjadi container untuk elemen absolute */
}

/* KELAS BARU: Mengatur kategori agar rata kanan */
.project-category.align-right {
    position: absolute; /* PENTING: Posisikan secara absolut */
    top: 50%;           /* Posisikan ke tengah vertikal dari .project-info */
    right: 0;           /* Posisikan ke kanan */
    transform: translateY(-50%); /* Geser ke atas 50% tingginya sendiri agar benar-benar di tengah */
    margin: 0;          /* Hapus margin agar tidak mengganggu */
}

.project-detail-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.project-category {
    font-size: 0.9em;
    font-weight: 500;
    margin: 0;
    color: #666;
}

/* Galeri Gambar Detail (Digunakan oleh grid 2 kolom) */
.project-gallery-section {
    padding: 60px 2%; 
}

.gallery-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; 
    max-width: 1200px; 
    margin: 0 auto;
}

.gallery-item {
    text-align: left;
}

.gallery-image {
    width: 100%;
    height: 300px; 
    margin-bottom: 5px;
}

.image-caption {
    font-size: 0.85em;
    font-weight: 500;
    margin: 0 0 30px 0; 
    text-transform: uppercase;
    color: var(--color-text-dark);
}

/* 3-column grid for Kids Bedroom (Penyesuaian Khusus) */
.kids-bedroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 columns */
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto 0; 
}

/* Custom Grid untuk Galeri Vertikal 3 Kolom (Khusus BGY Fruits) */
.vertical-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto; 
}


/* Gaya untuk gambar vertikal/portrait */
.gallery-image.vertical-image {
    height: 450px; 
}


/* ------------------------------------------------------------------- */
/* --- MEDIA QUERIES (RESPONSIVE) --- */
/* ------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .process-steps {
        flex-wrap: wrap;
    }
    .step-card {
        width: 30%; 
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    
    /* 1. Tampilkan tombol burger menu dan pastikan bisa diklik */
    .menu-toggle {
        display: flex; /* <-- PASTIKAN IKON BURGER MUNCUL */
    }
    
    /* 2. GAYA NAVIGASI POP-UP MOBILE (LEBIH KECIL & PUTIH) */
    .nav-menu {
        position: absolute; 
        top: 100%;          
        right: 2%; /* PENTING: Posisikan di kanan */
        
        /* Ubah lebar agar tidak 100% (Pop-up lebih kecil) */
        width: 250px; 
        
        /* Ubah warna latar belakang menjadi PUTIH */
        background-color: var(--color-white); 
        
        display: block; 
        max-height: 0;      
        overflow: hidden;   
        
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        z-index: 998;       
        padding: 0;
        border: 1px solid rgba(0, 0, 0, 0.1); /* Tambahkan border tipis */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Tambahkan shadow */
        border-radius: 5px;
    }

    .nav-menu.active {
        max-height: 350px;  /* Tinggi saat aktif */
        padding: 15px 0;    
    }

    .nav-menu ul {
        flex-direction: column;
        /* Rata kiri untuk tampilan pop-up */
        text-align: left; 
        gap: 0;             
        font-size: 1.1em;   
        padding: 0;
        margin: 0;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 10px 20px; 
        transition: background-color 0.2s;
    }

    .nav-menu ul li a:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    /* Animasi Burger Icon (Menjadi 'X') tetap dipertahankan */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-image-grid {
        display: block;
        margin-left: 0; 
        margin-right: 0;
        width: 100%; 
    }
    
    /* PERBAIKAN AKHIR (Paling Robust): Memaksa box deskripsi hero menjadi full viewport width */
    .hero-description-moved {
        /* Mengatur width menjadi full viewport width */
        width: 100vw; 
        /* Menempatkan elemen relatif terhadap posisinya */
        position: relative;
        /* Menggeser elemen ke kiri untuk mengimbangi margin yang hilang */
        left: 50%; 
        /* Memastikan elemen berada tepat di tengah dengan menggeser kembali setengah dari lebarnya */
        transform: translateX(-50%); 
        
        /* Aturan lain yang sudah ada */
        margin: 0; /* Reset semua margin */
        padding: 50px 0; 
    }
    .hero-description-moved .main-desc {
        /* Tambahkan padding horizontal agar teks tidak menempel ke tepi, sesuai padding 2% dari hero-section */
        padding: 0 2%; 
    }
    
    .large-hero-image, .project-image, .service-image-1, .service-image-2 {
        height: 250px;
        margin-bottom: 15px;
    }

    .portfolio-section {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column !important;
    }

    .process-steps {
        flex-direction: column;
    }
    .step-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .no-wrap-text {
        white-space: normal;
        max-width: 100% !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-logo, .contact-info {
        width: 100%;
        text-align: center;
    }
    .contact-info {
        align-self: center; 
    }
    .contact-info p {
        text-align: center;
    }

    /* Penyesuaian Grid Portofolio (Halaman list) */
    .project-grid-container {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    
    /* Di mobile, gambar proyek kembali ke default 100% lebar & 250px tinggi */
    .project-thumb {
        height: 250px;
        max-width: 100%; 
        margin: 0;
    }
    
    /* Tombol Proyek di Mobile: Karena sudah tidak absolut, tidak perlu penyesuaian khusus */
    .project-button {
        padding: 10px 15px;
        /* margin-top: 20px tetap berlaku */
    }


    /* Penyesuaian Detail Project Header Mobile */
    .detail-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* Hapus penempatan absolute pada mobile untuk memastikan category tidak menimpa judul */
    .project-category.align-right {
        position: static;
        transform: none;
        align-self: center;
        text-align: center;
        /* Posisikan di bawah judul di mode mobile */
        margin-top: 5px; 
    }
    
    .project-info {
        width: 100%; 
        text-align: center;
    }


    /* Penyesuaian Grid 2 kolom di halaman Detail menjadi 1 kolom di Mobile */
    .gallery-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-image {
        height: 200px;
    }
    .image-caption {
        margin-bottom: 10px;
    }

    /* Penyesuaian Grid 3 kolom Kids Bedroom menjadi 1 kolom di Mobile */
    .kids-bedroom-grid {
        grid-template-columns: 1fr; 
        margin-top: 20px;
    }

    /* Penyesuaian Grid 3 kolom Vertikal BGY Fruits menjadi 1 kolom di Mobile */
    .vertical-gallery-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .gallery-image.vertical-image {
        height: 250px; 
    }
}