/* General styles */
body {
    font-family: Arial, sans-serif;
}
/* Navbar Styling */
.navbar {
    background-color: #f8f9fa; /* Light gray background */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional shadow */
    padding: 1rem 0; /* Adjust padding if needed */
}

.navbar-brand img {
    height: 40px; /* Adjust logo height */
}

.navbar-nav {
    margin-left: auto; /* Pushes the nav items to the right */
}

.navbar-nav .nav-link {
    font-size: 1.1rem; /* Font size for nav links */
    font-weight: 500; /* Font weight for nav links */
    color: #333333; /* Customize link color */
    padding-right: 1.5rem; /* Spacing between links */
}

.navbar-nav .nav-link:hover {
    color: #ed1c24;
    background-color: #fff200 /* Darker blue on hover */
}

/* Spacing to account for fixed navbar */
body {
    padding-top: 70px; /* Ensure page content is not hidden under navbar */
}

/* Adjust padding to avoid hiding content under navbar */
section {
    padding-top: 100px; /* Adjust this value according to the navbar height */
}

/* For smaller screens (like mobile), you might want to reduce the padding */
@media (max-width: 768px) {
    section {
        padding-top: 120px; /* Extra padding for smaller screens, adjust as needed */
    }
}


/* Hero Section */
#hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#hero .btn {
    font-size: 1.2rem;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Products Section */
#products .card {
    border: none;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

#products .card-img-top {
    height: 200px;
    object-fit: cover;
}

#products .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
}

#products .card-text {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Factory Section */
#factory img {
    object-fit: cover;
    height: 225px;
    width: 300px;
    display: block;
    margin: 0 auto;
}

#factory .caption {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #555;
}


/* Contact Section */
#contact .list-unstyled {
    font-size: 1.1rem;
    padding-left: 0;
}

#contact .list-unstyled li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

#contact .list-unstyled li i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #007bff;
}

/* Flaticon CSS */
.flaticon-pin::before {
    content: '\f276'; /* Unicode for location pin icon */
    font-family: 'Flaticon';
}

.flaticon-phone-call::before {
    content: '\f095'; /* Unicode for phone icon */
    font-family: 'Flaticon';
}

.flaticon-email::before {
    content: '\f0e0'; /* Unicode for email icon */
    font-family: 'Flaticon';
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
}
