/* Color Palette & Custom Properties */
:root {
    --primary-wood: #8B5A2B;
    --gold-accent: #D4AF37;
    --dark-charcoal: #222222;
    --soft-white: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--dark-charcoal);
    line-height: 1.6;
}

/* Typography Customizations */
.font-serif {
    font-family: 'Georgia', serif;
}

/* Brand Logo Styling */
.navbar-brand {
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 1.4rem;
}
.brand-wecka {
    color: var(--primary-wood);
}
.brand-furniture {
    color: var(--dark-charcoal);
    font-weight: 300;
    margin-left: 2px;
}

/* Dropdown Clickable Custom Behavior */
@media (min-width: 992px) {
    .custom-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Button & Badge Custom Accents */
.bg-gold {
    background-color: var(--gold-accent);
    color: #000;
    font-weight: 600;
}
.text-gold {
    color: var(--gold-accent);
}
.btn-gold {
    background-color: var(--gold-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #bfa030;
    color: #fff;
}
.border-gold {
    border-left-color: var(--gold-accent) !important;
}

/* Mengatur ukuran dan konsistensi tampilan logo */
.navbar-brand img {
    max-height: 54px; /* Mengunci tinggi maksimal logo di desktop */
    width: auto;      /* Menjaga aspek rasio gambar agar tidak gepeng */
    transition: transform 0.3s ease;
}

/* Sedikit efek interaktif saat logo didekati kursor (opsional) */
.navbar-brand img:hover {
    transform: scale(1.02);
}

/* Menyesuaikan kerapian navbar ketika menggunakan logo gambar */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Responsif untuk layar HP agar logo tidak terlalu besar */
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 44px; /* Sedikit lebih kecil di HP agar menu tidak penuh */
    }
}

/* Hero Section Base */
.hero-section {
    min-height: 75vh;
    padding: 100px 0;
}

/* LCP Image Optimization Stylings */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Berfungsi sama seperti background-size: cover */
    object-position: center;
    z-index: 1;
}

/* Dark Overlay Replacement */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

/* Memastikan Konten Teks Berada di Atas Gambar & Overlay */
.z-index-2 {
    z-index: 2;
}

/* Utility Animations */
.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.125)!important;
}

/* Footer Link Customizations */
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 4px 0;
}
.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 4px;
}