/*
* SILVER SALES - Main Stylesheet
* This file contains all custom styles for the SILVER SALES website
*/

/* ======= General Styles ======= */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #212529;
}

a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0a58ca;
}

.section-title {
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

/* ======= Header Styles ======= */
.top-bar {
    font-size: 0.9rem;
}

.top-bar a:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar .nav-link.active {
    color: #0d6efd;
}

.navbar .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ======= Hero Section ======= */
.hero-section {
    padding: 100px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ======= Product Cards ======= */
.product-card {
    transition: all 0.3s ease;
    border: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.card-title {
    font-weight: 600;
}

/* ======= Feature Boxes ======= */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

/* ======= Team Cards ======= */
.team-card {
    transition: all 0.3s ease;
    border: none;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.team-img img {
    transition: all 0.3s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

/* ======= Product Detail Page ======= */
.product-title {
    font-weight: 700;
}

.thumbnail {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border: 2px solid #0d6efd;
}

.product-details .row > div {
    margin-bottom: 0.5rem;
}

/* ======= Contact Page ======= */
.map-container {
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    height: 100%;
    width: 100%;
    border: 0;
}

/* ======= Footer ======= */
footer {
    background-color: #212529;
    color: #fff;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #0d6efd;
    text-decoration: none;
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

footer .social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ======= Breadcrumbs ======= */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

/* ======= Pagination ======= */
.pagination .page-link {
    color: #0d6efd;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* ======= List Group ======= */
.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* ======= Responsive Adjustments ======= */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}