* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
}

header {
    background-color: #e47c06;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    background-color: #f1f1f1;
    text-align: center;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.product-gallery {
    text-align: center;
    padding: 2rem 0;
}

.product-gallery h2 {
    font-size: 2rem;
    color: #000000;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 1rem;
}

.gallery img {
    /* width: 200px;
    height: 200px;
    border-radius: 10px; */

    width: 100%;
    height: auto;
    display: block;
}

.about-us, .contact-us {
    padding: 2rem;
    text-align: center;   
}

.about-us h1, .contact-us h1 {
    font-size: 2.5rem;
    color: #000000;
    
}

footer {
    background-color: #e47c06;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* CSS for Fixed Email Icon with Text */
.email-icon {
    position: fixed;
    bottom: 80px;   /* Adjust based on your footer height */
    right: 20px;    /* Distance from the right edge */
    display: flex;  /* Align icon and text horizontally */
    align-items: center;
    background-color: #007BFF;  /* Optional: background color */
    padding: 10px 15px;  /* Space around the icon and text */
    border-radius: 30px;  /* Optional: make the button slightly rounded */
    text-decoration: none; /* Remove underline from text */
    color: white; /* Text color */
    z-index: 1000; /* Ensures it's above other elements */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.email-icon img {
    width: 40px;   /* Adjust the icon size */
    height: 40px;
    margin-right: 10px; /* Space between icon and text */
    border-radius: 50%; /* Circular icon */
}

.email-icon span {
    font-size: 18px;  /* Text size */
}

.email-icon:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }

    .hero p {
        font-size: 1rem; /* Adjust paragraph size */
    }

    nav ul {
        flex-direction: column; /* Stack menu items vertically */
    }

    nav ul li {
        margin: 10px 0; /* Adjust margin for vertical spacing */
    }

    .product-gallery h2 {
        font-size: 1.5rem; /* Smaller heading size */
    }

    .about-us h1, .contact-us h1 {
        font-size: 2rem; /* Adjust heading size */
    }
}