:root {
    --primary: #1a1a1a;
    --accent: #b08968;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-light);
    color: var(--primary);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 25px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(0px);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 3px; }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&q=80&w=2000') center/cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    color: var(--white);
}

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(70deg, rgba(0,0,0,0.8), transparent); }

.hero-content { position: relative; max-width: 700px; z-index: 2; }

.badge { background: var(--accent); padding: 6px 15px; border-radius: 30px; font-size: 0.75rem; letter-spacing: 1px; font-weight: 700; }

.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin: 25px 0; }

.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 35px; max-width: 500px; }

.btn-primary { background: var(--white); border: none; padding: 15px 35px; border-radius: 5px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-primary:hover { background: var(--accent); color: white; transform: translateY(-3px); }

/* Section Categories */
.category-section { padding: 100px 5%; }

.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }

.sub-title { color: var(--accent); text-transform: uppercase; letter-spacing: 4px; font-size: 0.85rem; font-weight: 700; }

h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-top: 10px; }

.custom-nav { display: flex; gap: 15px; }

.swiper-button-next-custom, .swiper-button-prev-custom {
    width: 50px; height: 50px; border: 1px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}

.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover { background: var(--primary); color: white; border-color: var(--primary); }

.category-card { padding: 10px; transition: var(--transition); }

.img-container { height: 400px; border-radius: 15px; overflow: hidden; margin-bottom: 20px; }

.img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }

.category-card:hover img { transform: scale(1.1); }

/* Mebel Grid */
.mebel-section { padding: 100px 5%; background: #f4f4f4; }

.mebel-intro { text-align: center; margin-bottom: 60px; }

.mebel-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 320px); gap: 25px; }

.mebel-item { position: relative; border-radius: 20px; overflow: hidden; }

.mebel-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }

.mebel-item.tall { grid-row: span 2; }
.mebel-item.wide { grid-column: span 2; }

.mebel-info {
    position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
    opacity: 0; transform: translateY(20px); transition: var(--transition); color: white;
}

.mebel-item:hover .mebel-info { opacity: 1; transform: translateY(0); }
.mebel-item:hover img { transform: scale(1.05); }

/* Chat Float */
.chat-float {
    position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: white;
    padding: 15px 25px; border-radius: 50px; display: flex; align-items: center; gap: 12px;
    z-index: 1000; box-shadow: 0 10px 30px rgba(0,0,0,0.2); cursor: pointer;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .mebel-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .mebel-item.tall, .mebel-item.wide { grid-column: span 1; grid-row: span 1; height: 350px; }
}


/* Social Section Styling */
.social-section {
    padding: 80px 5%;
    background: #fff;
}

