/* Color Variables */
:root {
    --bs-primary: #D4A373; /* Warm bakery orange/brown */
    --bs-primary-rgb: 212, 163, 115;
    --bs-dark: #2C2C2C;
    --bs-dark-rgb: 44, 44, 44;
}

/* Typography Utilities */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #fcfbf9;
}

/* Navigation */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-size: 1.75rem;
}

.nav-link {
    font-size: 1.05rem;
    padding: 0.5rem 1rem !important;
}

.navbar.bg-white .nav-link {
    color: var(--bs-dark) !important;
}

.navbar.bg-white .nav-link:hover {
    color: var(--bs-primary) !important;
}

/* Mobile Nav Collapse background */
@media (max-width: 991.98px) {
    .bg-collapse {
        background-color: rgba(0,0,0,0.85);
        backdrop-filter: blur(10px);
    }
    .navbar.bg-white .bg-collapse {
        background-color: #fff;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }
}

@media (min-width: 992px) {
    .text-lg-white {
        color: rgba(255,255,255,0.9) !important;
    }
    .text-lg-white:hover {
        color: var(--bs-primary) !important;
    }
}


.transition-all {
    transition: all 0.3s ease-in-out;
}

.duration-500 {
    transition-duration: 500ms !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.bg-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}
.bg-glass:hover {
    background: rgba(255,255,255,0.25);
}

/* Custom Components */
.divider-custom {
    height: 3px;
    width: 60px;
    background-color: var(--bs-primary);
    border-radius: 5px;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

.product-card:hover img {
    transform: scale(1.08);
}

.group-hover-btn {
    transition: all 0.3s ease;
}

.product-card:hover .group-hover-btn {
    background-color: var(--bs-primary);
    color: white !important;
    border-color: var(--bs-primary);
}

/* Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-3px);
}

/* Buttons */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #c08e5e;
    border-color: #c08e5e;
    color: white;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}