/* Animal Decorations */

.hero-animal-capybara {
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 180px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(5px 5px 0px rgba(0,0,0,0.2));
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.hero-animal-capybara:hover {
    transform: rotate(0deg) scale(1.1);
}

.hero-animal-morty {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(5px 5px 0px rgba(0,0,0,0.2));
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.hero-animal-morty:hover {
    transform: rotate(0deg) scale(1.1);
}

.newsletter-animal-mole {
    position: absolute;
    bottom: -20px;
    right: 5%;
    width: 150px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .hero-animal-capybara {
        width: 120px;
        bottom: -40px;
        left: -20px;
    }
    
    .hero-animal-morty {
        width: 90px;
        top: -30px;
        right: -20px;
    }
    
    .newsletter-animal-mole {
        width: 100px;
        right: -20px;
    }
}
