/* General Body Styles */
body {
    font-family: 'Lato', sans-serif;
    color: #333;
}

/* Navbar */
.navbar-brand img {
    filter: brightness(0.8); /* Adjust logo brightness */
}
.navbar {
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-link {
    color: #4CAF50 !important;
    font-weight: 500;
}
.nav-link:hover {
    color: #795548 !important;
}

/* Hero Carousel */
.carousel-item img {
    height: 70vh;
    object-fit: cover;
}
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
.carousel-caption h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}
.carousel-caption p {
    font-size: 1.2rem;
    color: #f1f1f1;
}

/* Section Headings */
h2 {
    font-family: 'Playfair Display', serif; /* A nice serif font for headings */
    font-weight: 700;
    color: #4CAF50;
}

/* Product Cards */
.product-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 15px; /* Curvy border */
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-card img {
    height: 200px;
    object-fit: cover;
}
.product-card .card-title {
    color: #795548;
}
.product-card .card-text {
    color: #333;
}

/* Buy Button */
.btn-primary {
    background-color: #8BC34A;
    border-color: #8BC34A;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

/* Bulk Order Form */
.btn-success {
    background-color: #4CAF50;
    border-color: #4CAF50;
}
.btn-success:hover {
    background-color: #388E3C;
    border-color: #388E3C;
}

/* Contact Section Icons */
.contact-icon {
    font-size: 4rem;
    color: #4CAF50;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
}
.whatsapp-btn .material-icons {
    font-size: 36px;
}

/* Footer */
footer {
    background-color: #795548 !important;
}

