/* Google Fonts - Optional for a more unique look */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Lato:wght@400;700;900&display=swap");

body {
    font-family: "Roboto", sans-serif;
    padding-top: 56px; /* Adjust for fixed navbar */
}

/* --- Typography & Colors --- */
:root {
    --bs-primary: #0d6efd; /* Bootstrap Blue */
    --bs-dark: #212529;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.fw-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

/* --- Navigation Bar --- */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
}

.nav-link {
    font-weight: 700;
    transition: color 0.2s;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bs-primary) !important;
}

/* --- Hero & Page Headers --- */
.hero-section {
    background:
        linear-gradient(rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0.7)),
        url("../pic/p1.jpg") no-repeat center center;
    background-size: cover;
    padding: 12rem 0;
}
.page-header {
    background:
        linear-gradient(rgba(33, 37, 41, 0.6), rgba(33, 37, 41, 0.6)),
        url("../pic/p2.jpg") no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
}

.about-header {
    background:
        linear-gradient(rgba(33, 37, 41, 0.6), rgba(33, 37, 41, 0.6)),
        url("../pic/p4.jpg") no-repeat center center;
    background-size: cover;
}

.contact-header {
    background:
        linear-gradient(rgba(33, 37, 41, 0.6), rgba(33, 37, 41, 0.6)),
        url("../pic/p3.jpg") no-repeat center center;
    background-size: cover;
}

/* --- Feature Icons --- */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2rem;
}

/* --- Product Cards --- */
.product-card {
    transition:
        transform 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* --- Footer --- */
footer a {
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--bs-primary) !important;
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

footer .text-white-50:hover {
    color: rgba(255, 255, 255, 0.75) !important;
}