.section-header.center {
    text-align: center;
    margin-bottom: 50px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.social-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.social-card p {
    color: #777;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.follow-btn {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* Hover Effects per Platform */
.social-card.ig:hover { border-color: #E1306C; transform: translateY(-10px); }
.social-card.ig:hover .social-icon-box { background: #E1306C; color: #fff; }

.social-card.tt:hover { border-color: #000; transform: translateY(-10px); }
.social-card.tt:hover .social-icon-box { background: #000; color: #fff; }

.social-card.wa:hover { border-color: #25D366; transform: translateY(-10px); }
.social-card.wa:hover .social-icon-box { background: #25D366; color: #fff; }

.social-card:hover .follow-btn {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Footer Styling */
.simple-footer {
    text-align: center;
    padding: 40px;
    background: #111;
    color: #666;
    font-size: 0.9rem;
}


/* History Section Styling */
.history-section {
    padding: 100px 5%;
    background: #fff;
    overflow: hidden;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Styling with Badge */
.history-image {
    position: relative;
}

.image-stack {
    position: relative;
    padding-right: 20px;
}

.img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(176, 137, 104, 0.4);
}

.experience-badge .num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

/* Timeline Styling */
.timeline {
    margin: 40px 0;
    border-left: 2px solid #eee;
    padding-left: 25px;
}

.timeline-item {
    margin-bottom: 25px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item .year {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.mission-text {
    font-style: italic;
    color: var(--accent);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-size: 1.1rem;
}

/* Responsive History */
@media (max-width: 968px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .history-image {
        order: 2;
    }
    
    .history-text {
        order: 1;
    }

    .img-main {
        height: 350px;
    }
}







/* Container Utama dengan Background Berwarna */
.social-section {
    padding: 100px 5%;
    position: relative;
    /* Campuran warna gradasi yang mewah */
    background: linear-gradient(135deg, #fdfbfb 0%, #f7f3f0 50%, #ebedee 100%);
    overflow: hidden;
}

/* Lingkaran Warna Bergerak (Aura HD) */
.social-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    /* Warna Jati/Gold */
    background: radial-gradient(circle, rgba(176, 137, 104, 0.25) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
    animation: floatingColor 15s infinite alternate ease-in-out;
}

.social-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    /* Warna Aqua/Premium */
    background: radial-gradient(circle, rgba(133, 161, 172, 0.2) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
    animation: floatingColor 20s infinite alternate-reverse ease-in-out;
}

/* Animasi mengambang untuk background */
@keyframes floatingColor {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -50px) scale(1.2); }
    100% { transform: translate(-50px, 100px) scale(1); }
}

/* Card Styling agar Kontras dengan Background */
.social-card {
    position: relative;
    z-index: 1;
    /* Efek Kaca (Glassmorphism) yang lebih kuat */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Memberikan warna border saat hover sesuai platform */
.social-card.ig:hover { border-color: #E1306C; box-shadow: 0 20px 40px rgba(225, 48, 108, 0.1); }
.social-card.tt:hover { border-color: #000000; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.social-card.wa:hover { border-color: #25D366; box-shadow: 0 20px 40px rgba(37, 211, 102, 0.1); }

/* Mengubah warna icon saat hover */
.social-card.ig:hover i { color: #E1306C; }
.social-card.tt:hover i { color: #000000; }
.social-card.wa:hover i { color: #25D366; }

.social-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: 0.4s;
}

.follow-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: #1a1a1a;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.social-card:hover .follow-btn {
    background: var(--accent); /* Menggunakan warna jati saat hover */
    transform: scale(1.05);
}



/* Styling Khusus Kartu Shopee */
.social-card.shopee {
    border-bottom: 4px solid #ee4d2d; /* Warna Oranye Shopee */
}

.social-card.shopee .social-icon-box {
    background: rgba(238, 77, 45, 0.1);
    color: #ee4d2d;
}

.social-card.shopee:hover {
    background: #ee4d2d;
    transform: translateY(-10px);
}

/* Mengubah warna teks saat hover agar tetap terbaca */
.social-card.shopee:hover h4, 
.social-card.shopee:hover p, 
.social-card.shopee:hover .social-icon-box {
    color: #fff;
}

.social-card.shopee:hover .follow-btn {
    background: #fff;
    color: #ee4d2d;
}



/* Menghilangkan dekorasi link standar */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Efek Hover pada Kartu Produk */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-link:hover .category-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Tambahan tag kecil "Beli di Shopee" yang muncul saat hover */
.shop-now-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #ee4d2d; /* Warna Shopee */
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-link:hover .shop-now-tag {
    opacity: 1;
}

/* Membuat gambar sedikit membesar saat diklik */
.img-container img {
    transition: transform 0.5s ease;
}

.product-link:hover .img-container img {
    transform: scale(1.05);
}



/* Merapikan Link dan Kartu Produk */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%; /* Pastikan semua kartu tingginya sama */
}

.category-card .img-container {
    height: 250px; /* Tinggi seragam untuk gambar */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.category-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar akan terpotong rapi, tidak gepeng */
    transition: transform 0.5s ease;
}

/* Efek Hover */
.product-link:hover .category-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-link:hover .img-container img {
    transform: scale(1.1);
}

/* Label Shopee */
.shop-now-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 15px;
    background: #ee4d2d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.product-link:hover .shop-now-tag {
    opacity: 1;
}



.opening-hours {
  background: #f9f9f9;
  padding: 50px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.opening-hours .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: #fff;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hours-row:hover {
  background: #f0f0f0;
}

.hours-row .day {
  font-weight: 600;
}

.hours-row .time {
  color: #555;
}

.hours-row.closed {
  background: #ffe5e5;
  color: #a33;
  font-weight: 600;
}



/* Styling untuk Kartu Produk */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-box {
    width: 100%;
    height: 300px; /* Tinggi gambar tetap */
    position: relative;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar tidak gepeng */
}

.product-img-box .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #bfa480;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.product-info .price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #bfa480;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn-product {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-product:hover {
    background: #333;
    color: #fff;
}



/* Animasi untuk menu mobile */
.nav-links {
    display: none; /* Sembunyikan secara default jika belum ada */
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
}

/* Penataan input pencarian */
.search-wrapper {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.search-wrapper.active {
    display: block;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}








/* Video agar Mengikuti Ukuran Layar */
#my-video {
    width: 100vw; /* 100% lebar layar */
    height: 100vh; /* 100% tinggi layar */
    object-fit: cover; /* Video akan memenuhi layar tanpa merusak rasio (seperti background-size: cover) */
}


* Container Video Penutup */
#intro-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* 100% tinggi layar HP/Laptop */
    background-color: #000;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

