/* Custom Styles for Holing Furniture */
:root {
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #2b2b2b;
    line-height: 1.65;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: var(--font-heading);
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}