/* Logo Styles - SVG Version */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-svg {
    width: 100px;
    height: 100px;
    animation: heartbeat 2s infinite ease-in-out;
    filter: drop-shadow(0 10px 15px rgba(227, 27, 35, 0.3));
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.app-title {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-text-white);
    margin-top: 5px;
    font-size: 2rem;
    letter-spacing: -0.5px;
}
