body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a5e2a;
    padding: 10px 20px;
    color: white;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrap img {
    width: 55px;
    height: auto;
}

.login-btn {
    background: #ffcc00;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    height: 380px;
    background: url("https://images.unsplash.com/photo-1606787366850-de6330128bfc") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.cta-btn {
    background: #ffcc00;
    padding: 12px 25px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    border-radius: 6px;
}

/* ANIMAL SHOWCASE */
.animals {
    padding: 40px 20px;
    text-align: center;
}

.animals h2 {
    margin-bottom: 30px;
}

.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.animal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.animal-card:hover {
    transform: translateY(-6px);
}

.animal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.animal-card h3 {
    margin: 10px 0;
}

.animal-card p {
    padding: 0 15px 15px;
}

/* FOOTER */
.footer {
    background: #1a5e2a;
    color: white;
    padding: 25px;
    text-align: center;
    margin-top: 40px;
}
