/* Custom Styles for VetPharm */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar {
    transition: background-color 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(rgba(13, 110, 253, 0.7), rgba(13, 110, 253, 0.5)), url('https://images.unsplash.com/photo-1583324113620-91522969de19?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

/* Cards */
.product-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
    /* Ensures image corners are rounded */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* Prevents image distortion */
}

.card-title {
    font-weight: 600;
}

/* Buttons */
.btn {
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

/* Footer */
footer {
    background-color: #212529;
}

footer a.text-white:hover {
    text-decoration: underline !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}