@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #b5952f;
    --dark: #1a1a1a;
    --grey: #fbfbfb;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: #fff;
}

/* =========================================
   BAGIAN HEADER (UPDATED: TINGGI 600PX)
   ========================================= */
.page-header {
    position: relative;
    width: 100%;

    /* UBAH DISINI: Jadi 600px (Sama persis kayak Proyek) */
    height: 600px;

    margin-top: 70px;

    /* Image Asset */
    background-image: url('/imgheader/gambar5.jpeg');

    background-size: cover;
    /* Fokus ke bawah agar gambar tidak kepotong */
    background-position: center bottom;
    background-repeat: no-repeat;

    /* LOGIKA FLEXBOX (Untuk Posisi Teks) */
    /* Ini yang bikin teks otomatis nyesuain di tengah */
    display: flex;
    flex-direction: column;
    align-items: center;     /* Tengah Kiri-Kanan */
    justify-content: center; /* Tengah Atas-Bawah */
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 1rem;
    color: #ccc;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.separator {
    margin: 0 10px;
    color: var(--gold);
}

.current {
    color: var(--gold);
    font-weight: 600;
}

/* =========================================
   BAGIAN KONTEN LAIN (TIDAK DIRUBAH)
   ========================================= */
.product-intro {
    padding: 80px 20px 40px;
    background-color: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

.text-content-center {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.product-catalog {
    padding: 40px 20px 100px;
    background-color: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.catalog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #eee;
}

.catalog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.card-img {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalog-card:hover .card-img img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
    text-align: left;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
    transition: color 0.3s ease;
}

.catalog-card:hover .card-body h3 {
    color: var(--gold);
}

.card-body p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-top: 10px;
}

.card-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.catalog-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

a.catalog-card {
    text-decoration: none;
    display: block;
    color: inherit;
}

.btn-text-gold {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(10px);
}

a.catalog-card:hover .btn-text-gold {
    opacity: 1;
    transform: translateY(0);
}

.cta-section {
    background-color: #121212;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    margin-top: 50px;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.glow-left { top: -100px; left: -100px; }
.glow-right { bottom: -100px; right: -100px; }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 280px;
}

.contact-icon i {
    color: var(--gold);
    font-size: 28px;
}

.contact-info-text {
    text-align: left;
}

.contact-info-text span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.contact-info-text strong {
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

.cta-footer-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    border: 2px solid var(--gold);
    background-color: transparent;
    color: var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-gold-outline i {
    font-size: 1.4rem;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   MEDIA QUERIES
   ========================================= */

@media (max-width: 992px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-box-dark {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* --- HEADER RESPONSIVE LOGIC --- */
    /* Ini dijaga agar gambar full tidak zoom (aspect-ratio 16:9) */
    /* Dan teks tetap di tengah karena Flexbox */
    .page-header {
        height: auto;
        aspect-ratio: 16/9;
        background-position: center bottom;

        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .page-title {
        font-size: 1.5rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    /* --- Style Lainnya --- */
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .section-heading { font-size: 2rem; }
    .cta-text-group h2 { font-size: 1.8rem; }
    .btn-gold-solid {
        width: 100%;
        text-align: center;
    }
    .cta-title { font-size: 2rem; }
    .cta-contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .contact-box {
        width: 100%;
        justify-content: center;
    }
}