/* Animation for the logo flower using object tag */

/* Set up the object container sizing */
.logo-large object.logo-svg {
    width: 80%;
    height: auto;
    max-width: 1200px;
    display: block; /* Ensures the object is properly displayed */
    margin: 0 auto; /* Center the logo */
}

.logo-small object.logo-svg {
    height: 40px;
    width: auto;
    display: block; /* Ensures the object is properly displayed */
}

/* 
 * The animations are now defined directly in the SVG file
 * The SVG contains internal CSS animations for each leaf layer
 */

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .logo-large object.logo-svg {
        width: 90%;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) and (max-height: 800px) {
    .logo-large object.logo-svg {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .logo-large object.logo-svg {
        width: 95%;
    }
}