/* Custom styles for Noise Fox */

/* Brand color */
:root {
    --nf-primary: #d56960;
    --nf-dark: #222222;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navbar styles */
.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 1040;
    /* Higher z-index than the sticky sidebar */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 500;
}

.nav-link.text-danger {
    color: var(--nf-primary) !important;
}

/* Dropdown menu styles */
.dropdown-menu {
    z-index: 1050;
    /* Even higher z-index than the navbar */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Sticky sidebar */
.sticky-top {
    z-index: 1020;
    /* Lower than navbar and dropdown */
}

/* Hero section */
.display-3 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.display-4 {
    color: var(--nf-primary);
    font-weight: 600;
}

.btn-dark {
    background-color: var(--nf-dark);
    border-color: var(--nf-dark);
}

/* Hover underline effect for links */
.hover-underline {
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.hover-underline:hover {
    text-decoration: underline;
    color: var(--nf-primary) !important;
}

/* Make sure the hover effect works by setting a higher z-index */
.card-body a {
    position: relative;
    z-index: 2;
}

/* Base card styles */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Apply hover effect to all cards by default */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Remove hover effect from specific elements */
#filters:hover,
.no-hover-effects:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Profile image styles */
.rounded-circle {
    object-fit: cover;
}

/* Price formatting */
.font-weight-bold {
    color: var(--nf-primary);
}