/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background: url('../images/hero-shoes.jpg') no-repeat center center/cover;
}

#navbarNav a {
    color: rgb(251, 255, 0);
    padding: 0 20px;
}
#navbarNav a:hover {
    color: white;
    transform: translateY(-5px);
    font-weight: bold;
}
.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    padding: 20px 0;
}
.navbar-brand span {
    color: rgb(242, 255, 0);
    font-size: 2rem;
}
/* Product Cards */
.card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.card:hover img{
    transform: scale(1.05);
}
/* Filter Bar */
.custom-select {
    width: auto;
    display: inline-block;
}




/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
}