/* RESET & BODY */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}

body {
    background-image: url("FarmHouse.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* MAIN CONTENT WRAPPER */
main {
    flex: 1; /* pushes footer down if content is short */
}


/* PAGE TITLE */
h1 {
    margin: 20px 0;
    font-size: 40px;
    color: white;
}

/* ANIMAL GALLERY */
.animal-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.animal-img {
    width: 22%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.animal-img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE MOBILE / TABLET */
@media (max-width: 900px) {
    h1 {
        font-size: 30px;
    }

    .animal-img {
        width: 45%;
        max-width: none;
        margin: 10px 2.5%;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 24px;
    }

    .animal-img {
        width: 90%;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    #MainHead button {
        font-size: 1rem;
        margin: 5px 10px;
    }
}

