/* Global Settings */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Hero Section Styling */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bird-sanctuary.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
}

.shadow-text {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Navbar Styling */
.navbar-brand img {
    border: 2px solid white;
    border-radius: 50%;
}

/* Product Card Hover Effect */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Category Cards */
.category-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.category-card:hover img {
    transform: scale(1.05);
}
.category-card {
    overflow: hidden;
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    background-color: #25D366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc57;
}

/* Footer Styling */
footer {
    background-color: #222 !important;
}
footer a:hover {
    color: #28a745 !important;
}

/* Buttons */
.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Hero Background */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bird-sanctuary.webp');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.shadow-text {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* Navbar */
.navbar-brand img {
    border: 2px solid white;
}

/* Card Effects */
.category-card {
    transition: transform 0.3s ease;
    overflow: hidden;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}
.category-card img {
    transition: transform 0.5s ease;
}
.category-card:hover img {
    transform: scale(1.1);
}

/* WhatsApp Button Updated Style */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer a:hover {
    color: #28a745 !important;
}
/* Improve Readability */
.text-muted {
    color: #595959 !important; /* Darker Grey */
}
.footer-text, .footer-links a {
    color: #cccccc !important; /* Lighter text for dark footer */
}
.footer-links a:hover {
    color: #ffffff !important; /* White on hover */
}