/*
Theme Name: Vantage Leather
Author: Gemini Code Assist
Description: A Bootstrap 5 WooCommerce theme for premium leather goods.
Version: 1.0
*/

:root {
    --primary-color: #5D4037; /* Saddle Brown */
    --secondary-color: #8D6E63; /* Lighter Leather */
    --accent-color: #D7CCC8; /* Cream/Off-white */
    --text-dark: #212529;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #fdfbf7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
}

/* Navigation */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}
.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
}
.nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1647540945262-7da3bd1a3d96?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.btn-custom {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 35px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid white;
}
.btn-custom:hover {
    background-color: transparent;
    color: white;
}

/* Product Cards (WooCommerce Style) */
.product-card {
    border: none;
    background: transparent;
    margin-bottom: 30px;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.product-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}
.product-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}
.product-price {
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 1rem;
}
.add-to-cart-btn {
    margin-top: 10px;
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 2px;
}

/* Features Section */
.features-section {
    background-color: var(--accent-color);
    padding: 60px 0;
}
.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}
footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}
footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
footer a:hover {
    color: #fff;
}