/* ---------- COLOR PALETTE ---------- */
:root {
    --yellow: #F6BD60;
    --cream: #F7EDE2;
    --pink: #F5CAC3;
    --teal: #84A59D;
    --coral: #F28482;
    --text-dark: #2B2B2B;
}

/* ---------- GLOBAL ---------- */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
}

h1, h2, h3 {
    font-family: "Poppins", sans-serif;
}

* {
    transition: all 0.25s ease;
}

/* ---------- HERO SECTION ---------- */
.hero {
    background-color: var(--yellow);
    text-align: center;
    padding: 70px 20px;
    border-bottom: 8px solid var(--pink);
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    background-color: var(--pink);
    padding: 50px 20px;
}

.about-container {
    background-color: var(--teal);
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.05);
}

/* ---------- ANIMALS SECTION ---------- */
.animals-section {
    padding: 50px 20px;
    text-align: center;
}

.animal-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.animal-card {
    background-color: var(--coral);
    color: white;
    width: 260px;
    padding: 20px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(0);
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    background-color: #f79790;
}

.animal-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.animal-card:hover img {
    transform: scale(1.05);
}

/* ---------- FOOTER ---------- */
.site-footer {
    text-align: center;
    padding: 20px;
    background-color: var(--yellow);
    color: var(--text-dark);
    border-top: 8px solid var(--teal);
}
