/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #1a6fa8 !important;
}

.nav-link {
    font-weight: 500;
}

/* Hero Section */
.hero {
    color: white;
    padding: 0 !important;
}

/* Animal Cards */
.animal-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: white;
}

.animal-card:hover {
    transform: translateY(-5px);
}

.animal-card img {
    width: 100%;
    height: 200px !important;
    object-fit: cover !important;
}

.animal-card .card-body {
    padding: 15px;
}

.no-photo {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: #1a6fa8;
    border-color: #1a6fa8;
}

.btn-primary:hover {
    background-color: #0f4c75;
    border-color: #0f4c75;
}

/* Footer */
footer {
    margin-top: 50px;
}