/* -------------------------------------- */
/* 1. Pengaturan Font Dasar */
/* -------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* -------------------------------------- */
/* 2. Animasi Kustom */
/* -------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* -------------------------------------- */
/* 3. Gaya Elemen Kustom & Efek Hover */
/* -------------------------------------- */

/* Kartu Produk */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #d1d5db;
}

/* Hero Section (Latar Belakang Gradien dan Pola) */
.hero-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

/* Efek pola di latar belakang Hero */
.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Pola SVG */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Tombol Utama (Pesan Sekarang / Lihat Koleksi) */
.btn-primary {
    background: #1e293b;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.3);
}

/* Garis Aksen di bawah Judul */
.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%); /* Gradien Emas */
    margin: 0 auto;
}

/* Latar belakang untuk Area Gambar Produk */
.product-image {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* Efek lingkaran di belakang gambar produk */
.product-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    opacity: 0.1;
    border-radius: 50%;
}

/* Ikon Fitur */
.feature-icon {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}