body.home-page {
    min-height: 100vh;
    background-color: #eef7f5;
    background-image: linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.84)), url("../images/homepage-heaven-background.png");
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

body.home-page main.container {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(114, 136, 137, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(58, 82, 90, 0.12);
    backdrop-filter: blur(3px);
}

.home-intro {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

.heaven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 1rem;
}

.heaven-pet-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(74, 83, 75, 0.16);
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: 0 10px 24px rgba(28, 34, 32, 0.08);
}

.heaven-pet-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.18s ease;
}

.heaven-pet-link:hover img,
.heaven-pet-link:focus img {
    transform: scale(1.04);
}
